From a8aca75b2b0d381284a1ef0084bc1320d1bad351 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Fri, 21 Jun 2013 15:34:45 -0400 Subject: [PATCH] Build with CBI --- .gitignore | 3 ++ docs/org.eclipse.wst.common.api.doc/pom.xml | 27 ++++++++++ docs/org.eclipse.wst.validation.doc.isv/pom.xml | 27 ++++++++++ .../build.properties | 5 ++ docs/org.eclipse.wst.validation.infopop/pom.xml | 27 ++++++++++ .../pom.xml | 27 ++++++++++ .../org.eclipse.wst.common_core.feature/pom.xml | 60 ++++++++++++++++++++++ .../org.eclipse.wst.common_sdk.feature/pom.xml | 27 ++++++++++ .../pom.xml | 27 ++++++++++ features/org.eclipse.wst.common_ui.feature/pom.xml | 60 ++++++++++++++++++++++ plugins/org.eclipse.jem.util/pom.xml | 27 ++++++++++ plugins/org.eclipse.jst.common.ui/pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.common.core/pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.common.emf/pom.xml | 27 ++++++++++ .../pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.common.environment/pom.xml | 27 ++++++++++ .../org.eclipse.wst.common.frameworks.ui/pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.common.frameworks/pom.xml | 27 ++++++++++ .../build.properties | 4 ++ plugins/org.eclipse.wst.common.infopop/pom.xml | 27 ++++++++++ .../org.eclipse.wst.common.modulecore.ui/pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.common.modulecore/pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.common.ui/pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.common.uriresolver/pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.internet.cache/pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.validation.ui/pom.xml | 27 ++++++++++ plugins/org.eclipse.wst.validation/pom.xml | 27 ++++++++++ pom.xml | 56 ++++++++++++++++++++ 28 files changed, 782 insertions(+) create mode 100644 docs/org.eclipse.wst.common.api.doc/pom.xml create mode 100644 docs/org.eclipse.wst.validation.doc.isv/pom.xml create mode 100644 docs/org.eclipse.wst.validation.infopop/pom.xml create mode 100644 features/org.eclipse.jst.common_core.feature.patch/pom.xml create mode 100644 features/org.eclipse.wst.common_core.feature/pom.xml create mode 100644 features/org.eclipse.wst.common_sdk.feature/pom.xml create mode 100644 features/org.eclipse.wst.common_ui.feature.patch/pom.xml create mode 100644 features/org.eclipse.wst.common_ui.feature/pom.xml create mode 100644 plugins/org.eclipse.jem.util/pom.xml create mode 100644 plugins/org.eclipse.jst.common.ui/pom.xml create mode 100644 plugins/org.eclipse.wst.common.core/pom.xml create mode 100644 plugins/org.eclipse.wst.common.emf/pom.xml create mode 100644 plugins/org.eclipse.wst.common.emfworkbench.integration/pom.xml create mode 100644 plugins/org.eclipse.wst.common.environment/pom.xml create mode 100644 plugins/org.eclipse.wst.common.frameworks.ui/pom.xml create mode 100644 plugins/org.eclipse.wst.common.frameworks/pom.xml create mode 100644 plugins/org.eclipse.wst.common.infopop/pom.xml create mode 100644 plugins/org.eclipse.wst.common.modulecore.ui/pom.xml create mode 100644 plugins/org.eclipse.wst.common.modulecore/pom.xml create mode 100644 plugins/org.eclipse.wst.common.ui/pom.xml create mode 100644 plugins/org.eclipse.wst.common.uriresolver/pom.xml create mode 100644 plugins/org.eclipse.wst.internet.cache/pom.xml create mode 100644 plugins/org.eclipse.wst.validation.ui/pom.xml create mode 100644 plugins/org.eclipse.wst.validation/pom.xml create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore index 749e075..1e8d462 100755 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,6 @@ temp.folder src.zip .fbwarnings javaCompiler...args + +# maven +target/ diff --git a/docs/org.eclipse.wst.common.api.doc/pom.xml b/docs/org.eclipse.wst.common.api.doc/pom.xml new file mode 100644 index 0000000..54ecabd --- /dev/null +++ b/docs/org.eclipse.wst.common.api.doc/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.api.doc + 1.0.1-SNAPSHOT + eclipse-plugin + diff --git a/docs/org.eclipse.wst.validation.doc.isv/pom.xml b/docs/org.eclipse.wst.validation.doc.isv/pom.xml new file mode 100644 index 0000000..ad2a73c --- /dev/null +++ b/docs/org.eclipse.wst.validation.doc.isv/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.validation.doc.isv + 1.2.300-SNAPSHOT + eclipse-plugin + diff --git a/docs/org.eclipse.wst.validation.infopop/build.properties b/docs/org.eclipse.wst.validation.infopop/build.properties index ea3d3bb..2c19aeb 100644 --- a/docs/org.eclipse.wst.validation.infopop/build.properties +++ b/docs/org.eclipse.wst.validation.infopop/build.properties @@ -4,4 +4,9 @@ bin.includes = META-INF/,\ ValidationProjPrefs_HelpContexts.xml,\ plugin.properties,\ about.html +src.includes = plugin.xml,\ + plugin.properties,\ + about.html,\ + ValidationPrefs_HelpContexts.xml,\ + ValidationProjPrefs_HelpContexts.xml generateSourceBundle=false diff --git a/docs/org.eclipse.wst.validation.infopop/pom.xml b/docs/org.eclipse.wst.validation.infopop/pom.xml new file mode 100644 index 0000000..aeb1649 --- /dev/null +++ b/docs/org.eclipse.wst.validation.infopop/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.validation.infopop + 1.0.300-SNAPSHOT + eclipse-plugin + diff --git a/features/org.eclipse.jst.common_core.feature.patch/pom.xml b/features/org.eclipse.jst.common_core.feature.patch/pom.xml new file mode 100644 index 0000000..98ebf6e --- /dev/null +++ b/features/org.eclipse.jst.common_core.feature.patch/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.jst.common_core.feature.patch + 3.0.2-SNAPSHOT + eclipse-feature + diff --git a/features/org.eclipse.wst.common_core.feature/pom.xml b/features/org.eclipse.wst.common_core.feature/pom.xml new file mode 100644 index 0000000..597fe15 --- /dev/null +++ b/features/org.eclipse.wst.common_core.feature/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common_core.feature + 3.5.0-SNAPSHOT + eclipse-feature + + + + + org.eclipse.tycho.extras + tycho-source-feature-plugin + ${tycho-extras.version} + + + source-feature + package + + source-feature + + + + + + org.eclipse.tycho + tycho-p2-plugin + ${tycho.version} + + + attach-p2-metadata + package + + p2-metadata + + + + + + + diff --git a/features/org.eclipse.wst.common_sdk.feature/pom.xml b/features/org.eclipse.wst.common_sdk.feature/pom.xml new file mode 100644 index 0000000..d09629b --- /dev/null +++ b/features/org.eclipse.wst.common_sdk.feature/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common_sdk.feature + 3.5.0-SNAPSHOT + eclipse-feature + diff --git a/features/org.eclipse.wst.common_ui.feature.patch/pom.xml b/features/org.eclipse.wst.common_ui.feature.patch/pom.xml new file mode 100644 index 0000000..c6735be --- /dev/null +++ b/features/org.eclipse.wst.common_ui.feature.patch/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common_ui.feature.patch + 3.0.1-SNAPSHOT + eclipse-feature + diff --git a/features/org.eclipse.wst.common_ui.feature/pom.xml b/features/org.eclipse.wst.common_ui.feature/pom.xml new file mode 100644 index 0000000..a3f8c81 --- /dev/null +++ b/features/org.eclipse.wst.common_ui.feature/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common_ui.feature + 3.5.0-SNAPSHOT + eclipse-feature + + + + + org.eclipse.tycho.extras + tycho-source-feature-plugin + ${tycho-extras.version} + + + source-feature + package + + source-feature + + + + + + org.eclipse.tycho + tycho-p2-plugin + ${tycho.version} + + + attach-p2-metadata + package + + p2-metadata + + + + + + + diff --git a/plugins/org.eclipse.jem.util/pom.xml b/plugins/org.eclipse.jem.util/pom.xml new file mode 100644 index 0000000..703e2f4 --- /dev/null +++ b/plugins/org.eclipse.jem.util/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.jem.util + 2.1.100-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.jst.common.ui/pom.xml b/plugins/org.eclipse.jst.common.ui/pom.xml new file mode 100644 index 0000000..39e4aff --- /dev/null +++ b/plugins/org.eclipse.jst.common.ui/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.jst.common.ui + 1.0.201-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.core/pom.xml b/plugins/org.eclipse.wst.common.core/pom.xml new file mode 100644 index 0000000..e112230 --- /dev/null +++ b/plugins/org.eclipse.wst.common.core/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.core + 1.2.0-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.emf/pom.xml b/plugins/org.eclipse.wst.common.emf/pom.xml new file mode 100644 index 0000000..3bfc32e --- /dev/null +++ b/plugins/org.eclipse.wst.common.emf/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.emf + 1.2.200-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.emfworkbench.integration/pom.xml b/plugins/org.eclipse.wst.common.emfworkbench.integration/pom.xml new file mode 100644 index 0000000..7847275 --- /dev/null +++ b/plugins/org.eclipse.wst.common.emfworkbench.integration/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.emfworkbench.integration + 1.2.101-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.environment/pom.xml b/plugins/org.eclipse.wst.common.environment/pom.xml new file mode 100644 index 0000000..0214204 --- /dev/null +++ b/plugins/org.eclipse.wst.common.environment/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.environment + 1.0.400-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.frameworks.ui/pom.xml b/plugins/org.eclipse.wst.common.frameworks.ui/pom.xml new file mode 100644 index 0000000..32869fa --- /dev/null +++ b/plugins/org.eclipse.wst.common.frameworks.ui/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.frameworks.ui + 1.2.201-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.frameworks/pom.xml b/plugins/org.eclipse.wst.common.frameworks/pom.xml new file mode 100644 index 0000000..f3070eb --- /dev/null +++ b/plugins/org.eclipse.wst.common.frameworks/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.frameworks + 1.2.200-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.infopop/build.properties b/plugins/org.eclipse.wst.common.infopop/build.properties index c1d3dbf..f062f30 100644 --- a/plugins/org.eclipse.wst.common.infopop/build.properties +++ b/plugins/org.eclipse.wst.common.infopop/build.properties @@ -3,3 +3,7 @@ bin.includes = plugin.xml,\ SnippetsContexts.xml,\ META-INF/,\ plugin.properties +src.includes = plugin.xml,\ + plugin.properties.xml,\ + about.html,\ + SnippetsContexts.xml diff --git a/plugins/org.eclipse.wst.common.infopop/pom.xml b/plugins/org.eclipse.wst.common.infopop/pom.xml new file mode 100644 index 0000000..70d7a38 --- /dev/null +++ b/plugins/org.eclipse.wst.common.infopop/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.infopop + 1.0.300-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.modulecore.ui/pom.xml b/plugins/org.eclipse.wst.common.modulecore.ui/pom.xml new file mode 100644 index 0000000..eb23651 --- /dev/null +++ b/plugins/org.eclipse.wst.common.modulecore.ui/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.modulecore.ui + 1.0.201-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.modulecore/pom.xml b/plugins/org.eclipse.wst.common.modulecore/pom.xml new file mode 100644 index 0000000..6448bdc --- /dev/null +++ b/plugins/org.eclipse.wst.common.modulecore/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.modulecore + 1.2.300-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.ui/pom.xml b/plugins/org.eclipse.wst.common.ui/pom.xml new file mode 100644 index 0000000..d474985 --- /dev/null +++ b/plugins/org.eclipse.wst.common.ui/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.ui + 1.1.500-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.common.uriresolver/pom.xml b/plugins/org.eclipse.wst.common.uriresolver/pom.xml new file mode 100644 index 0000000..78005f9 --- /dev/null +++ b/plugins/org.eclipse.wst.common.uriresolver/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.common.uriresolver + 1.2.100-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.internet.cache/pom.xml b/plugins/org.eclipse.wst.internet.cache/pom.xml new file mode 100644 index 0000000..173eb94 --- /dev/null +++ b/plugins/org.eclipse.wst.internet.cache/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.internet.cache + 1.0.700-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.validation.ui/pom.xml b/plugins/org.eclipse.wst.validation.ui/pom.xml new file mode 100644 index 0000000..fbe3153 --- /dev/null +++ b/plugins/org.eclipse.wst.validation.ui/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.validation.ui + 1.2.400-SNAPSHOT + eclipse-plugin + diff --git a/plugins/org.eclipse.wst.validation/pom.xml b/plugins/org.eclipse.wst.validation/pom.xml new file mode 100644 index 0000000..cdd1c1d --- /dev/null +++ b/plugins/org.eclipse.wst.validation/pom.xml @@ -0,0 +1,27 @@ + + + + + 4.0.0 + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + ../../ + + + org.eclipse.webtools.common + org.eclipse.wst.validation + 1.2.501-SNAPSHOT + eclipse-plugin + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..31b93a2 --- /dev/null +++ b/pom.xml @@ -0,0 +1,56 @@ + + + + + 4.0.0 + + + org.eclipse + wtp-parent + 3.5.0-SNAPSHOT + ../wtp-parent + + + org.eclipse.webtools.common + org.eclipse.webtools.common + 3.5.0-SNAPSHOT + pom + + + docs/org.eclipse.wst.common.api.doc + docs/org.eclipse.wst.validation.doc.isv + docs/org.eclipse.wst.validation.infopop + + features/org.eclipse.wst.common_core.feature + features/org.eclipse.wst.common_sdk.feature + features/org.eclipse.wst.common_ui.feature + features/org.eclipse.wst.common_ui.feature.patch + + plugins/org.eclipse.jem.util + plugins/org.eclipse.jst.common.ui + plugins/org.eclipse.wst.common.core + plugins/org.eclipse.wst.common.emf + plugins/org.eclipse.wst.common.emfworkbench.integration + plugins/org.eclipse.wst.common.environment + plugins/org.eclipse.wst.common.frameworks + plugins/org.eclipse.wst.common.frameworks.ui + plugins/org.eclipse.wst.common.infopop + plugins/org.eclipse.wst.common.modulecore + plugins/org.eclipse.wst.common.modulecore.ui + plugins/org.eclipse.wst.common.ui + plugins/org.eclipse.wst.common.uriresolver + plugins/org.eclipse.wst.internet.cache + plugins/org.eclipse.wst.validation + plugins/org.eclipse.wst.validation.ui + + -- 1.8.3.1