-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (55 loc) · 1.61 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
plugins {
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'java'
id 'maven'
}
group 'de.hype.perms'
version '1.0-SNAPSHOT'
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
repositories {
mavenCentral()
jcenter()
mavenLocal()
maven {
url 'https://papermc.io/repo/repository/maven-public/'
}
maven {
url 'https://jitpack.io'
}
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
flatDir {
dirs 'build/libs'
}
}
dependencies {
shadow localGroovy()
shadow 'junit:junit:3.8.2'
shadow gradleApi()
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.github.jengelman.gradle.plugins:shadow:6.1.0"
compileClasspath("com.github.jengelman.gradle.plugins:shadow:6.1.0")
compileOnly 'io.github.waterfallmc:waterfall-api:1.16-R0.4-SNAPSHOT'
implementation 'org.projectlombok:lombok:1.18.18'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
compile 'de.proxy.hypedcbot.discord:HypeDCBot:1.0-SNAPSHOT'
implementation "com.github.jengelman.gradle.plugins:shadow:6.1.0"
}
shadowJar {
archiveBaseName.set('HypePermsBungee')
archiveClassifier.set('SNAPSHOT')
archiveVersion.set('1.0')
destinationDir("D:\\Muhammed\\programming\\Minecraft\\Localhost\\Waterfall\\plugins" as File)
}
test {
useJUnitPlatform()
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'