12 lines
317 B
Groovy
12 lines
317 B
Groovy
apply plugin: 'application'
|
|
|
|
dependencies {
|
|
compile 'com.bazaarvoice.jolt:jolt-core:0.1.0'
|
|
compile 'com.bazaarvoice.jolt:json-utils:0.1.0'
|
|
}
|
|
|
|
mainClassName = 'org.conscrypt.graphgen.Main'
|
|
|
|
// Don't include this artifact in the distribution.
|
|
tasks.install.enabled = false
|
|
tasks.uploadArchives.enabled = false;
|