aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pg/build.gradle
blob: 83f7c34d4138637d4ae5be9e0a578642cc798915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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")