2015-03-20 14:18:29 +01:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.7
|
|
|
|
version = '1.0'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-04-06 10:01:03 +02:00
|
|
|
compile 'org.slf4j:slf4j-api:1.7.12'
|
2015-04-11 16:16:41 +02:00
|
|
|
compile 'org.bouncycastle:bcprov-jdk15on:1.52'
|
2015-03-20 14:18:29 +01:00
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.11'
|
|
|
|
}
|