aboutsummaryrefslogtreecommitdiffstats
path: root/spongycastle.gradle
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-01-27 14:01:37 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-01-27 14:01:37 +0100
commit6ae99cc6cbdf41c0e500f611d4133e16bd7a2113 (patch)
tree5289f20d87bb030029d806ebb607c10f28f5179c /spongycastle.gradle
parent5aec25ac0501352e4cb6645c86869dde6e91f0d0 (diff)
downloadopen-keychain-6ae99cc6cbdf41c0e500f611d4133e16bd7a2113.tar.gz
open-keychain-6ae99cc6cbdf41c0e500f611d4133e16bd7a2113.tar.bz2
open-keychain-6ae99cc6cbdf41c0e500f611d4133e16bd7a2113.zip
New build files for spongy castle
Diffstat (limited to 'spongycastle.gradle')
-rw-r--r--spongycastle.gradle67
1 files changed, 67 insertions, 0 deletions
diff --git a/spongycastle.gradle b/spongycastle.gradle
new file mode 100644
index 000000000..4665f6b3e
--- /dev/null
+++ b/spongycastle.gradle
@@ -0,0 +1,67 @@
+
+project(':libraries:spongycastle:core') {
+ 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")
+}
+
+project(':libraries:spongycastle:pg') {
+ 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")
+}
+
+project(':libraries:spongycastle:pkix') {
+ 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")
+}
+
+project(':libraries:spongycastle:prov') {
+ 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")
+}
+
+