aboutsummaryrefslogtreecommitdiffstats
path: root/spongycastle.gradle
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-01-31 14:08:38 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-01-31 14:08:38 +0100
commit3c897d68ff75fac4a351154ca903a1d8791604c0 (patch)
tree49837a847d26e3d72800da55649df75f09ded5a5 /spongycastle.gradle
parenta0c851299ab960d47448a49ce49364e811fb53e5 (diff)
downloadopen-keychain-3c897d68ff75fac4a351154ca903a1d8791604c0.tar.gz
open-keychain-3c897d68ff75fac4a351154ca903a1d8791604c0.tar.bz2
open-keychain-3c897d68ff75fac4a351154ca903a1d8791604c0.zip
Change gradle build for spongy castle, now Android Studio properly finds the classes
Diffstat (limited to 'spongycastle.gradle')
-rw-r--r--spongycastle.gradle67
1 files changed, 0 insertions, 67 deletions
diff --git a/spongycastle.gradle b/spongycastle.gradle
deleted file mode 100644
index 4665f6b3e..000000000
--- a/spongycastle.gradle
+++ /dev/null
@@ -1,67 +0,0 @@
-
-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")
-}
-
-