• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'application'
2
3dependencies {
4    compile 'com.bazaarvoice.jolt:jolt-core:0.1.1'
5    compile 'com.bazaarvoice.jolt:json-utils:0.1.1'
6}
7
8// We're not distributing this, so it's safe to use newer language features.
9sourceCompatibility = JavaVersion.VERSION_1_8
10targetCompatibility = JavaVersion.VERSION_1_8
11
12mainClassName = 'org.conscrypt.graphgen.Main'
13