-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
40 lines (31 loc) · 1.14 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
plugins {
id 'groovy'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation "net.datafaker:datafaker:$dataFakerVersion"
implementation "org.apache.poi:poi:$poiVersion"
implementation "org.apache.poi:poi-ooxml:$poiVersion"
implementation "com.opencsv:opencsv:$opencsvVersion"
implementation "com.google.code.gson:gson:$gsonVersion"
implementation "org.apache.groovy:groovy:$groovyVersion"
implementation "org.apache.groovy:groovy-cli-picocli:$groovyVersion"
// https://mvnrepository.com/artifact/com.sparkjava/spark-core
implementation "com.sparkjava:spark-core:$sparkJavaVersion"
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
runtimeOnly "ch.qos.logback:logback-classic:$logbackVersion"
}
task createStartScripts(type: CreateStartScripts) {
outputDir = file('build/zefaker')
mainClassName = 'zefaker.Main'
applicationName = 'zefaker'
}
application {
mainClassName = 'zefaker.Main'
}
run.jvmArgs('-noverify', '-XX:TieredStopAtLevel=1', '-Dcom.sun.management.jmxremote')