-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
35 lines (29 loc) · 841 Bytes
/
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
plugins {
id 'com.github.johnrengelman.shadow' version '6.0.0'
id 'java'
}
group 'me.discordlinking'
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
compileOnly fileTree(dir: 'libs', include: ['spigot.jar'])
compile ('net.dv8tion:JDA:4.2.0_229') {
exclude module: 'opus-java'
}
compile("club.minnced:discord-webhooks:0.5.5-rc")
implementation 'com.github.Bedo9041:jWynn:0.7.4'
}
test {
useJUnitPlatform()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
shadowJar{
archiveFileName = "${baseName}.${extension}"
destinationDirectory = file("C:\\Users\\liamp\\Desktop\\Coding Shit\\Server\\plugins")
}