File tree Expand file tree Collapse file tree 6 files changed +10
-11
lines changed
android-metadata-generator
runtime-binding-generator Expand file tree Collapse file tree 6 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 77*/
88apply plugin : " java"
99
10- sourceCompatibility = 1.6
11- targetCompatibility = 1.6
10+ sourceCompatibility = JavaVersion . VERSION_1_6
11+ targetCompatibility = JavaVersion . VERSION_1_6
1212
1313buildscript {
1414 repositories {
@@ -36,7 +36,7 @@ compileJava {
3636compileJava. outputs. dir(" $rootDir /dist/classes" )
3737
3838dependencies {
39- compile files( " ./src/libs/ bcel-5.2.jar " )
39+ compile ' org.apache. bcel:bcel:6.0 '
4040 compile files(" ./src/libs/dx.jar" )
4141}
4242
Original file line number Diff line number Diff line change 22<classpath >
33 <classpathentry kind =" src" path =" src" />
44 <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER" />
5- <classpathentry kind =" lib" path =" libs/bcel-5.2.jar" />
65 <classpathentry kind =" output" path =" bin" />
76</classpath >
Original file line number Diff line number Diff line change 11apply plugin : ' java-library'
22
3+ sourceCompatibility = JavaVersion . VERSION_1_7
4+ targetCompatibility = JavaVersion . VERSION_1_7
5+
36dependencies {
4- compile ' org.apache.bcel:bcel:5.2 '
7+ compile ' org.apache.bcel:bcel:6.0 '
58 compile group : ' org.json' , name : ' json' , version : ' 20090211'
69 compile ' commons-io:commons-io:2.5'
710 testCompile ' junit:junit:4.+'
811}
912
10- sourceCompatibility = " 1.7"
11- targetCompatibility = " 1.7"
12-
1313compileJava {
1414 options. compilerArgs << " -Xlint:all" << " -Xlint:-options" << " -Werror"
1515}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ repositories {
99}
1010
1111dependencies {
12- compile ' org.apache.bcel:bcel:5.2 '
12+ compile ' org.apache.bcel:bcel:6.0 '
1313 compile group : ' org.json' , name : ' json' , version : ' 20090211'
1414 compile ' commons-io:commons-io:2.5'
1515}
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ dependencies {
44 testCompile ' junit:junit:4.+'
55}
66
7- sourceCompatibility = " 1.7 "
8- targetCompatibility = " 1.7 "
7+ sourceCompatibility = JavaVersion . VERSION_1_7
8+ targetCompatibility = JavaVersion . VERSION_1_7
You can’t perform that action at this time.
0 commit comments