crypto.gradle 183 B

12345678910
  1. // crypto module build file
  2. jdkVersion = System.properties['java.version']
  3. isJdk6 = jdkVersion >= '1.6'
  4. test {
  5. if (!isJdk6) {
  6. exclude '**/EncryptorsTests.class'
  7. }
  8. }