14 lines
260 B
Groovy
14 lines
260 B
Groovy
|
apply plugin: 'java'
|
||
|
apply plugin: 'maven'
|
||
|
|
||
|
group = 'com.google.code.gson'
|
||
|
version = '2.8.4-SNAPSHOT'
|
||
|
|
||
|
sourceCompatibility = 1.6
|
||
|
targetCompatibility = 1.6
|
||
|
|
||
|
sourceSets.main.java.exclude("**/module-info.java")
|
||
|
dependencies {
|
||
|
testCompile "junit:junit:4.12"
|
||
|
}
|