| 1234567891011121314151617181920212223242526272829303132 | // Core build filedependencies {    compile 'aopalliance:aopalliance:1.0',            "net.sf.ehcache:ehcache:$ehcacheVersion",            "org.springframework:spring-aop:$springVersion",            "org.springframework:spring-beans:$springVersion",            "org.springframework:spring-context:$springVersion",            "org.springframework:spring-expression:$springVersion",            "org.springframework:spring-jdbc:$springVersion",            "org.springframework:spring-tx:$springVersion",            "org.springframework:spring-web:$springVersion",            "org.aspectj:aspectjrt:$aspectjVersion",            'javax.annotation:jsr250-api:1.0'    testCompile 'commons-collections:commons-collections:3.2',                "org.springframework:spring-test:$springVersion",                "org.slf4j:jcl-over-slf4j:$slf4jVersion"    testRuntime "hsqldb:hsqldb:$hsqlVersion"}// jdkVersion = System.properties['java.version']// isJdk6 = jdkVersion >= '1.6'int maxAESKeySize = javax.crypto.Cipher.getMaxAllowedKeyLength('AES')test {    if (maxAESKeySize < 256) {        logger.warn("AES keysize limited to $maxAESKeySize, skipping EncryptorsTests")        exclude '**/EncryptorsTests.class'    }}
 |