-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
51 lines (37 loc) · 1.17 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
49
50
51
plugins {
id 'java'
id 'application'
}
group 'io.resttestgen'
version '24.03'
application {
mainClass.set('io.resttestgen.boot.cli.App')
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.apache.logging.log4j:log4j-core:2.19.0'
implementation 'com.google.code.gson:gson:2.10'
implementation 'org.yaml:snakeyaml:2.0'
implementation 'com.google.guava:guava:31.1-jre'
implementation 'org.jgrapht:jgrapht-core:1.5.1'
implementation 'org.jgrapht:jgrapht-io:1.5.1'
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
implementation 'org.apache.opennlp:opennlp-tools:1.9.4'
implementation 'com.jayway.jsonpath:json-path:2.7.0'
implementation 'com.github.mifmif:generex:1.0.2'
implementation 'org.iban4j:iban4j:3.2.3-RELEASE'
implementation 'nz.ac.waikato.cms.weka:weka-stable:3.8.6'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes 'Main-Class': 'io.resttestgen.boot.cli.App'
}
}