-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
81 lines (68 loc) · 2.04 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java-library'
id 'maven-publish'
}
repositories {
mavenLocal()
mavenCentral()
maven {
url = uri('https://maven.lavalink.dev/releases')
}
maven {
url = uri('https://m2.dv8tion.net/releases')
}
maven {
url = uri('https://m2.chew.pro/snapshots/')
}
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
maven {
url = uri('https://jitpack.io')
}
maven {
url = uri('https://jcenter.bintray.com/')
}
}
dependencies {
implementation 'com.github.DV8FromTheWorld:JDA:5.0.0-beta.21'
implementation 'pw.chew:jda-chewtils:2.0-SNAPSHOT'
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.0'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
implementation 'com.konghq:unirest-java:3.11.11'
implementation 'se.michaelthelin.spotify:spotify-web-api-java:6.5.4'
implementation 'ch.qos.logback:logback-classic:1.5.0'
implementation 'commons-validator:commons-validator:1.7'
implementation 'dev.lavalink.youtube:v2:1.8.3'
implementation 'dev.arbjerg:lavaplayer:2.2.2'
implementation 'commons-io:commons-io:2.11.0'
implementation 'net.bramp.ffmpeg:ffmpeg:0.6.2'
implementation 'io.sfrei:tracksearch:0.9.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'com.github.JustRed23:lavadsp:0.7.7-1'
}
group = 'com.casko1'
version = '1.4.3'
description = 'wheelbarrow-bot'
java.sourceCompatibility = JavaVersion.VERSION_21
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
jar {
manifest {
attributes 'Main-Class': 'com.casko1.wheelbarrow.bot.Wheelbarrow'
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
duplicatesStrategy 'exclude'
}
targetCompatibility = JavaVersion.VERSION_21