diff options
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/spongycastle/core/build.gradle | 12 | ||||
-rw-r--r-- | libraries/spongycastle/pg/build.gradle | 14 | ||||
-rw-r--r-- | libraries/spongycastle/pkix/build.gradle | 14 | ||||
-rw-r--r-- | libraries/spongycastle/prov/build.gradle | 13 |
4 files changed, 53 insertions, 0 deletions
diff --git a/libraries/spongycastle/core/build.gradle b/libraries/spongycastle/core/build.gradle new file mode 100644 index 000000000..e8e5678cf --- /dev/null +++ b/libraries/spongycastle/core/build.gradle @@ -0,0 +1,12 @@ +apply plugin: 'java' + +dependencies { + testCompile group: 'junit', name: 'junit', version: '4.11' +} + +sourceCompatibility = 1.5 +targetCompatibility = 1.5 +version = '1.50.0.0' + +// skip tests +build.dependsOn.remove("check")
\ No newline at end of file diff --git a/libraries/spongycastle/pg/build.gradle b/libraries/spongycastle/pg/build.gradle new file mode 100644 index 000000000..83f7c34d4 --- /dev/null +++ b/libraries/spongycastle/pg/build.gradle @@ -0,0 +1,14 @@ +apply plugin: 'java' + +dependencies { + testCompile group: 'junit', name: 'junit', version: '4.11' + compile project(':libraries:spongycastle:core') + compile project(':libraries:spongycastle:prov') +} + +sourceCompatibility = 1.5 +targetCompatibility = 1.5 +version = '1.50.0.0' + +// skip tests +build.dependsOn.remove("check")
\ No newline at end of file diff --git a/libraries/spongycastle/pkix/build.gradle b/libraries/spongycastle/pkix/build.gradle new file mode 100644 index 000000000..83f7c34d4 --- /dev/null +++ b/libraries/spongycastle/pkix/build.gradle @@ -0,0 +1,14 @@ +apply plugin: 'java' + +dependencies { + testCompile group: 'junit', name: 'junit', version: '4.11' + compile project(':libraries:spongycastle:core') + compile project(':libraries:spongycastle:prov') +} + +sourceCompatibility = 1.5 +targetCompatibility = 1.5 +version = '1.50.0.0' + +// skip tests +build.dependsOn.remove("check")
\ No newline at end of file diff --git a/libraries/spongycastle/prov/build.gradle b/libraries/spongycastle/prov/build.gradle new file mode 100644 index 000000000..87394b68d --- /dev/null +++ b/libraries/spongycastle/prov/build.gradle @@ -0,0 +1,13 @@ +apply plugin: 'java' + +dependencies { + testCompile group: 'junit', name: 'junit', version: '4.11' + compile project(':libraries:spongycastle:core') +} + +sourceCompatibility = 1.5 +targetCompatibility = 1.5 +version = '1.50.0.0' + +// skip tests +build.dependsOn.remove("check")
\ No newline at end of file |