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 04ac394 commit a729498
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
*/
group = "com.github.java-json-tools";
version = "0.9.1-SNAPSHOT";
sourceCompatibility = JavaVersion.VERSION_1_6;
targetCompatibility = JavaVersion.VERSION_1_6; // defaults to sourceCompatibility
sourceCompatibility = JavaVersion.VERSION_1_7;
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility

/*
* List of dependencies
Expand All @@ -48,7 +48,7 @@ dependencies {
* External javadoc links
*/
// FIXME: For some reason, making this https causes OpenJDK 11 to fail.
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("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.1/");
javadoc.options.links("https://fasterxml.github.io/jackson-databind/javadoc/2.2.0/");
javadoc.options.links("https://www.javadoc.io/doc/com.google.guava/guava/25.1-jre/");
Expand Down

0 comments on commit a729498

Please sign in to comment.