Skip to content

Commit af73b94

Browse files
committed
1 parent 63bf891 commit af73b94

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ apply(plugin: "net.ltgt.errorprone");
3131

3232
group = "com.github.java-json-tools";
3333
version = "1.2.12-SNAPSHOT";
34-
sourceCompatibility = "1.6";
35-
targetCompatibility = "1.6"; // defaults to sourceCompatibility
34+
sourceCompatibility = JavaVersion.VERSION_1_7;
35+
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
3636

3737
/*
3838
* Repositories to use
@@ -71,7 +71,7 @@ dependencies {
7171
testCompile(group: "org.assertj", name: "assertj-core", version: "2.9.1");
7272
}
7373

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

0 commit comments

Comments
 (0)