From 7c2d18cd585736914b31bcd4b3fd520bb99a31ce Mon Sep 17 00:00:00 2001 From: Marcel Bruch Date: Fri, 19 Apr 2013 16:23:42 +0200 Subject: [PATCH] [releng] added preliminary maven tycho build support --- .gitignore | 1 + com.ibm.wala-feature/build.properties | 4 +- com.ibm.wala-feature/feature.xml | 4 +- com.ibm.wala-feature/pom.xml | 12 ++ com.ibm.wala-repository/category.xml | 13 ++ com.ibm.wala-repository/pom.xml | 12 ++ .../META-INF/MANIFEST.MF | 6 +- com.ibm.wala.cast.java.polyglot.test/pom.xml | 14 ++ .../META-INF/MANIFEST.MF | 2 +- com.ibm.wala.cast.java.polyglot/pom.xml | 14 ++ .../META-INF/MANIFEST.MF | 2 +- com.ibm.wala.cast.java.test.data/pom.xml | 12 ++ .../META-INF/MANIFEST.MF | 6 +- com.ibm.wala.cast.java.test/pom.xml | 12 ++ com.ibm.wala.cast.java/META-INF/MANIFEST.MF | 2 +- com.ibm.wala.cast.java/build.properties | 4 +- com.ibm.wala.cast.java/pom.xml | 12 ++ .../pom.xml | 14 ++ com.ibm.wala.cast.js.rhino.test/pom.xml | 14 ++ com.ibm.wala.cast.js.rhino/pom.xml | 14 ++ com.ibm.wala.cast.js.test.data/pom.xml | 14 ++ com.ibm.wala.cast.js.test/pom.xml | 14 ++ com.ibm.wala.cast.js/pom.xml | 14 ++ com.ibm.wala.cast.test/META-INF/MANIFEST.MF | 4 +- com.ibm.wala.cast.test/pom.xml | 12 ++ com.ibm.wala.cast/META-INF/MANIFEST.MF | 2 +- com.ibm.wala.cast/pom.xml | 12 ++ .../META-INF/MANIFEST.MF | 2 +- com.ibm.wala.core.testdata/pom.xml | 12 ++ com.ibm.wala.core.tests/META-INF/MANIFEST.MF | 4 +- .../launchers/wala.core.launch | 1 - com.ibm.wala.core.tests/pom.xml | 12 ++ com.ibm.wala.core/META-INF/MANIFEST.MF | 2 +- com.ibm.wala.core/pom.xml | 12 ++ com.ibm.wala.ide-feature/build.properties | 4 +- com.ibm.wala.ide-feature/feature.xml | 11 +- com.ibm.wala.ide-feature/pom.xml | 12 ++ .../META-INF/MANIFEST.MF | 2 +- com.ibm.wala.ide.jdt.test/pom.xml | 14 ++ com.ibm.wala.ide.jdt/META-INF/MANIFEST.MF | 20 +-- com.ibm.wala.ide.jdt/pom.xml | 12 ++ com.ibm.wala.ide.jsdt.tests/pom.xml | 14 ++ com.ibm.wala.ide.jsdt/pom.xml | 14 ++ com.ibm.wala.ide.tests/META-INF/MANIFEST.MF | 2 +- com.ibm.wala.ide.tests/pom.xml | 14 ++ com.ibm.wala.ide/META-INF/MANIFEST.MF | 5 +- com.ibm.wala.ide/pom.xml | 12 ++ com.ibm.wala.shrike/META-INF/MANIFEST.MF | 2 +- com.ibm.wala.shrike/pom.xml | 12 ++ com.ibm.wala.tests-feature/feature.xml | 6 +- com.ibm.wala.tests-feature/pom.xml | 12 ++ com.ibm.wala.tests.ide-feature/feature.xml | 9 +- com.ibm.wala.tests.ide-feature/pom.xml | 14 ++ com.ibm.wala.util/.gitignore | 1 + com.ibm.wala.util/META-INF/MANIFEST.MF | 5 +- com.ibm.wala.util/pom.xml | 12 ++ pom.xml | 147 ++++++++++++++++++ targets/e42/e42.target | 44 ++++++ targets/e42/pom.xml | 12 ++ targets/pom.xml | 16 ++ 60 files changed, 654 insertions(+), 65 deletions(-) create mode 100644 com.ibm.wala-feature/pom.xml create mode 100644 com.ibm.wala-repository/category.xml create mode 100644 com.ibm.wala-repository/pom.xml create mode 100644 com.ibm.wala.cast.java.polyglot.test/pom.xml create mode 100644 com.ibm.wala.cast.java.polyglot/pom.xml create mode 100644 com.ibm.wala.cast.java.test.data/pom.xml create mode 100644 com.ibm.wala.cast.java.test/pom.xml create mode 100644 com.ibm.wala.cast.java/pom.xml create mode 100644 com.ibm.wala.cast.js.html.nu_validator/pom.xml create mode 100644 com.ibm.wala.cast.js.rhino.test/pom.xml create mode 100644 com.ibm.wala.cast.js.rhino/pom.xml create mode 100644 com.ibm.wala.cast.js.test.data/pom.xml create mode 100644 com.ibm.wala.cast.js.test/pom.xml create mode 100644 com.ibm.wala.cast.js/pom.xml create mode 100644 com.ibm.wala.cast.test/pom.xml create mode 100644 com.ibm.wala.cast/pom.xml create mode 100644 com.ibm.wala.core.testdata/pom.xml create mode 100644 com.ibm.wala.core.tests/pom.xml create mode 100644 com.ibm.wala.core/pom.xml create mode 100644 com.ibm.wala.ide-feature/pom.xml create mode 100644 com.ibm.wala.ide.jdt.test/pom.xml create mode 100644 com.ibm.wala.ide.jdt/pom.xml create mode 100644 com.ibm.wala.ide.jsdt.tests/pom.xml create mode 100644 com.ibm.wala.ide.jsdt/pom.xml create mode 100644 com.ibm.wala.ide.tests/pom.xml create mode 100644 com.ibm.wala.ide/pom.xml create mode 100644 com.ibm.wala.shrike/pom.xml create mode 100644 com.ibm.wala.tests-feature/pom.xml create mode 100644 com.ibm.wala.tests.ide-feature/pom.xml create mode 100644 com.ibm.wala.util/.gitignore create mode 100644 com.ibm.wala.util/pom.xml create mode 100644 pom.xml create mode 100644 targets/e42/e42.target create mode 100644 targets/e42/pom.xml create mode 100644 targets/pom.xml diff --git a/.gitignore b/.gitignore index 7aa1eb0fc..1d84436da 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +target/ */bin/ com.ibm.wala.cast.js.rhino/lib/ com.ibm.wala.cast.js/lib/ diff --git a/com.ibm.wala-feature/build.properties b/com.ibm.wala-feature/build.properties index fd680b6f8..b3a611b5c 100644 --- a/com.ibm.wala-feature/build.properties +++ b/com.ibm.wala-feature/build.properties @@ -1,4 +1,2 @@ bin.includes = feature.xml,\ - feature.properties,\ - license.html,\ - notice.html + feature.properties diff --git a/com.ibm.wala-feature/feature.xml b/com.ibm.wala-feature/feature.xml index bf8955345..93767740a 100644 --- a/com.ibm.wala-feature/feature.xml +++ b/com.ibm.wala-feature/feature.xml @@ -1,8 +1,8 @@ diff --git a/com.ibm.wala-feature/pom.xml b/com.ibm.wala-feature/pom.xml new file mode 100644 index 000000000..4cc0a7cd9 --- /dev/null +++ b/com.ibm.wala-feature/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala-feature + eclipse-feature + diff --git a/com.ibm.wala-repository/category.xml b/com.ibm.wala-repository/category.xml new file mode 100644 index 000000000..1413a77af --- /dev/null +++ b/com.ibm.wala-repository/category.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/com.ibm.wala-repository/pom.xml b/com.ibm.wala-repository/pom.xml new file mode 100644 index 000000000..5d56d786d --- /dev/null +++ b/com.ibm.wala-repository/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + com.ibm.wala + WALA + 1.3.4-SNAPSHOT + + com.ibm.wala-repository + eclipse-repository + diff --git a/com.ibm.wala.cast.java.polyglot.test/META-INF/MANIFEST.MF b/com.ibm.wala.cast.java.polyglot.test/META-INF/MANIFEST.MF index 861ee8d27..6b4a7ee31 100644 --- a/com.ibm.wala.cast.java.polyglot.test/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.java.polyglot.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: WALA Cast Java Polyglot Test Plug-in Bundle-SymbolicName: com.ibm.wala.cast.java.polyglot.test -Bundle-Version: 1.0.0 +Bundle-Version: 1.3.4.qualifier Bundle-Activator: com.ibm.wala.cast.java.polyglot.test.Activator Bundle-Vendor: IBM Require-Bundle: com.ibm.wala.cast;bundle-version="1.0.0", @@ -13,6 +13,6 @@ Require-Bundle: com.ibm.wala.cast;bundle-version="1.0.0", org.eclipse.core.runtime, com.ibm.wala.cast.test;bundle-version="1.0.0", com.ibm.wala.cast.java.polyglot;bundle-version="1.0.0", - org.junit4;bundle-version="4.3.1" -Bundle-RequiredExecutionEnvironment: JavaSE-1.6 + org.junit;bundle-version="4.0.0" +Bundle-RequiredExecutionEnvironment: J2SE-1.5 Bundle-ActivationPolicy: lazy diff --git a/com.ibm.wala.cast.java.polyglot.test/pom.xml b/com.ibm.wala.cast.java.polyglot.test/pom.xml new file mode 100644 index 000000000..717105108 --- /dev/null +++ b/com.ibm.wala.cast.java.polyglot.test/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.cast.java.polyglot.test + 1.0.0 + eclipse-plugin + diff --git a/com.ibm.wala.cast.java.polyglot/META-INF/MANIFEST.MF b/com.ibm.wala.cast.java.polyglot/META-INF/MANIFEST.MF index bfad0f04b..9a3cf5f5c 100644 --- a/com.ibm.wala.cast.java.polyglot/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.java.polyglot/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: WALA CAst Java Polyglot Plug-in Bundle-SymbolicName: com.ibm.wala.cast.java.polyglot -Bundle-Version: 1.0.0 +Bundle-Version: 1.3.4.qualifier Bundle-Vendor: IBM Require-Bundle: com.ibm.wala.cast.java, com.ibm.wala.cast, diff --git a/com.ibm.wala.cast.java.polyglot/pom.xml b/com.ibm.wala.cast.java.polyglot/pom.xml new file mode 100644 index 000000000..db2c5e47a --- /dev/null +++ b/com.ibm.wala.cast.java.polyglot/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.cast.java.polyglot + 1.0.0 + eclipse-plugin + diff --git a/com.ibm.wala.cast.java.test.data/META-INF/MANIFEST.MF b/com.ibm.wala.cast.java.test.data/META-INF/MANIFEST.MF index 860f076cb..069629ab7 100644 --- a/com.ibm.wala.cast.java.test.data/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.java.test.data/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Data Plug-in Bundle-SymbolicName: com.ibm.wala.cast.java.test.data -Bundle-Version: 1.0.0 +Bundle-Version: 1.3.4.qualifier Bundle-Vendor: IBM Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-ActivationPolicy: lazy diff --git a/com.ibm.wala.cast.java.test.data/pom.xml b/com.ibm.wala.cast.java.test.data/pom.xml new file mode 100644 index 000000000..9b9f9d822 --- /dev/null +++ b/com.ibm.wala.cast.java.test.data/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + com.ibm.wala + WALA + 1.3.4-SNAPSHOT + + com.ibm.wala.cast.java.test.data + eclipse-plugin + diff --git a/com.ibm.wala.cast.java.test/META-INF/MANIFEST.MF b/com.ibm.wala.cast.java.test/META-INF/MANIFEST.MF index 008b4bb13..e5c8e8f21 100644 --- a/com.ibm.wala.cast.java.test/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.java.test/META-INF/MANIFEST.MF @@ -5,13 +5,13 @@ Bundle-SymbolicName: com.ibm.wala.cast.java.test Bundle-Version: 1.0.0 Bundle-Activator: com.ibm.wala.cast.java.test.TestPlugin Bundle-Vendor: IBM -Require-Bundle: org.junit4, - com.ibm.wala.core.tests, +Require-Bundle: com.ibm.wala.core.tests, com.ibm.wala.cast.java, com.ibm.wala.cast, com.ibm.wala.core, com.ibm.wala.shrike, - org.eclipse.core.runtime + org.eclipse.core.runtime, + org.junit;bundle-version="4.0.0" Bundle-ActivationPolicy: lazy Export-Package: com.ibm.wala.cast.java.test Bundle-RequiredExecutionEnvironment: JavaSE-1.6 diff --git a/com.ibm.wala.cast.java.test/pom.xml b/com.ibm.wala.cast.java.test/pom.xml new file mode 100644 index 000000000..8060e2b93 --- /dev/null +++ b/com.ibm.wala.cast.java.test/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + com.ibm.wala + WALA + 1.3.4-SNAPSHOT + + com.ibm.wala.cast.java.test + eclipse-test-plugin + diff --git a/com.ibm.wala.cast.java/META-INF/MANIFEST.MF b/com.ibm.wala.cast.java/META-INF/MANIFEST.MF index d2bfa7384..a312ba006 100644 --- a/com.ibm.wala.cast.java/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.java/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Java Source WALA Front End Bundle-SymbolicName: com.ibm.wala.cast.java -Bundle-Version: 1.0.0.qualifier +Bundle-Version: 1.3.4.qualifier Bundle-Activator: com.ibm.wala.cast.java.JavaSourcePlugin Bundle-Vendor: rfuhrer@watson.ibm.com Require-Bundle: com.ibm.wala.cast, diff --git a/com.ibm.wala.cast.java/build.properties b/com.ibm.wala.cast.java/build.properties index d9146fc61..34d2e4d2d 100644 --- a/com.ibm.wala.cast.java/build.properties +++ b/com.ibm.wala.cast.java/build.properties @@ -1,6 +1,4 @@ source.. = src/ output.. = bin/ bin.includes = META-INF/,\ - .,\ - lib/java_cup.jar,\ - lib/polyglot.jar + . diff --git a/com.ibm.wala.cast.java/pom.xml b/com.ibm.wala.cast.java/pom.xml new file mode 100644 index 000000000..5ebf1cc4f --- /dev/null +++ b/com.ibm.wala.cast.java/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala.cast.java + eclipse-plugin + diff --git a/com.ibm.wala.cast.js.html.nu_validator/pom.xml b/com.ibm.wala.cast.js.html.nu_validator/pom.xml new file mode 100644 index 000000000..5d2add2d9 --- /dev/null +++ b/com.ibm.wala.cast.js.html.nu_validator/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.cast.js.html.nu_validator + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/com.ibm.wala.cast.js.rhino.test/pom.xml b/com.ibm.wala.cast.js.rhino.test/pom.xml new file mode 100644 index 000000000..ca3571a60 --- /dev/null +++ b/com.ibm.wala.cast.js.rhino.test/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.cast.js.rhino.test + 1.0.0 + eclipse-plugin + diff --git a/com.ibm.wala.cast.js.rhino/pom.xml b/com.ibm.wala.cast.js.rhino/pom.xml new file mode 100644 index 000000000..3aa6b32f7 --- /dev/null +++ b/com.ibm.wala.cast.js.rhino/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.cast.js.rhino + 1.0.0 + eclipse-plugin + diff --git a/com.ibm.wala.cast.js.test.data/pom.xml b/com.ibm.wala.cast.js.test.data/pom.xml new file mode 100644 index 000000000..eceef9eec --- /dev/null +++ b/com.ibm.wala.cast.js.test.data/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.cast.js.test.data + 1.1.3-SNAPSHOT + eclipse-plugin + diff --git a/com.ibm.wala.cast.js.test/pom.xml b/com.ibm.wala.cast.js.test/pom.xml new file mode 100644 index 000000000..077cfbff8 --- /dev/null +++ b/com.ibm.wala.cast.js.test/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.cast.js.test + 1.0.0 + eclipse-plugin + diff --git a/com.ibm.wala.cast.js/pom.xml b/com.ibm.wala.cast.js/pom.xml new file mode 100644 index 000000000..dbfd60b1d --- /dev/null +++ b/com.ibm.wala.cast.js/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.cast.js + 1.0.0 + eclipse-plugin + diff --git a/com.ibm.wala.cast.test/META-INF/MANIFEST.MF b/com.ibm.wala.cast.test/META-INF/MANIFEST.MF index 8471852c0..b04a11f95 100644 --- a/com.ibm.wala.cast.test/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast.test/META-INF/MANIFEST.MF @@ -2,10 +2,10 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: CAst Test Plug-in Bundle-SymbolicName: com.ibm.wala.cast.test -Bundle-Version: 1.0.0 +Bundle-Version: 1.3.4.qualifier Bundle-Vendor: IBM Require-Bundle: - org.junit4, + org.junit;bundle-version="4.0.0", com.ibm.wala.core.tests, com.ibm.wala.cast, com.ibm.wala.core, diff --git a/com.ibm.wala.cast.test/pom.xml b/com.ibm.wala.cast.test/pom.xml new file mode 100644 index 000000000..6d9346166 --- /dev/null +++ b/com.ibm.wala.cast.test/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + com.ibm.wala + WALA + 1.3.4-SNAPSHOT + + com.ibm.wala.cast.test + eclipse-test-plugin + diff --git a/com.ibm.wala.cast/META-INF/MANIFEST.MF b/com.ibm.wala.cast/META-INF/MANIFEST.MF index 50084f0eb..129af4fc9 100644 --- a/com.ibm.wala.cast/META-INF/MANIFEST.MF +++ b/com.ibm.wala.cast/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: WALA CAst core Plug-in Bundle-SymbolicName: com.ibm.wala.cast -Bundle-Version: 1.0.0.qualifier +Bundle-Version: 1.3.4.qualifier Bundle-Activator: com.ibm.wala.cast.plugin.AstPlugin Bundle-Vendor: IBM Require-Bundle: com.ibm.wala.core, diff --git a/com.ibm.wala.cast/pom.xml b/com.ibm.wala.cast/pom.xml new file mode 100644 index 000000000..46bda53b9 --- /dev/null +++ b/com.ibm.wala.cast/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala.cast + eclipse-plugin + diff --git a/com.ibm.wala.core.testdata/META-INF/MANIFEST.MF b/com.ibm.wala.core.testdata/META-INF/MANIFEST.MF index b488cc53c..47aa91192 100644 --- a/com.ibm.wala.core.testdata/META-INF/MANIFEST.MF +++ b/com.ibm.wala.core.testdata/META-INF/MANIFEST.MF @@ -2,6 +2,6 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Testdata Plug-in Bundle-SymbolicName: com.ibm.wala.core.testdata -Bundle-Version: 1.0.0 +Bundle-Version: 1.3.4.qualifier Bundle-Vendor: IBM Bundle-RequiredExecutionEnvironment: JavaSE-1.6 diff --git a/com.ibm.wala.core.testdata/pom.xml b/com.ibm.wala.core.testdata/pom.xml new file mode 100644 index 000000000..4eabfb994 --- /dev/null +++ b/com.ibm.wala.core.testdata/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + com.ibm.wala + WALA + 1.3.4-SNAPSHOT + + com.ibm.wala.core.testdata + eclipse-plugin + diff --git a/com.ibm.wala.core.tests/META-INF/MANIFEST.MF b/com.ibm.wala.core.tests/META-INF/MANIFEST.MF index 4eb18abef..313cdfd48 100644 --- a/com.ibm.wala.core.tests/META-INF/MANIFEST.MF +++ b/com.ibm.wala.core.tests/META-INF/MANIFEST.MF @@ -2,12 +2,12 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: com.ibm.wala.core.tests;singleton:=true -Bundle-Version: 1.1.3.qualifier +Bundle-Version: 1.3.4.qualifier Bundle-Vendor: %providerName Require-Bundle: com.ibm.wala.shrike, com.ibm.wala.core, org.eclipse.core.runtime, - org.junit4;bundle-version="4.3.1" + org.junit;bundle-version="4.3.1" Bundle-Localization: plugin Export-Package: com.ibm.wala.core.tests.basic, com.ibm.wala.core.tests.callGraph, diff --git a/com.ibm.wala.core.tests/launchers/wala.core.launch b/com.ibm.wala.core.tests/launchers/wala.core.launch index 75adbe8cc..673313914 100644 --- a/com.ibm.wala.core.tests/launchers/wala.core.launch +++ b/com.ibm.wala.core.tests/launchers/wala.core.launch @@ -21,7 +21,6 @@ - diff --git a/com.ibm.wala.core.tests/pom.xml b/com.ibm.wala.core.tests/pom.xml new file mode 100644 index 000000000..c3f48055f --- /dev/null +++ b/com.ibm.wala.core.tests/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + com.ibm.wala + WALA + 1.3.4-SNAPSHOT + + com.ibm.wala.core.tests + eclipse-test-plugin + diff --git a/com.ibm.wala.core/META-INF/MANIFEST.MF b/com.ibm.wala.core/META-INF/MANIFEST.MF index 53d6b3eaa..6febf89c7 100644 --- a/com.ibm.wala.core/META-INF/MANIFEST.MF +++ b/com.ibm.wala.core/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Eclipse-LazyStart: true Bundle-Name: %pluginName Bundle-SymbolicName: com.ibm.wala.core -Bundle-Version: 1.1.3.qualifier +Bundle-Version: 1.3.4.qualifier Bundle-Vendor: %providerName Bundle-Localization: plugin Require-Bundle: com.ibm.wala.shrike, diff --git a/com.ibm.wala.core/pom.xml b/com.ibm.wala.core/pom.xml new file mode 100644 index 000000000..012b60b6a --- /dev/null +++ b/com.ibm.wala.core/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala.core + eclipse-plugin + diff --git a/com.ibm.wala.ide-feature/build.properties b/com.ibm.wala.ide-feature/build.properties index fd680b6f8..b3a611b5c 100644 --- a/com.ibm.wala.ide-feature/build.properties +++ b/com.ibm.wala.ide-feature/build.properties @@ -1,4 +1,2 @@ bin.includes = feature.xml,\ - feature.properties,\ - license.html,\ - notice.html + feature.properties diff --git a/com.ibm.wala.ide-feature/feature.xml b/com.ibm.wala.ide-feature/feature.xml index 564b94477..112c2234c 100644 --- a/com.ibm.wala.ide-feature/feature.xml +++ b/com.ibm.wala.ide-feature/feature.xml @@ -1,8 +1,8 @@ @@ -20,11 +20,4 @@ version="0.0.0" unpack="false"/> - - diff --git a/com.ibm.wala.ide-feature/pom.xml b/com.ibm.wala.ide-feature/pom.xml new file mode 100644 index 000000000..597c8b3e4 --- /dev/null +++ b/com.ibm.wala.ide-feature/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala.ide-feature + eclipse-feature + diff --git a/com.ibm.wala.ide.jdt.test/META-INF/MANIFEST.MF b/com.ibm.wala.ide.jdt.test/META-INF/MANIFEST.MF index 6b0ee6589..6631e4688 100644 --- a/com.ibm.wala.ide.jdt.test/META-INF/MANIFEST.MF +++ b/com.ibm.wala.ide.jdt.test/META-INF/MANIFEST.MF @@ -17,7 +17,7 @@ Require-Bundle: com.ibm.wala.cast.java.test;bundle-version="1.0.0", com.ibm.wala.util;bundle-version="1.1.3", org.eclipse.core.resources;bundle-version="3.4.1", org.eclipse.jdt.core;bundle-version="3.4.2", - org.junit4;bundle-version="4.8.1", + org.junit;bundle-version="4.8.1", org.eclipse.core.runtime, org.eclipse.pde.core;bundle-version="3.6.0" Bundle-ActivationPolicy: lazy diff --git a/com.ibm.wala.ide.jdt.test/pom.xml b/com.ibm.wala.ide.jdt.test/pom.xml new file mode 100644 index 000000000..e2e2bdcb4 --- /dev/null +++ b/com.ibm.wala.ide.jdt.test/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.ide.jdt.test + 1.0.0 + eclipse-plugin + diff --git a/com.ibm.wala.ide.jdt/META-INF/MANIFEST.MF b/com.ibm.wala.ide.jdt/META-INF/MANIFEST.MF index eccacb821..9da941889 100644 --- a/com.ibm.wala.ide.jdt/META-INF/MANIFEST.MF +++ b/com.ibm.wala.ide.jdt/META-INF/MANIFEST.MF @@ -2,20 +2,20 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: WALA IDE JDT components Bundle-SymbolicName: com.ibm.wala.ide.jdt -Bundle-Version: 1.0.0.qualifier +Bundle-Version: 1.3.4.qualifier Bundle-Activator: com.ibm.wala.ide.jdt.Activator Bundle-Vendor: IBM Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, - com.ibm.wala.cast;bundle-version="1.0.0", - com.ibm.wala.cast.java;bundle-version="1.0.0", - com.ibm.wala.core;bundle-version="1.1.3", - com.ibm.wala.ide;bundle-version="1.1.3", - com.ibm.wala.shrike;bundle-version="1.3.1", - com.ibm.wala.util;bundle-version="2.0.0", - org.eclipse.core.resources;bundle-version="3.6.0", - org.eclipse.jdt.core;bundle-version="3.6.0", - org.eclipse.pde.core;bundle-version="3.6.0" + com.ibm.wala.cast, + com.ibm.wala.cast.java, + com.ibm.wala.core, + com.ibm.wala.ide, + com.ibm.wala.shrike, + com.ibm.wala.util, + org.eclipse.core.resources, + org.eclipse.jdt.core, + org.eclipse.pde.core Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-ActivationPolicy: lazy Export-Package: com.ibm.wala.cast.java.client, diff --git a/com.ibm.wala.ide.jdt/pom.xml b/com.ibm.wala.ide.jdt/pom.xml new file mode 100644 index 000000000..585a56782 --- /dev/null +++ b/com.ibm.wala.ide.jdt/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala.ide.jdt + eclipse-plugin + diff --git a/com.ibm.wala.ide.jsdt.tests/pom.xml b/com.ibm.wala.ide.jsdt.tests/pom.xml new file mode 100644 index 000000000..b71cea93d --- /dev/null +++ b/com.ibm.wala.ide.jsdt.tests/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.ide.jsdt.tests + 1.0.0-SNAPSHOT + eclipse-test-plugin + diff --git a/com.ibm.wala.ide.jsdt/pom.xml b/com.ibm.wala.ide.jsdt/pom.xml new file mode 100644 index 000000000..50c95d066 --- /dev/null +++ b/com.ibm.wala.ide.jsdt/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.ide.jsdt + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/com.ibm.wala.ide.tests/META-INF/MANIFEST.MF b/com.ibm.wala.ide.tests/META-INF/MANIFEST.MF index e266579c2..98252d346 100644 --- a/com.ibm.wala.ide.tests/META-INF/MANIFEST.MF +++ b/com.ibm.wala.ide.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: com.ibm.wala.ide.tests;singleton:=true -Bundle-Version: 1.1.3.qualifier +Bundle-Version: 1.3.4.qualifier Bundle-Vendor: %providerName Require-Bundle: com.ibm.wala.shrike, com.ibm.wala.core, diff --git a/com.ibm.wala.ide.tests/pom.xml b/com.ibm.wala.ide.tests/pom.xml new file mode 100644 index 000000000..3cd5856a6 --- /dev/null +++ b/com.ibm.wala.ide.tests/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.ide.tests + 1.1.3-SNAPSHOT + eclipse-test-plugin + diff --git a/com.ibm.wala.ide/META-INF/MANIFEST.MF b/com.ibm.wala.ide/META-INF/MANIFEST.MF index 4fa28d5d3..0b65e0c44 100644 --- a/com.ibm.wala.ide/META-INF/MANIFEST.MF +++ b/com.ibm.wala.ide/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Eclipse-LazyStart: true Bundle-Name: %pluginName Bundle-SymbolicName: com.ibm.wala.ide -Bundle-Version: 1.1.3.qualifier +Bundle-Version: 1.3.4.qualifier Bundle-Activator: com.ibm.wala.ide.plugin.CorePlugin Bundle-Vendor: %providerName Bundle-Localization: plugin @@ -13,7 +13,8 @@ Require-Bundle: com.ibm.wala.core, org.eclipse.jface, org.eclipse.ui, org.eclipse.core.resources, - org.eclipse.core.runtime + org.eclipse.core.runtime, + org.eclipse.jdt.core Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Export-Package: com.ibm.wala.ide.classloader, diff --git a/com.ibm.wala.ide/pom.xml b/com.ibm.wala.ide/pom.xml new file mode 100644 index 000000000..88a9b6db0 --- /dev/null +++ b/com.ibm.wala.ide/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala.ide + eclipse-plugin + diff --git a/com.ibm.wala.shrike/META-INF/MANIFEST.MF b/com.ibm.wala.shrike/META-INF/MANIFEST.MF index 006a0d84d..5a6cd04c2 100644 --- a/com.ibm.wala.shrike/META-INF/MANIFEST.MF +++ b/com.ibm.wala.shrike/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: com.ibm.wala.shrike -Bundle-Version: 1.3.1.qualifier +Bundle-Version: 1.3.4.qualifier Bundle-Vendor: %providerName Bundle-ActivationPolicy: lazy Bundle-Localization: plugin diff --git a/com.ibm.wala.shrike/pom.xml b/com.ibm.wala.shrike/pom.xml new file mode 100644 index 000000000..ac1666afe --- /dev/null +++ b/com.ibm.wala.shrike/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala.shrike + eclipse-plugin + diff --git a/com.ibm.wala.tests-feature/feature.xml b/com.ibm.wala.tests-feature/feature.xml index 6bf9f0603..0c21a45bc 100644 --- a/com.ibm.wala.tests-feature/feature.xml +++ b/com.ibm.wala.tests-feature/feature.xml @@ -1,8 +1,8 @@ @@ -19,7 +19,7 @@ install-size="0" version="0.0.0" unpack="false"/> - + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala.tests-feature + eclipse-feature + diff --git a/com.ibm.wala.tests.ide-feature/feature.xml b/com.ibm.wala.tests.ide-feature/feature.xml index f8260d903..c9098793f 100644 --- a/com.ibm.wala.tests.ide-feature/feature.xml +++ b/com.ibm.wala.tests.ide-feature/feature.xml @@ -2,7 +2,7 @@ @@ -13,13 +13,6 @@ %license - - + + 4.0.0 + + WALA + com.ibm.wala + 0.0.1-SNAPSHOT + + com.ibm.wala + com.ibm.wala.tests.ide + 1.1.3-SNAPSHOT + eclipse-feature + diff --git a/com.ibm.wala.util/.gitignore b/com.ibm.wala.util/.gitignore new file mode 100644 index 000000000..1ad0b565d --- /dev/null +++ b/com.ibm.wala.util/.gitignore @@ -0,0 +1 @@ +/walaUtil.jar diff --git a/com.ibm.wala.util/META-INF/MANIFEST.MF b/com.ibm.wala.util/META-INF/MANIFEST.MF index 681dbf546..b3193cf24 100644 --- a/com.ibm.wala.util/META-INF/MANIFEST.MF +++ b/com.ibm.wala.util/META-INF/MANIFEST.MF @@ -1,8 +1,8 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 -Bundle-Name: Util +Bundle-Name: WALA Util Bundle-SymbolicName: com.ibm.wala.util -Bundle-Version: 2.0.0.qualifier +Bundle-Version: 1.3.4.qualifier Export-Package: com.ibm.wala.dataflow.graph, com.ibm.wala.fixedpoint.impl, com.ibm.wala.fixpoint, @@ -25,3 +25,4 @@ Export-Package: com.ibm.wala.dataflow.graph, com.ibm.wala.viz Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-ClassPath: walaUtil.jar +Bundle-Vendor: IBM diff --git a/com.ibm.wala.util/pom.xml b/com.ibm.wala.util/pom.xml new file mode 100644 index 000000000..9c5d38a00 --- /dev/null +++ b/com.ibm.wala.util/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + WALA + com.ibm.wala + 1.3.4-SNAPSHOT + + com.ibm.wala.util + eclipse-plugin + diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..32616b48e --- /dev/null +++ b/pom.xml @@ -0,0 +1,147 @@ + + + 4.0.0 + com.ibm.wala + WALA + 1.3.4-SNAPSHOT + pom + + + 0.17.0 + 1.3.4-SNAPSHOT + UTF-8 + b000 + scm:git:ssh://github.com:wala/WALA.git + + + + targets + com.ibm.wala-feature + com.ibm.wala.cast + com.ibm.wala.cast.java + com.ibm.wala.core + + com.ibm.wala.ide-feature + com.ibm.wala.ide + com.ibm.wala.ide.jdt + com.ibm.wala.shrike + com.ibm.wala.util + com.ibm.wala-repository + + com.ibm.wala.tests-feature + com.ibm.wala.core.tests + com.ibm.wala.core.testdata + com.ibm.wala.cast.test + com.ibm.wala.cast.java.test + com.ibm.wala.cast.java.test.data + + + + + + org.eclipse.tycho + tycho-maven-plugin + ${tycho-version} + true + + + org.eclipse.tycho + target-platform-configuration + ${tycho-version} + + + + com.ibm.wala.target + e42 + ${project-version} + + + + + + org.eclipse.tycho + tycho-compiler-plugin + ${tycho-version} + + 1.6 + 1.6 + + + + org.eclipse.tycho + tycho-source-plugin + ${tycho-version} + + + attach-source + process-classes + + plugin-source + + + + + + org.eclipse.tycho + tycho-packaging-plugin + ${tycho-version} + + 'v'yyyyMMdd-HHmm'-${build-alias}' + false + + true + + + + + org.eclipse.tycho.extras + tycho-sourceref-jgit + ${tycho-version} + + + + + org.eclipse.tycho + tycho-surefire-plugin + ${tycho-version} + + junit47 + ${tycho.test.jvmArgs} + + + + org.eclipse.tycho + tycho-p2-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-p2-director-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-p2-repository-plugin + ${tycho-version} + + false + + + + org.eclipse.tycho.extras + tycho-source-feature-plugin + ${tycho-version} + + + + diff --git a/targets/e42/e42.target b/targets/e42/e42.target new file mode 100644 index 000000000..f0093e439 --- /dev/null +++ b/targets/e42/e42.target @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/targets/e42/pom.xml b/targets/e42/pom.xml new file mode 100644 index 000000000..562fe70f0 --- /dev/null +++ b/targets/e42/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + com.ibm.wala.target + targets + 1.3.4-SNAPSHOT + + e42 + eclipse-target-definition + diff --git a/targets/pom.xml b/targets/pom.xml new file mode 100644 index 000000000..624e5e675 --- /dev/null +++ b/targets/pom.xml @@ -0,0 +1,16 @@ + + + 4.0.0 + + com.ibm.wala + WALA + 1.3.4-SNAPSHOT + + com.ibm.wala.target + targets + pom + + e42 + +