blob: e8e5678cfdaa009c43cba4f121bf26a8db2f4d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
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")
|