-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
48 lines (38 loc) · 1.03 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
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn more about Gradle by exploring our samples at https://docs.gradle.org/7.3/samples
*/
apply plugin: 'java'
repositories {
flatDir {
dirs 'lib'
}
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
implementation files('lib/LeapJava.jar')
runtimeOnly files('lib/LeapJava.jar')
implementation 'com.shinyhut:vernacular:1.14'
implementation "org.yaml:snakeyaml:1.21"
implementation "com.google.guava:guava:31.1-jre"
compileOnly 'net.jcip:jcip-annotations:1.0'
compileOnly 'com.github.spotbugs:spotbugs-annotations:3.1.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.2'
testImplementation 'org.hamcrest:hamcrest:2.2'
}
jar {
archiveBaseName = 'gs-gradle'
archiveVersion = '0.1.0'
}
apply plugin: 'application'
mainClassName = 'handWavey.HandWavey'
test {
useJUnitPlatform()
}
run {
systemProperty "java.library.path", "lib"
}