Skip to content

Commit

Permalink
Bump to Java 7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Capstan committed Oct 29, 2019
1 parent 0d70bd8 commit a922be4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ apply(plugin: "net.ltgt.errorprone");

group = "com.github.java-json-tools";
version = "2.2.12-SNAPSHOT";
sourceCompatibility = "1.6";
targetCompatibility = "1.6"; // defaults to sourceCompatibility
sourceCompatibility = JavaVersion.VERSION_1_7;
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility

/*
* Repositories to use
Expand Down Expand Up @@ -68,7 +68,7 @@ dependencies {
testCompile(group: "org.easytesting", name: "fest-assert", version: "1.4");
}

javadoc.options.links("http://docs.oracle.com/javase/6/docs/api/");
javadoc.options.links("http://docs.oracle.com/javase/7/docs/api/");
javadoc.options.links("http://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.1/");
javadoc.options.links("http://fasterxml.github.com/jackson-databind/javadoc/2.2.0/");
javadoc.options.links("http://fasterxml.github.com/jackson-core/javadoc/2.2.0/");
Expand Down

0 comments on commit a922be4

Please sign in to comment.