Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2014-01-15 18:31:45 +0000
committerMickael Istria2014-01-16 16:54:56 +0000
commit4f73ccf2e33dd85457081780d4acb34f01377f5b (patch)
tree0a157e34892cd6eab2b6fcb5427b89d9e629a359
parentab537e4d404d77ad4da7bbf893fa79ce5f9ab266 (diff)
downloadwebtools.jsdt-4f73ccf2e33dd85457081780d4acb34f01377f5b.tar.gz
webtools.jsdt-4f73ccf2e33dd85457081780d4acb34f01377f5b.tar.xz
webtools.jsdt-4f73ccf2e33dd85457081780d4acb34f01377f5b.zip
[425796] Introduce intermediary pom files
For more modularity and easier factorization Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=425796 Signed-off-by: Mickael Istria <mistria@redhat.com> Change-Id: Ia95140c7ae4e4d18869541c9359768fda2a5329f
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.core/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.crossfire/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.rhino.debugger/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.rhino/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.transport/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.ui/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.manipulation/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/pom.xml8
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/pom.xml8
-rw-r--r--bundles/pom.xml40
-rw-r--r--development/org.eclipse.wst.jsdt.astview/pom.xml8
-rw-r--r--development/org.eclipse.wst.jsdt.debug.chrome/pom.xml8
-rw-r--r--development/org.eclipse.wst.jsdt.debug.ie/pom.xml8
-rw-r--r--development/org.eclipse.wst.jsdt.debug.jsd2/pom.xml8
-rw-r--r--development/org.eclipse.wst.jsdt.debug.node/pom.xml8
-rw-r--r--development/org.eclipse.wst.jsdt.debug.opera/pom.xml8
-rw-r--r--development/org.eclipse.wst.jsdt.jseview/pom.xml8
-rw-r--r--development/org.eclipse.wst.jsdt.unittests/pom.xml8
-rw-r--r--development/pom.xml33
-rw-r--r--docs/org.eclipse.wst.jsdt.doc/pom.xml8
-rw-r--r--docs/pom.xml28
-rw-r--r--features/org.eclipse.wst.jsdt.feature/pom.xml8
-rw-r--r--features/org.eclipse.wst.jsdt_sdk.feature/pom.xml8
-rw-r--r--features/org.eclipse.wst.jsdt_tests.feature/pom.xml8
-rw-r--r--features/pom.xml30
-rw-r--r--pom.xml39
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.compiler/pom.xml9
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.model/pom.xml9
-rw-r--r--tests/org.eclipse.wst.jsdt.debug.core.tests/pom.xml9
-rw-r--r--tests/org.eclipse.wst.jsdt.debug.rhino.tests/pom.xml9
-rw-r--r--tests/org.eclipse.wst.jsdt.ui.tests/pom.xml9
-rw-r--r--tests/pom.xml32
35 files changed, 284 insertions, 155 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.core/pom.xml b/bundles/org.eclipse.wst.jsdt.core/pom.xml
index 949614e82..a23a68b5e 100644
--- a/bundles/org.eclipse.wst.jsdt.core/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.core/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.core</artifactId>
<version>1.3.100-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.debug.core/pom.xml b/bundles/org.eclipse.wst.jsdt.debug.core/pom.xml
index 384177d2c..19fddb238 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.core/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.debug.core/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.core</artifactId>
<version>3.1.100-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.debug.crossfire/pom.xml b/bundles/org.eclipse.wst.jsdt.debug.crossfire/pom.xml
index fe6aff2b3..078ed8a88 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.crossfire/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.debug.crossfire/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.crossfire</artifactId>
<version>1.0.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.debug.rhino.debugger/pom.xml b/bundles/org.eclipse.wst.jsdt.debug.rhino.debugger/pom.xml
index 115a61911..40c31b0c3 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.rhino.debugger/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.debug.rhino.debugger/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.rhino.debugger</artifactId>
<version>1.0.400-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml b/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml
index 07caa34de..890f07f27 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.rhino.ui</artifactId>
<version>1.0.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.debug.rhino/pom.xml b/bundles/org.eclipse.wst.jsdt.debug.rhino/pom.xml
index b65ca0be6..737619935 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.rhino/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.debug.rhino/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.rhino</artifactId>
<version>1.0.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.debug.transport/pom.xml b/bundles/org.eclipse.wst.jsdt.debug.transport/pom.xml
index 9ed965fa2..5c464f01f 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.transport/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.debug.transport/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.transport</artifactId>
<version>1.0.200-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.debug.ui/pom.xml b/bundles/org.eclipse.wst.jsdt.debug.ui/pom.xml
index 90b13b69c..1a0eea436 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.ui/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.debug.ui/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.ui</artifactId>
<version>1.0.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.manipulation/pom.xml b/bundles/org.eclipse.wst.jsdt.manipulation/pom.xml
index 7fbf953ba..15ee628ac 100644
--- a/bundles/org.eclipse.wst.jsdt.manipulation/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.manipulation/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.manipulation</artifactId>
<version>1.0.400-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/pom.xml b/bundles/org.eclipse.wst.jsdt.support.firefox/pom.xml
index 7e66a6a10..a6c4fd03c 100644
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.support.firefox/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.support.firefox</artifactId>
<version>1.0.500-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/pom.xml b/bundles/org.eclipse.wst.jsdt.support.ie/pom.xml
index 82fbd699a..b80ad3e20 100644
--- a/bundles/org.eclipse.wst.jsdt.support.ie/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.support.ie/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.support.ie</artifactId>
<version>1.0.500-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/org.eclipse.wst.jsdt.ui/pom.xml b/bundles/org.eclipse.wst.jsdt.ui/pom.xml
index e537d46a7..a9e4ad020 100644
--- a/bundles/org.eclipse.wst.jsdt.ui/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.ui/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>bundles</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.bundles</groupId>
<artifactId>org.eclipse.wst.jsdt.ui</artifactId>
<version>1.1.500-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/bundles/pom.xml b/bundles/pom.xml
new file mode 100644
index 000000000..adf2532fd
--- /dev/null
+++ b/bundles/pom.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2014 Red Hat Inc.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Mickael Istria (Red Hat Inc.) - initial implementation
+-->
+
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>jsdt-parent</artifactId>
+ <version>3.6.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>bundles</artifactId>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>org.eclipse.wst.jsdt.core</module>
+ <module>org.eclipse.wst.jsdt.manipulation</module>
+ <module>org.eclipse.wst.jsdt.support.firefox</module>
+ <module>org.eclipse.wst.jsdt.support.ie</module>
+ <module>org.eclipse.wst.jsdt.ui</module>
+
+ <module>org.eclipse.wst.jsdt.debug.core</module>
+ <module>org.eclipse.wst.jsdt.debug.crossfire</module>
+ <module>org.eclipse.wst.jsdt.debug.rhino</module>
+ <module>org.eclipse.wst.jsdt.debug.rhino.debugger</module>
+ <module>org.eclipse.wst.jsdt.debug.rhino.ui</module>
+ <module>org.eclipse.wst.jsdt.debug.transport</module>
+ <module>org.eclipse.wst.jsdt.debug.ui</module>
+ </modules>
+</project>
diff --git a/development/org.eclipse.wst.jsdt.astview/pom.xml b/development/org.eclipse.wst.jsdt.astview/pom.xml
index 13a240e3c..e9faedb57 100644
--- a/development/org.eclipse.wst.jsdt.astview/pom.xml
+++ b/development/org.eclipse.wst.jsdt.astview/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>development</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.development</groupId>
<artifactId>org.eclipse.wst.jsdt.astview</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/development/org.eclipse.wst.jsdt.debug.chrome/pom.xml b/development/org.eclipse.wst.jsdt.debug.chrome/pom.xml
index a0ac6664e..93e0b8198 100644
--- a/development/org.eclipse.wst.jsdt.debug.chrome/pom.xml
+++ b/development/org.eclipse.wst.jsdt.debug.chrome/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>development</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.development</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.chrome</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/development/org.eclipse.wst.jsdt.debug.ie/pom.xml b/development/org.eclipse.wst.jsdt.debug.ie/pom.xml
index e27ae90c9..ca5385e40 100644
--- a/development/org.eclipse.wst.jsdt.debug.ie/pom.xml
+++ b/development/org.eclipse.wst.jsdt.debug.ie/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>development</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.development</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.ie</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/development/org.eclipse.wst.jsdt.debug.jsd2/pom.xml b/development/org.eclipse.wst.jsdt.debug.jsd2/pom.xml
index 24a8a60ec..3a89de6b0 100644
--- a/development/org.eclipse.wst.jsdt.debug.jsd2/pom.xml
+++ b/development/org.eclipse.wst.jsdt.debug.jsd2/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>development</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.development</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.jsd2</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/development/org.eclipse.wst.jsdt.debug.node/pom.xml b/development/org.eclipse.wst.jsdt.debug.node/pom.xml
index d28af953f..3a40e6190 100644
--- a/development/org.eclipse.wst.jsdt.debug.node/pom.xml
+++ b/development/org.eclipse.wst.jsdt.debug.node/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>development</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.development</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.node</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/development/org.eclipse.wst.jsdt.debug.opera/pom.xml b/development/org.eclipse.wst.jsdt.debug.opera/pom.xml
index 079da1f3a..07008c63d 100644
--- a/development/org.eclipse.wst.jsdt.debug.opera/pom.xml
+++ b/development/org.eclipse.wst.jsdt.debug.opera/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>development</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.development</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.opera</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/development/org.eclipse.wst.jsdt.jseview/pom.xml b/development/org.eclipse.wst.jsdt.jseview/pom.xml
index be7844370..cc868fcd6 100644
--- a/development/org.eclipse.wst.jsdt.jseview/pom.xml
+++ b/development/org.eclipse.wst.jsdt.jseview/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>development</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.development</groupId>
<artifactId>org.eclipse.wst.jsdt.jseview</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/development/org.eclipse.wst.jsdt.unittests/pom.xml b/development/org.eclipse.wst.jsdt.unittests/pom.xml
index 4948b4b6d..297b307dd 100644
--- a/development/org.eclipse.wst.jsdt.unittests/pom.xml
+++ b/development/org.eclipse.wst.jsdt.unittests/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>development</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.development</groupId>
<artifactId>org.eclipse.wst.jsdt.unittests</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/development/pom.xml b/development/pom.xml
new file mode 100644
index 000000000..715f869a3
--- /dev/null
+++ b/development/pom.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2014 Red Hat Inc.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Mickael Istria (Red Hat Inc.) - initial implementation
+-->
+
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>jsdt-parent</artifactId>
+ <version>3.6.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>development</artifactId>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>org.eclipse.wst.jsdt.astview</module>
+ <module>org.eclipse.wst.jsdt.jseview</module>
+ <module>org.eclipse.wst.jsdt.debug.chrome</module>
+ <module>org.eclipse.wst.jsdt.debug.jsd2</module>
+ <module>org.eclipse.wst.jsdt.debug.node</module>
+ <module>org.eclipse.wst.jsdt.debug.opera</module>
+ </modules>
+</project>
diff --git a/docs/org.eclipse.wst.jsdt.doc/pom.xml b/docs/org.eclipse.wst.jsdt.doc/pom.xml
index f63a31848..ef6d5e16d 100644
--- a/docs/org.eclipse.wst.jsdt.doc/pom.xml
+++ b/docs/org.eclipse.wst.jsdt.doc/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>docs</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.docs</groupId>
<artifactId>org.eclipse.wst.jsdt.doc</artifactId>
<version>1.4.100-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
diff --git a/docs/pom.xml b/docs/pom.xml
new file mode 100644
index 000000000..756e70e42
--- /dev/null
+++ b/docs/pom.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2014 Red Hat Inc.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Mickael Istria (Red Hat Inc.) - initial implementation
+-->
+
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>jsdt-parent</artifactId>
+ <version>3.6.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>docs</artifactId>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>org.eclipse.wst.jsdt.doc</module>
+ </modules>
+</project>
diff --git a/features/org.eclipse.wst.jsdt.feature/pom.xml b/features/org.eclipse.wst.jsdt.feature/pom.xml
index 4f57c4697..f73c84e9c 100644
--- a/features/org.eclipse.wst.jsdt.feature/pom.xml
+++ b/features/org.eclipse.wst.jsdt.feature/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>features</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.features</groupId>
<artifactId>org.eclipse.wst.jsdt.feature</artifactId>
<version>1.6.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
diff --git a/features/org.eclipse.wst.jsdt_sdk.feature/pom.xml b/features/org.eclipse.wst.jsdt_sdk.feature/pom.xml
index a36e91fea..654e6961a 100644
--- a/features/org.eclipse.wst.jsdt_sdk.feature/pom.xml
+++ b/features/org.eclipse.wst.jsdt_sdk.feature/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>features</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.features</groupId>
<artifactId>org.eclipse.wst.jsdt_sdk.feature</artifactId>
<version>1.6.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
diff --git a/features/org.eclipse.wst.jsdt_tests.feature/pom.xml b/features/org.eclipse.wst.jsdt_tests.feature/pom.xml
index a1d76c15f..d3b2e6db5 100644
--- a/features/org.eclipse.wst.jsdt_tests.feature/pom.xml
+++ b/features/org.eclipse.wst.jsdt_tests.feature/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -15,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>features</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.features</groupId>
<artifactId>org.eclipse.wst.jsdt_tests.feature</artifactId>
<version>1.6.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
diff --git a/features/pom.xml b/features/pom.xml
new file mode 100644
index 000000000..9a70c427b
--- /dev/null
+++ b/features/pom.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2014 Red Hat Inc.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Mickael Istria (Red Hat Inc.) - initial implementation
+-->
+
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>jsdt-parent</artifactId>
+ <version>3.6.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>features</artifactId>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>org.eclipse.wst.jsdt_tests.feature</module>
+ <module>org.eclipse.wst.jsdt.feature</module>
+ <module>org.eclipse.wst.jsdt_sdk.feature</module>
+ </modules>
+</project>
diff --git a/pom.xml b/pom.xml
index 115c0ced6..57a527ec8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,40 +27,11 @@
<packaging>pom</packaging>
<modules>
- <module>development/org.eclipse.wst.jsdt.astview</module>
- <module>development/org.eclipse.wst.jsdt.jseview</module>
-
- <module>docs/org.eclipse.wst.jsdt.doc</module>
-
- <module>features/org.eclipse.wst.jsdt.feature</module>
- <module>features/org.eclipse.wst.jsdt_sdk.feature</module>
-
- <module>bundles/org.eclipse.wst.jsdt.core</module>
- <module>bundles/org.eclipse.wst.jsdt.manipulation</module>
- <module>bundles/org.eclipse.wst.jsdt.support.firefox</module>
- <module>bundles/org.eclipse.wst.jsdt.support.ie</module>
- <module>bundles/org.eclipse.wst.jsdt.ui</module>
-
- <module>bundles/org.eclipse.wst.jsdt.debug.core</module>
- <module>bundles/org.eclipse.wst.jsdt.debug.crossfire</module>
- <module>bundles/org.eclipse.wst.jsdt.debug.rhino</module>
- <module>bundles/org.eclipse.wst.jsdt.debug.rhino.debugger</module>
- <module>bundles/org.eclipse.wst.jsdt.debug.rhino.ui</module>
- <module>bundles/org.eclipse.wst.jsdt.debug.transport</module>
- <module>bundles/org.eclipse.wst.jsdt.debug.ui</module>
-
- <module>development/org.eclipse.wst.jsdt.debug.chrome</module>
- <module>development/org.eclipse.wst.jsdt.debug.jsd2</module>
- <module>development/org.eclipse.wst.jsdt.debug.node</module>
- <module>development/org.eclipse.wst.jsdt.debug.opera</module>
-
- <module>features/org.eclipse.wst.jsdt_tests.feature</module>
-
- <module>tests/org.eclipse.wst.jsdt.core.tests.compiler</module>
- <module>tests/org.eclipse.wst.jsdt.core.tests.model</module>
- <module>tests/org.eclipse.wst.jsdt.debug.core.tests</module>
- <module>tests/org.eclipse.wst.jsdt.debug.rhino.tests</module>
- <module>tests/org.eclipse.wst.jsdt.ui.tests</module>
+ <module>bundles</module>
+ <module>development</module>
+ <module>docs</module>
+ <module>tests</module>
+ <module>features</module>
</modules>
<profiles>
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.compiler/pom.xml b/tests/org.eclipse.wst.jsdt.core.tests.compiler/pom.xml
index bb17bf60a..225df41e6 100644
--- a/tests/org.eclipse.wst.jsdt.core.tests.compiler/pom.xml
+++ b/tests/org.eclipse.wst.jsdt.core.tests.compiler/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
- Mickael Istria (Red Hat Inc.) - 419113 Enable tests with Tycho
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -16,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>tests</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.tests</groupId>
<artifactId>org.eclipse.wst.jsdt.core.tests.compiler</artifactId>
<version>1.0.700-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/pom.xml b/tests/org.eclipse.wst.jsdt.core.tests.model/pom.xml
index eeecb9418..8566d2745 100644
--- a/tests/org.eclipse.wst.jsdt.core.tests.model/pom.xml
+++ b/tests/org.eclipse.wst.jsdt.core.tests.model/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
- Mickael Istria (Red Hat Inc.) - 419113 Enable tests with Tycho
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -16,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>tests</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.tests</groupId>
<artifactId>org.eclipse.wst.jsdt.core.tests.model</artifactId>
<version>1.0.600-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
diff --git a/tests/org.eclipse.wst.jsdt.debug.core.tests/pom.xml b/tests/org.eclipse.wst.jsdt.debug.core.tests/pom.xml
index b5e1ad479..336b5d0af 100644
--- a/tests/org.eclipse.wst.jsdt.debug.core.tests/pom.xml
+++ b/tests/org.eclipse.wst.jsdt.debug.core.tests/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
- Mickael Istria (Red Hat Inc.) - 419113 Enable tests with Tycho
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -16,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>tests</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.tests</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.core.tests</artifactId>
<version>1.0.300-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
diff --git a/tests/org.eclipse.wst.jsdt.debug.rhino.tests/pom.xml b/tests/org.eclipse.wst.jsdt.debug.rhino.tests/pom.xml
index ebc9a494b..0152be590 100644
--- a/tests/org.eclipse.wst.jsdt.debug.rhino.tests/pom.xml
+++ b/tests/org.eclipse.wst.jsdt.debug.rhino.tests/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
- Mickael Istria (Red Hat Inc.) - 419113 Enable tests with Tycho
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -16,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>tests</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.tests</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.rhino.tests</artifactId>
<version>1.0.400-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
diff --git a/tests/org.eclipse.wst.jsdt.ui.tests/pom.xml b/tests/org.eclipse.wst.jsdt.ui.tests/pom.xml
index 64a02a2f2..9d652f0eb 100644
--- a/tests/org.eclipse.wst.jsdt.ui.tests/pom.xml
+++ b/tests/org.eclipse.wst.jsdt.ui.tests/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
Contributors:
Thanh Ha (Eclipse Foundation) - initial implementation
- Mickael Istria (Red Hat Inc.) - 419113 Enable tests with Tycho
+ Mickael Istria (Red Hat Inc.) - 425796 intermediary pom for factorization
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
@@ -16,12 +16,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.webtools.jsdt</groupId>
- <artifactId>jsdt-parent</artifactId>
+ <artifactId>tests</artifactId>
<version>3.6.0-SNAPSHOT</version>
- <relativePath>../../</relativePath>
</parent>
- <groupId>org.eclipse.webtools.jsdt</groupId>
+ <groupId>org.eclipse.webtools.jsdt.tests</groupId>
<artifactId>org.eclipse.wst.jsdt.ui.tests</artifactId>
<version>1.1.300-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
diff --git a/tests/pom.xml b/tests/pom.xml
new file mode 100644
index 000000000..90c1322f6
--- /dev/null
+++ b/tests/pom.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2014 Red Hat Inc.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Mickael Istria (Red Hat Inc.) - initial implementation
+-->
+
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>jsdt-parent</artifactId>
+ <version>3.6.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>tests</artifactId>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>org.eclipse.wst.jsdt.core.tests.compiler</module>
+ <module>org.eclipse.wst.jsdt.core.tests.model</module>
+ <module>org.eclipse.wst.jsdt.debug.core.tests</module>
+ <module>org.eclipse.wst.jsdt.debug.rhino.tests</module>
+ <module>org.eclipse.wst.jsdt.ui.tests</module>
+ </modules>
+</project>

Back to the top