diff --git a/com.ibm.wala.cast.java.ecj/build.gradle b/com.ibm.wala.cast.java.ecj/build.gradle index 6fada8c19..1cb2801d1 100644 --- a/com.ibm.wala.cast.java.ecj/build.gradle +++ b/com.ibm.wala.cast.java.ecj/build.gradle @@ -1,11 +1,13 @@ sourceSets.main.java.srcDirs = ['src'] dependencies { - compile 'org.eclipse.jdt:org.eclipse.jdt.core:3.13.50' - compile 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0' - compile project(':com.ibm.wala.cast') - compile project(':com.ibm.wala.cast.java') - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.shrike') - compile project(':com.ibm.wala.util') + compile( + 'org.eclipse.jdt:org.eclipse.jdt.core:3.13.50', + 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.java'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.cast.java.test/build.gradle b/com.ibm.wala.cast.java.test/build.gradle index 9c5ac00d6..e99434d46 100644 --- a/com.ibm.wala.cast.java.test/build.gradle +++ b/com.ibm.wala.cast.java.test/build.gradle @@ -5,13 +5,15 @@ plugins { sourceSets.test.java.srcDirs = ['src'] dependencies { - testCompile 'junit:junit:4.11' - testCompile 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214' - testCompile 'org.osgi:org.osgi.core:4.2.0' - testCompile project(':com.ibm.wala.cast') - testCompile project(':com.ibm.wala.cast.java') - testCompile project(':com.ibm.wala.core') - testCompile project(':com.ibm.wala.shrike') - testCompile project(':com.ibm.wala.util') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests') + testCompile( + 'junit:junit:4.11', + 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214', + 'org.osgi:org.osgi.core:4.2.0', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.java'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests'), + ) } diff --git a/com.ibm.wala.cast.java/build.gradle b/com.ibm.wala.cast.java/build.gradle index 89a920d5e..29cc65e99 100644 --- a/com.ibm.wala.cast.java/build.gradle +++ b/com.ibm.wala.cast.java/build.gradle @@ -1,8 +1,10 @@ sourceSets.main.java.srcDirs = ['src'] dependencies { - compile project(':com.ibm.wala.cast') - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.shrike') - compile project(':com.ibm.wala.util') + compile( + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.cast.js.html.nu_validator/build.gradle b/com.ibm.wala.cast.js.html.nu_validator/build.gradle index 55a27cf29..eea6ea667 100644 --- a/com.ibm.wala.cast.js.html.nu_validator/build.gradle +++ b/com.ibm.wala.cast.js.html.nu_validator/build.gradle @@ -7,12 +7,16 @@ sourceSets { } dependencies { - compile 'nu.validator.htmlparser:htmlparser:1.4' - compile project(':com.ibm.wala.cast') - compile project(':com.ibm.wala.cast.js') - compile project(':com.ibm.wala.util') - testCompile project(':com.ibm.wala.cast.test') - testCompile project(':com.ibm.wala.core.tests') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.cast.js.rhino.test') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.cast.js.test') + compile( + 'nu.validator.htmlparser:htmlparser:1.4', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.js'), + project(':com.ibm.wala.util'), + ) + testCompile( + project(':com.ibm.wala.cast.test'), + project(':com.ibm.wala.core.tests'), + project(configuration: 'testArchives', path: ':com.ibm.wala.cast.js.rhino.test'), + project(configuration: 'testArchives', path: ':com.ibm.wala.cast.js.test'), + ) } diff --git a/com.ibm.wala.cast.js.nodejs.test/build.gradle b/com.ibm.wala.cast.js.nodejs.test/build.gradle index 138c33241..caff46bba 100644 --- a/com.ibm.wala.cast.js.nodejs.test/build.gradle +++ b/com.ibm.wala.cast.js.nodejs.test/build.gradle @@ -4,7 +4,9 @@ sourceSets.test { } dependencies { - testCompile 'junit:junit:4.11' - testCompile project(':com.ibm.wala.cast.js.nodejs') - testCompile project(':com.ibm.wala.core') + testCompile( + 'junit:junit:4.11', + project(':com.ibm.wala.cast.js.nodejs'), + project(':com.ibm.wala.core'), + ) } diff --git a/com.ibm.wala.cast.js.nodejs/build.gradle b/com.ibm.wala.cast.js.nodejs/build.gradle index bb063b61f..6b7f976c1 100644 --- a/com.ibm.wala.cast.js.nodejs/build.gradle +++ b/com.ibm.wala.cast.js.nodejs/build.gradle @@ -4,11 +4,13 @@ sourceSets.main { } dependencies { - compile 'commons-io:commons-io:2.4' - compile 'org.json:json:20160212' - compile project(':com.ibm.wala.cast') - compile project(':com.ibm.wala.cast.js') - compile project(':com.ibm.wala.cast.js.rhino') - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.util') + compile( + 'commons-io:commons-io:2.4', + 'org.json:json:20160212', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.js'), + project(':com.ibm.wala.cast.js.rhino'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.cast.js.rhino.test/build.gradle b/com.ibm.wala.cast.js.rhino.test/build.gradle index d7c1e51e7..80c3a3a75 100644 --- a/com.ibm.wala.cast.js.rhino.test/build.gradle +++ b/com.ibm.wala.cast.js.rhino.test/build.gradle @@ -8,16 +8,18 @@ sourceSets.test { } dependencies { - testCompile 'junit:junit:4.11' - testCompile project(':com.ibm.wala.cast') - testCompile project(':com.ibm.wala.cast.js') - testCompile project(':com.ibm.wala.cast.js.rhino') - testCompile project(':com.ibm.wala.core') - testCompile project(':com.ibm.wala.shrike') - testCompile project(':com.ibm.wala.util') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.cast.js.test') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.cast.test') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests') + testCompile( + 'junit:junit:4.11', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.js'), + project(':com.ibm.wala.cast.js.rhino'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + project(configuration: 'testArchives', path: ':com.ibm.wala.cast.js.test'), + project(configuration: 'testArchives', path: ':com.ibm.wala.cast.test'), + project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests'), + ) } test.environment 'TRAVIS', 1 diff --git a/com.ibm.wala.cast.js.rhino/build.gradle b/com.ibm.wala.cast.js.rhino/build.gradle index ce61c9258..520d01bea 100644 --- a/com.ibm.wala.cast.js.rhino/build.gradle +++ b/com.ibm.wala.cast.js.rhino/build.gradle @@ -1,9 +1,11 @@ sourceSets.main.java.srcDirs = ['source'] dependencies { - compile 'org.mozilla:rhino:1.7.7.1' - compile project(':com.ibm.wala.cast') - compile project(':com.ibm.wala.cast.js') - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.util') + compile( + 'org.mozilla:rhino:1.7.7.1', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.js'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.cast.js.test/build.gradle b/com.ibm.wala.cast.js.test/build.gradle index 5872bc422..05ca899ca 100644 --- a/com.ibm.wala.cast.js.test/build.gradle +++ b/com.ibm.wala.cast.js.test/build.gradle @@ -5,15 +5,17 @@ plugins { sourceSets.test.java.srcDirs = ['harness-src'] dependencies { - testCompile 'junit:junit:4.11' - testCompile project(':com.ibm.wala.cast') - testCompile project(':com.ibm.wala.cast.js') - testCompile project(':com.ibm.wala.cast.js.rhino') - testCompile project(':com.ibm.wala.core') - testCompile project(':com.ibm.wala.shrike') - testCompile project(':com.ibm.wala.util') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.cast.test') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests') + testCompile( + 'junit:junit:4.11', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.js'), + project(':com.ibm.wala.cast.js.rhino'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + project(configuration: 'testArchives', path: ':com.ibm.wala.cast.test'), + project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests'), + ) } processTestResources { diff --git a/com.ibm.wala.cast.js/build.gradle b/com.ibm.wala.cast.js/build.gradle index 919ef31a1..522232a5e 100644 --- a/com.ibm.wala.cast.js/build.gradle +++ b/com.ibm.wala.cast.js/build.gradle @@ -4,10 +4,12 @@ sourceSets.main { } dependencies { - compile 'commons-io:commons-io:2.4' - compile 'net.htmlparser.jericho:jericho-html:3.2' - compile project(':com.ibm.wala.cast') - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.shrike') - compile project(':com.ibm.wala.util') + compile( + 'commons-io:commons-io:2.4', + 'net.htmlparser.jericho:jericho-html:3.2', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.cast.test/build.gradle b/com.ibm.wala.cast.test/build.gradle index b44843eee..293397d2b 100644 --- a/com.ibm.wala.cast.test/build.gradle +++ b/com.ibm.wala.cast.test/build.gradle @@ -7,11 +7,13 @@ apply plugin: 'cpp' sourceSets.test.java.srcDirs = ['harness-src/java'] dependencies { - testCompile 'junit:junit:4.11' - testCompile project(':com.ibm.wala.cast') - testCompile project(':com.ibm.wala.core') - testCompile project(':com.ibm.wala.util') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests') + testCompile( + 'junit:junit:4.11', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.util'), + project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests'), + ) } // TODO: build following targets for "test"-only, not "main" diff --git a/com.ibm.wala.cast/build.gradle b/com.ibm.wala.cast/build.gradle index 3b28887fe..e270c8653 100644 --- a/com.ibm.wala.cast/build.gradle +++ b/com.ibm.wala.cast/build.gradle @@ -3,10 +3,12 @@ apply plugin: 'cpp' sourceSets.main.java.srcDirs = ['source/java'] dependencies { - compile 'commons-io:commons-io:2.4' - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.shrike') - compile project(':com.ibm.wala.util') + compile( + 'commons-io:commons-io:2.4', + project(':com.ibm.wala.core'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + ) } tasks.javadoc { diff --git a/com.ibm.wala.core.tests/build.gradle b/com.ibm.wala.core.tests/build.gradle index 810c3c4aa..57c1c8846 100644 --- a/com.ibm.wala.core.tests/build.gradle +++ b/com.ibm.wala.core.tests/build.gradle @@ -8,12 +8,14 @@ sourceSets.test { } dependencies { - testCompile 'junit:junit:4.11' - testCompile 'org.apache.ant:ant:1.8.2' - testCompile 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214' - testCompile 'org.hamcrest:hamcrest-core:1.3' - testCompile 'org.osgi:org.osgi.core:4.2.0' - testCompile project(':com.ibm.wala.core') - testCompile project(':com.ibm.wala.shrike') - testCompile project(':com.ibm.wala.util') + testCompile( + 'junit:junit:4.11', + 'org.apache.ant:ant:1.8.2', + 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214', + 'org.hamcrest:hamcrest-core:1.3', + 'org.osgi:org.osgi.core:4.2.0', + project(':com.ibm.wala.core'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.core/build.gradle b/com.ibm.wala.core/build.gradle index ff3ba2dbf..5c5d991d4 100644 --- a/com.ibm.wala.core/build.gradle +++ b/com.ibm.wala.core/build.gradle @@ -7,8 +7,10 @@ sourceSets.main { } dependencies { - compile project(':com.ibm.wala.shrike') - compile project(':com.ibm.wala.util') + compile( + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + ) } tasks.javadoc { diff --git a/com.ibm.wala.dalvik.test/build.gradle b/com.ibm.wala.dalvik.test/build.gradle index 11d6c243f..14b4ae06e 100644 --- a/com.ibm.wala.dalvik.test/build.gradle +++ b/com.ibm.wala.dalvik.test/build.gradle @@ -7,12 +7,14 @@ sourceSets.test { } dependencies { - testCompile 'com.google.android.tools:dx:1.7' - testCompile 'junit:junit:4.11' - testCompile 'org.osgi:org.osgi.core:4.2.0' - testCompile project(':com.ibm.wala.core') - testCompile project(':com.ibm.wala.dalvik') - testCompile project(':com.ibm.wala.shrike') - testCompile project(':com.ibm.wala.util') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests') + testCompile( + 'com.google.android.tools:dx:1.7', + 'junit:junit:4.11', + 'org.osgi:org.osgi.core:4.2.0', + project(':com.ibm.wala.core'), + project(':com.ibm.wala.dalvik'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests'), + ) } diff --git a/com.ibm.wala.dalvik/build.gradle b/com.ibm.wala.dalvik/build.gradle index 4ce0472a4..eb827159c 100644 --- a/com.ibm.wala.dalvik/build.gradle +++ b/com.ibm.wala.dalvik/build.gradle @@ -1,10 +1,12 @@ sourceSets.main.java.srcDirs = ['src'] dependencies { - compile 'org.slf4j:slf4j-api:1.7.2' - compile 'org.smali:dexlib2:2.2.1' - compile project(':com.ibm.wala.cast') - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.shrike') - compile project(':com.ibm.wala.util') + compile( + 'org.slf4j:slf4j-api:1.7.2', + 'org.smali:dexlib2:2.2.1', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.ide.jdt.test/build.gradle b/com.ibm.wala.ide.jdt.test/build.gradle index 3b4cf0821..e96f759ad 100644 --- a/com.ibm.wala.ide.jdt.test/build.gradle +++ b/com.ibm.wala.ide.jdt.test/build.gradle @@ -7,20 +7,22 @@ sourceSets.test { } dependencies { - testCompile 'junit:junit:4.11' - testCompile 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214' - testCompile 'org.eclipse.jdt:org.eclipse.jdt.core:3.13.50' - testCompile 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0' - testCompile project(':com.ibm.wala.cast') - testCompile project(':com.ibm.wala.cast.java') - testCompile project(':com.ibm.wala.cast.java.ecj') - testCompile project(':com.ibm.wala.core') - testCompile project(':com.ibm.wala.ide') - testCompile project(':com.ibm.wala.ide.jdt') - testCompile project(':com.ibm.wala.shrike') - testCompile project(':com.ibm.wala.util') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.cast.java.test') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.ide.tests') + testCompile( + 'junit:junit:4.11', + 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214', + 'org.eclipse.jdt:org.eclipse.jdt.core:3.13.50', + 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.java'), + project(':com.ibm.wala.cast.java.ecj'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.ide'), + project(':com.ibm.wala.ide.jdt'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + project(configuration: 'testArchives', path: ':com.ibm.wala.cast.java.test'), + project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests'), + project(configuration: 'testArchives', path: ':com.ibm.wala.ide.tests'), + ) testRuntime 'org.eclipse.platform:org.eclipse.osgi:3.12.50' } diff --git a/com.ibm.wala.ide.jdt/build.gradle b/com.ibm.wala.ide.jdt/build.gradle index 19367c6eb..9ff46b4b6 100644 --- a/com.ibm.wala.ide.jdt/build.gradle +++ b/com.ibm.wala.ide.jdt/build.gradle @@ -1,20 +1,22 @@ sourceSets.main.java.srcDirs = ['source'] dependencies { - compile 'org.eclipse.jdt:org.eclipse.jdt.core:3.13.50' - compile 'org.eclipse.platform:org.eclipse.core.jobs:3.9.1' - compile 'org.eclipse.platform:org.eclipse.core.resources:3.12.0' - compile 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0' - compile 'org.eclipse.platform:org.eclipse.equinox.app:1.3.400' - compile 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0' - compile 'org.eclipse.platform:org.eclipse.jface:3.13.1' - compile 'org.eclipse.platform:org.eclipse.osgi:3.12.50' - compile 'org.eclipse.platform:org.eclipse.ui.workbench:3.110.1' - compile 'org.osgi:org.osgi.core:4.2.0' - compile project(':com.ibm.wala.cast') - compile project(':com.ibm.wala.cast.java') - compile project(':com.ibm.wala.cast.java.ecj') - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.ide') - compile project(':com.ibm.wala.util') + compile( + 'org.eclipse.jdt:org.eclipse.jdt.core:3.13.50', + 'org.eclipse.platform:org.eclipse.core.jobs:3.9.1', + 'org.eclipse.platform:org.eclipse.core.resources:3.12.0', + 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0', + 'org.eclipse.platform:org.eclipse.equinox.app:1.3.400', + 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0', + 'org.eclipse.platform:org.eclipse.jface:3.13.1', + 'org.eclipse.platform:org.eclipse.osgi:3.12.50', + 'org.eclipse.platform:org.eclipse.ui.workbench:3.110.1', + 'org.osgi:org.osgi.core:4.2.0', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.java'), + project(':com.ibm.wala.cast.java.ecj'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.ide'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.ide.jsdt.tests/build.gradle b/com.ibm.wala.ide.jsdt.tests/build.gradle index 1b587d28d..d994417c9 100644 --- a/com.ibm.wala.ide.jsdt.tests/build.gradle +++ b/com.ibm.wala.ide.jsdt.tests/build.gradle @@ -1,17 +1,19 @@ sourceSets.test.java.srcDirs = ['src'] dependencies { - testCompile 'junit:junit:4.11' - testCompile 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214' - testCompile 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0' - testCompile 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0' - testCompile 'org.eclipse.wst.jsdt:core:1.0.201.v2010012803' - testCompile project(':com.ibm.wala.cast') - testCompile project(':com.ibm.wala.cast.js') - testCompile project(':com.ibm.wala.cast.js.rhino') - testCompile project(':com.ibm.wala.core') - testCompile project(':com.ibm.wala.ide.jsdt') - testCompile project(':com.ibm.wala.util') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.ide.tests') + testCompile( + 'junit:junit:4.11', + 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214', + 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0', + 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0', + 'org.eclipse.wst.jsdt:core:1.0.201.v2010012803', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.js'), + project(':com.ibm.wala.cast.js.rhino'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.ide.jsdt'), + project(':com.ibm.wala.util'), + project(configuration: 'testArchives', path: ':com.ibm.wala.ide.tests'), + ) testRuntime 'org.eclipse.platform:org.eclipse.osgi:3.12.50' } diff --git a/com.ibm.wala.ide.jsdt/build.gradle b/com.ibm.wala.ide.jsdt/build.gradle index 445bb5420..26b885d15 100644 --- a/com.ibm.wala.ide.jsdt/build.gradle +++ b/com.ibm.wala.ide.jsdt/build.gradle @@ -1,16 +1,18 @@ sourceSets.main.java.srcDirs = ['source'] dependencies { - compile 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214' - compile 'org.eclipse.platform:org.eclipse.core.resources:3.12.0' - compile 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0' - compile 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0' - compile 'org.eclipse.wst.jsdt:core:1.0.201.v2010012803' - compile 'org.eclipse.wst.jsdt:ui:1.0.201.v2010012803' - compile project(':com.ibm.wala.cast') - compile project(':com.ibm.wala.cast.js') - compile project(':com.ibm.wala.cast.js.rhino') - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.ide') - compile project(':com.ibm.wala.util') + compile( + 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214', + 'org.eclipse.platform:org.eclipse.core.resources:3.12.0', + 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0', + 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0', + 'org.eclipse.wst.jsdt:core:1.0.201.v2010012803', + 'org.eclipse.wst.jsdt:ui:1.0.201.v2010012803', + project(':com.ibm.wala.cast'), + project(':com.ibm.wala.cast.js'), + project(':com.ibm.wala.cast.js.rhino'), + project(':com.ibm.wala.core'), + project(':com.ibm.wala.ide'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.ide.tests/build.gradle b/com.ibm.wala.ide.tests/build.gradle index ffc1df546..4c2d5ce68 100644 --- a/com.ibm.wala.ide.tests/build.gradle +++ b/com.ibm.wala.ide.tests/build.gradle @@ -5,18 +5,20 @@ plugins { sourceSets.test.java.srcDirs = ['src'] dependencies { - testCompile 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214' - testCompile 'org.eclipse.platform:org.eclipse.core.resources:3.12.0' - testCompile 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0' - testCompile 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0' - testCompile 'org.eclipse.platform:org.eclipse.jface:3.13.1' - testCompile 'org.eclipse.platform:org.eclipse.osgi:3.12.50' - testCompile 'org.eclipse.platform:org.eclipse.ui.ide:3.13.1' - testCompile 'org.eclipse.platform:org.eclipse.ui.workbench:3.110.1' - testCompile 'org.osgi:org.osgi.core:4.2.0' - testCompile project(':com.ibm.wala.core') - testCompile project(':com.ibm.wala.ide') - testCompile project(':com.ibm.wala.util') - testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests') + testCompile( + 'org.eclipse.core:org.eclipse.core.runtime:3.10.0.v20140318-2214', + 'org.eclipse.platform:org.eclipse.core.resources:3.12.0', + 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0', + 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0', + 'org.eclipse.platform:org.eclipse.jface:3.13.1', + 'org.eclipse.platform:org.eclipse.osgi:3.12.50', + 'org.eclipse.platform:org.eclipse.ui.ide:3.13.1', + 'org.eclipse.platform:org.eclipse.ui.workbench:3.110.1', + 'org.osgi:org.osgi.core:4.2.0', + project(':com.ibm.wala.core'), + project(':com.ibm.wala.ide'), + project(':com.ibm.wala.util'), + project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests'), + ) testRuntime project(':com.ibm.wala.ide.jdt') } diff --git a/com.ibm.wala.ide/build.gradle b/com.ibm.wala.ide/build.gradle index 9af49627a..e86618382 100644 --- a/com.ibm.wala.ide/build.gradle +++ b/com.ibm.wala.ide/build.gradle @@ -1,15 +1,17 @@ sourceSets.main.java.srcDirs = ['src'] dependencies { - compile 'org.eclipse.pde:org.eclipse.pde.core:3.11.1' - compile 'org.eclipse.platform:org.eclipse.core.commands:3.9.0' - compile 'org.eclipse.platform:org.eclipse.core.resources:3.12.0' - compile 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0' - compile 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0' - compile 'org.eclipse.platform:org.eclipse.jface:3.13.1' - compile 'org.eclipse.platform:org.eclipse.osgi:3.12.50' - compile 'org.eclipse.platform:org.eclipse.swt.${osgi.platform}:3.106.1' - compile 'org.eclipse.platform:org.eclipse.ui.workbench:3.110.1' - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.util') + compile( + 'org.eclipse.pde:org.eclipse.pde.core:3.11.1', + 'org.eclipse.platform:org.eclipse.core.commands:3.9.0', + 'org.eclipse.platform:org.eclipse.core.resources:3.12.0', + 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0', + 'org.eclipse.platform:org.eclipse.equinox.common:3.9.0', + 'org.eclipse.platform:org.eclipse.jface:3.13.1', + 'org.eclipse.platform:org.eclipse.osgi:3.12.50', + 'org.eclipse.platform:org.eclipse.swt.${osgi.platform}:3.106.1', + 'org.eclipse.platform:org.eclipse.ui.workbench:3.110.1', + project(':com.ibm.wala.core'), + project(':com.ibm.wala.util'), + ) } diff --git a/com.ibm.wala.scandroid/build.gradle b/com.ibm.wala.scandroid/build.gradle index 910177573..9faf093eb 100644 --- a/com.ibm.wala.scandroid/build.gradle +++ b/com.ibm.wala.scandroid/build.gradle @@ -1,10 +1,12 @@ sourceSets.main.java.srcDirs = ['source'] dependencies { - compile 'com.google.guava:guava:18.0' - compile 'commons-cli:commons-cli:1.4' - compile project(':com.ibm.wala.core') - compile project(':com.ibm.wala.dalvik') - compile project(':com.ibm.wala.shrike') - compile project(':com.ibm.wala.util') + compile( + 'com.google.guava:guava:18.0', + 'commons-cli:commons-cli:1.4', + project(':com.ibm.wala.core'), + project(':com.ibm.wala.dalvik'), + project(':com.ibm.wala.shrike'), + project(':com.ibm.wala.util'), + ) }