gson-comments/gson/build.gradle
Marcono1234 dc28951fa7
Change target Java version to 7 (#2043)
* Change target Java version to 7

* Document Gson requirements

* Add package-info.java for `stream` package
2021-12-31 07:20:29 -08:00

14 lines
260 B
Groovy

apply plugin: 'java'
apply plugin: 'maven'
group = 'com.google.code.gson'
version = '2.8.6-SNAPSHOT'
sourceCompatibility = 1.7
targetCompatibility = 1.7
sourceSets.main.java.exclude("**/module-info.java")
dependencies {
testCompile "junit:junit:4.12"
}