-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuild.gradle
45 lines (39 loc) · 1.08 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
apply plugin: 'groovy'
apply plugin: 'application'
mainClassName = System.getProperty("mainClass") ?: "app.Main"
repositories {
mavenCentral()
}
sourceSets {
main {
groovy {
srcDirs = ['src/main']
}
}
test {
groovy {
srcDirs = ['src/test']
exclude '**/output/**/*.java'
}
}
}
test {
filter {
includeTestsMatching '*TestSuite'
}
}
dependencies {
implementation 'com.google.inject:guice:4.2.2'
implementation 'commons-io:commons-io:2.6'
implementation 'com.xlson.groovycsv:groovycsv:1.3'
implementation 'org.codehaus.groovy:groovy-cli-commons:3.0.0'
implementation 'org.codehaus.groovy:groovy-all:3.0.0'
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.22.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testCompileOnly 'junit:junit:4.12'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.3.1'
implementation 'org.apache.logging.log4j:log4j-api:2.23.1'
implementation 'org.apache.logging.log4j:log4j-core:2.23.1'
implementation 'org.json:json:20210307'
}