Home | History | Annotate | Download | only in compilationTests
      1 apply plugin: 'java'
      2 
      3 sourceCompatibility = 1.6
      4 version = '1.0'
      5 
      6 dependencies {
      7     testCompile 'junit:junit:4.12'
      8     testCompile 'org.apache.commons:commons-lang3:3.3.2'
      9     testCompile 'commons-io:commons-io:2.4'
     10     testCompile 'commons-codec:commons-codec:1.10'
     11     testCompile project(':dataBinding:compilerCommon')
     12 }
     13 
     14 afterEvaluate {
     15     tasks['test'].systemProperties['useReleaseVersion'] = dataBindingConfig.inReleaseBuild ? 'true' : 'false'
     16     tasks['test'].systemProperties['addRemoteRepos'] = dataBindingConfig.addRemoteRepos ? 'true' : 'false'
     17 }