mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-23 15:20:19 +00:00
14 lines
325 B
Groovy
14 lines
325 B
Groovy
// crypto module build file
|
|
|
|
jdkVersion = System.properties['java.version']
|
|
javaClassVersion = System.properties['java.class.version']
|
|
println "JDK Version is $jdkVersion, class version is $javaClassVersion"
|
|
|
|
isJdk6 = jdkVersion.startsWith('1.6')
|
|
|
|
test {
|
|
if (!isJdk6) {
|
|
exclude '**/EncryptorsTests.class'
|
|
}
|
|
}
|