-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (47 loc) · 1.4 KB
/
build.gradle
File metadata and controls
57 lines (47 loc) · 1.4 KB
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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.1.0'
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/"
}
}
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")
implementation 'org.projectlombok:lombok:1.18.18'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
implementation "com.github.jengelman.gradle.plugins:shadow:6.1.0"
}
jar {
archiveBaseName.set('HypePermsSpgiot')
archiveClassifier.set('SNAPSHOT')
archiveVersion.set('1.0')
destinationDir("D:\\Muhammed\\programming\\Minecraft\\Localhost\\Paper\\plugins" as File)
}
test {
useJUnitPlatform()
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'