Drop support for Java 6.

This commit is contained in:
Kenzie Togami 2016-03-19 09:51:00 -07:00
parent c9f54ecb01
commit 5b38f460d4
2 changed files with 2 additions and 3 deletions

View File

@ -7,7 +7,6 @@ script: ./gradlew build -s
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
# Caching for Gradle files, prevents hitting Maven too much.
before_cache:
- find $HOME/.gradle/ -name '*.lock' -print -exec rm -f {} \;

View File

@ -61,8 +61,8 @@ subprojects {
version = '6.1.1-SNAPSHOT'
ext.internalVersion = version + ";" + gitCommitHash
sourceCompatibility = 1.6
targetCompatibility = 1.6
sourceCompatibility = 1.7
targetCompatibility = 1.7
checkstyle.configFile = new File(rootProject.projectDir, "config/checkstyle/checkstyle.xml")