Home | History | Annotate | Download | only in benchmark-graphs
      1 apply plugin: 'application'
      2 
      3 dependencies {
      4     compile 'com.bazaarvoice.jolt:jolt-core:0.1.0'
      5     compile 'com.bazaarvoice.jolt:json-utils:0.1.0'
      6 }
      7 
      8 // We're not distributing this, so it's safe to use newer language features.
      9 sourceCompatibility = JavaVersion.VERSION_1_8
     10 targetCompatibility = JavaVersion.VERSION_1_8
     11 
     12 mainClassName = 'org.conscrypt.graphgen.Main'
     13 
     14 // Don't include this artifact in the distribution.
     15 tasks.install.enabled = false
     16 tasks.uploadArchives.enabled = false;
     17