-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (40 loc) · 1.21 KB
/
Copy pathbuild.gradle
File metadata and controls
50 lines (40 loc) · 1.21 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
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'org.beryx.jlink' version '2.24.0' apply false
}
subprojects {
apply plugin: 'java-library'
apply plugin: 'antlr'
apply plugin: 'eclipse'
apply plugin: 'idea'
sourceCompatibility = 16
version = '1.0.0'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.guava:guava:30.1.1-jre'
implementation 'commons-io:commons-io:2.10.0'
implementation 'org.apache.commons:commons-compress:1.20'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.commons:commons-configuration2:2.7'
antlr 'org.antlr:antlr4:4.9.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
}
eclipse {
classpath {
downloadJavadoc = true
downloadSources = true
}
}
processResources {
filter ReplaceTokens, tokens: [
'APPLICATION_VERSION': version
]
}
test {
useJUnitPlatform()
}
}