forked from sysmon37/datagenerator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
42 lines (35 loc) · 1.16 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
plugins {
id 'java'
id 'application'
id 'net.ltgt.apt' version '0.10'
}
run {
if (project.hasProperty('runargs')) {
args(runargs.split(' '))
}
}
// Define the main class for the application
mainClassName = 'pl.poznan.put.cs.idss.generator.Generator'
dependencies {
// compile 'com.google.guava:guava:23.0'
testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest-junit:2.0.0.0'
testCompile 'org.hamcrest:java-hamcrest:2.0.0.0'
testCompile 'org.mockito:mockito-all:1.9.5'
compile 'commons-cli:commons-cli:1.3.1'
compile 'commons-configuration:commons-configuration:1.10'
compile 'commons-lang:commons-lang:2.6'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'commons-logging:commons-logging:1.2'
compile 'org.apache.commons:commons-math3:3.5'
compile 'commons-validator:commons-validator:1.4.1'
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'org.slf4j:slf4j-simple:1.7.12'
annotationProcessor 'org.projectlombok:lombok:1.16.20'
implementation 'org.projectlombok:lombok:1.16.20'
apt 'org.projectlombok:lombok:1.16.20'
}
repositories {
//jcenter()
mavenCentral()
}