-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
43 lines (34 loc) · 1.02 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
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: "idea"
group 'com.github.unknowndomaingame'
version '1.0.0'
sourceCompatibility = targetCompatibility = 11
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
repositories {
maven {
url 'https://maven.aliyun.com/repository/public'
}
jcenter()
mavenCentral()
}
jar {
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
test {
useJUnitPlatform()
}
dependencies {
compile 'com.google.guava:guava:30.1-jre'
compile 'org.apache.commons:commons-lang3:3.11'
implementation group: 'org.ow2.asm', name: 'asm', version: '7.1'
implementation group: 'org.ow2.asm', name: 'asm-tree', version: '7.1'
implementation group: 'org.ow2.asm', name: 'asm-util', version: '7.1'
implementation group: 'org.ow2.asm', name: 'asm-commons', version: '7.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.0'
}