mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 09:44:59 -05:00
12 lines
222 B
Groovy
12 lines
222 B
Groovy
|
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")
|