Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test-app/build-tools/android-metadata-generator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
*/
apply plugin: "java"

sourceCompatibility = 1.6
targetCompatibility = 1.6
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6

buildscript {
repositories {
Expand Down Expand Up @@ -36,7 +36,7 @@ compileJava {
compileJava.outputs.dir("$rootDir/dist/classes")

dependencies {
compile files("./src/libs/bcel-5.2.jar")
compile 'org.apache.bcel:bcel:6.0'
compile files("./src/libs/dx.jar")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="libs/bcel-5.2.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Binary file not shown.
8 changes: 4 additions & 4 deletions test-app/build-tools/static-binding-generator/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'java-library'

sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7

dependencies {
compile 'org.apache.bcel:bcel:5.2'
compile 'org.apache.bcel:bcel:6.0'
compile group: 'org.json', name: 'json', version: '20090211'
compile 'commons-io:commons-io:2.5'
testCompile 'junit:junit:4.+'
}

sourceCompatibility = "1.7"
targetCompatibility = "1.7"

compileJava {
options.compilerArgs << "-Xlint:all" << "-Xlint:-options" << "-Werror"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
}

dependencies {
compile 'org.apache.bcel:bcel:5.2'
compile 'org.apache.bcel:bcel:6.0'
compile group: 'org.json', name: 'json', version: '20090211'
compile 'commons-io:commons-io:2.5'
}
Expand Down
4 changes: 2 additions & 2 deletions test-app/runtime-binding-generator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ dependencies {
testCompile 'junit:junit:4.+'
}

sourceCompatibility = "1.7"
targetCompatibility = "1.7"
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7