Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jpa
diff options
context:
space:
mode:
authorTran Le2013-08-22 22:18:21 +0000
committerTran Le2013-08-22 22:18:21 +0000
commit7d75ff7d2fc4dbb992748905432b4679965d491b (patch)
tree64b326ae59a8c0836405f0a527ec98046383379b /jpa
parent73dec9e400c64b2d1ca7376512367abd3136f2ea (diff)
downloadwebtools.dali-7d75ff7d2fc4dbb992748905432b4679965d491b.tar.gz
webtools.dali-7d75ff7d2fc4dbb992748905432b4679965d491b.tar.xz
webtools.dali-7d75ff7d2fc4dbb992748905432b4679965d491b.zip
414702 - [CBI] webtools.dali patch for building with Maven/Tycho
Diffstat (limited to 'jpa')
-rw-r--r--jpa/features/org.eclipse.jpt.jpa.eclipselink.feature/pom.xml65
-rw-r--r--jpa/features/org.eclipse.jpt.jpa.eclipselink.tests.feature/pom.xml27
-rw-r--r--jpa/features/org.eclipse.jpt.jpa.eclipselink_sdk.feature/pom.xml27
-rw-r--r--jpa/features/org.eclipse.jpt.jpa.feature/pom.xml70
-rw-r--r--jpa/features/org.eclipse.jpt.jpa.tests.feature/pom.xml27
-rw-r--r--jpa/features/org.eclipse.jpt.jpa_sdk.feature/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.doc.isv/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.doc.user/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.annotate/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.branding/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.db.ui/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.db/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.branding/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core.ddlgen/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.gen/pom.xml27
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.ui/pom.xml27
-rw-r--r--jpa/tests/org.eclipse.jpt.jpa.core.tests.extension.resource/pom.xml27
-rw-r--r--jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml27
-rw-r--r--jpa/tests/org.eclipse.jpt.jpa.db.tests/pom.xml27
-rw-r--r--jpa/tests/org.eclipse.jpt.jpa.eclipselink.core.tests/pom.xml27
-rw-r--r--jpa/tests/org.eclipse.jpt.jpa.gen.tests/pom.xml27
-rw-r--r--jpa/tests/org.eclipse.jpt.jpa.ui.tests/pom.xml27
25 files changed, 756 insertions, 0 deletions
diff --git a/jpa/features/org.eclipse.jpt.jpa.eclipselink.feature/pom.xml b/jpa/features/org.eclipse.jpt.jpa.eclipselink.feature/pom.xml
new file mode 100644
index 0000000000..59e7836c9f
--- /dev/null
+++ b/jpa/features/org.eclipse.jpt.jpa.eclipselink.feature/pom.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.eclipselink.feature</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <version>${tycho-extras.version}</version>
+ <executions>
+ <execution>
+ <id>source-feature</id>
+ <phase>package</phase>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ <configuration>
+ <excludes>
+ <plugin id="org.eclipse.jpt.jpa.eclipselink.branding"/>
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>attach-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/jpa/features/org.eclipse.jpt.jpa.eclipselink.tests.feature/pom.xml b/jpa/features/org.eclipse.jpt.jpa.eclipselink.tests.feature/pom.xml
new file mode 100644
index 0000000000..e1320fefe1
--- /dev/null
+++ b/jpa/features/org.eclipse.jpt.jpa.eclipselink.tests.feature/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.eclipselink.tests.feature</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
diff --git a/jpa/features/org.eclipse.jpt.jpa.eclipselink_sdk.feature/pom.xml b/jpa/features/org.eclipse.jpt.jpa.eclipselink_sdk.feature/pom.xml
new file mode 100644
index 0000000000..d53719fcd8
--- /dev/null
+++ b/jpa/features/org.eclipse.jpt.jpa.eclipselink_sdk.feature/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.eclipselink_sdk.feature</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
diff --git a/jpa/features/org.eclipse.jpt.jpa.feature/pom.xml b/jpa/features/org.eclipse.jpt.jpa.feature/pom.xml
new file mode 100644
index 0000000000..19116c0761
--- /dev/null
+++ b/jpa/features/org.eclipse.jpt.jpa.feature/pom.xml
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.feature</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <version>${tycho-extras.version}</version>
+ <executions>
+ <execution>
+ <id>source-feature</id>
+ <phase>package</phase>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ <configuration>
+ <excludes>
+ <plugin id="javax.persistance"/>
+ <plugin id="org.apache.commons.collections"/>
+ <plugin id="org.apache.commons.lang"/>
+ <plugin id="org.apache.velocity"/>
+ <plugin id="org.eclipse.jpt.jpa.branding"/>
+ <plugin id="org.jdom"/>
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>attach-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/jpa/features/org.eclipse.jpt.jpa.tests.feature/pom.xml b/jpa/features/org.eclipse.jpt.jpa.tests.feature/pom.xml
new file mode 100644
index 0000000000..a55582d386
--- /dev/null
+++ b/jpa/features/org.eclipse.jpt.jpa.tests.feature/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.tests.feature</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
diff --git a/jpa/features/org.eclipse.jpt.jpa_sdk.feature/pom.xml b/jpa/features/org.eclipse.jpt.jpa_sdk.feature/pom.xml
new file mode 100644
index 0000000000..cea5921052
--- /dev/null
+++ b/jpa/features/org.eclipse.jpt.jpa_sdk.feature/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa_sdk.feature</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.doc.isv/pom.xml b/jpa/plugins/org.eclipse.jpt.doc.isv/pom.xml
new file mode 100644
index 0000000000..c5ccec823a
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.doc.isv/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.doc.isv</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.doc.user/pom.xml b/jpa/plugins/org.eclipse.jpt.doc.user/pom.xml
new file mode 100644
index 0000000000..01454e8b8d
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.doc.user/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.doc.user</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.annotate/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.annotate/pom.xml
new file mode 100644
index 0000000000..06f3465756
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.annotate/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.annotate</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.branding/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.branding/pom.xml
new file mode 100644
index 0000000000..572dd3da74
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.branding/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.branding</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.core/pom.xml
new file mode 100644
index 0000000000..97dcccd509
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.core</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.db.ui/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.db.ui/pom.xml
new file mode 100644
index 0000000000..159ca28855
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.db.ui/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.db.ui</artifactId>
+ <version>2.1.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.db/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.db/pom.xml
new file mode 100644
index 0000000000..928e0bf20c
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.db/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.db</artifactId>
+ <version>2.2.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.branding/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.branding/pom.xml
new file mode 100644
index 0000000000..a0ffd0fb69
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.branding/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.eclipselink.branding</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core.ddlgen/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core.ddlgen/pom.xml
new file mode 100644
index 0000000000..d5c8b725c8
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core.ddlgen/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.eclipselink.core.ddlgen</artifactId>
+ <version>2.2.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/pom.xml
new file mode 100644
index 0000000000..72b3ebb093
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.eclipselink.core</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/pom.xml
new file mode 100644
index 0000000000..9cf84ba2c1
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.eclipselink.ui</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.gen/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.gen/pom.xml
new file mode 100644
index 0000000000..2f3af5b863
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.gen/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.gen</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.ui/pom.xml b/jpa/plugins/org.eclipse.jpt.jpa.ui/pom.xml
new file mode 100644
index 0000000000..cacf7a45bc
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.jpa.ui/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.ui</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/tests/org.eclipse.jpt.jpa.core.tests.extension.resource/pom.xml b/jpa/tests/org.eclipse.jpt.jpa.core.tests.extension.resource/pom.xml
new file mode 100644
index 0000000000..ce8a823baf
--- /dev/null
+++ b/jpa/tests/org.eclipse.jpt.jpa.core.tests.extension.resource/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.core.tests.extension.resource</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml b/jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml
new file mode 100644
index 0000000000..2a10004c08
--- /dev/null
+++ b/jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.core.tests</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/tests/org.eclipse.jpt.jpa.db.tests/pom.xml b/jpa/tests/org.eclipse.jpt.jpa.db.tests/pom.xml
new file mode 100644
index 0000000000..19f415d126
--- /dev/null
+++ b/jpa/tests/org.eclipse.jpt.jpa.db.tests/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.db.tests</artifactId>
+ <version>2.1.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/tests/org.eclipse.jpt.jpa.eclipselink.core.tests/pom.xml b/jpa/tests/org.eclipse.jpt.jpa.eclipselink.core.tests/pom.xml
new file mode 100644
index 0000000000..e901199fa4
--- /dev/null
+++ b/jpa/tests/org.eclipse.jpt.jpa.eclipselink.core.tests/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.eclipselink.core.tests</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/tests/org.eclipse.jpt.jpa.gen.tests/pom.xml b/jpa/tests/org.eclipse.jpt.jpa.gen.tests/pom.xml
new file mode 100644
index 0000000000..2cecb81569
--- /dev/null
+++ b/jpa/tests/org.eclipse.jpt.jpa.gen.tests/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.gen.tests</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/jpa/tests/org.eclipse.jpt.jpa.ui.tests/pom.xml b/jpa/tests/org.eclipse.jpt.jpa.ui.tests/pom.xml
new file mode 100644
index 0000000000..a77e58f8ea
--- /dev/null
+++ b/jpa/tests/org.eclipse.jpt.jpa.ui.tests/pom.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2013 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
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Thanh Ha (Eclipse Foundation) - 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.dali</groupId>
+ <artifactId>org.eclipse.webtools.dali</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.dali</groupId>
+ <artifactId>org.eclipse.jpt.jpa.ui.tests</artifactId>
+ <version>2.1.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>

Back to the top