[jbosstools-commits] JBoss Tools SVN: r31285 - in trunk/jst: features and 25 other directories.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Thu May 12 20:45:12 EDT 2011


Author: dgolovin
Date: 2011-05-12 20:45:12 -0400 (Thu, 12 May 2011)
New Revision: 31285

Modified:
   trunk/jst/features/org.jboss.tools.jst.feature/pom.xml
   trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml
   trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/pom.xml
   trunk/jst/features/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.web.tiles/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.web.verification/pom.xml
   trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml
   trunk/jst/plugins/pom.xml
   trunk/jst/pom.xml
   trunk/jst/site/pom.xml
   trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml
   trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml
   trunk/jst/tests/org.jboss.tools.jst.text.ext.test/pom.xml
   trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml
   trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/pom.xml
   trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml
   trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml
   trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml
   trunk/jst/tests/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8518 fix pom.xml files in JBT and JBDS repo such that only component root poms reference parent pom (all others just look up to .. for parent)
jst component fix
restored artifacts groupId/artifactId to original structure
<module>
  plugins
  features
  tests
  <module>.site
left only one reference to parent pom in <module>/pom.xml
fixed relativePath to ../build/parent/pom.xml

Modified: trunk/jst/features/org.jboss.tools.jst.feature/pom.xml
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.feature/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/features/org.jboss.tools.jst.feature/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>features</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.features</groupId>
 	<artifactId>org.jboss.tools.jst.feature</artifactId> 
 	<version>3.3.0-SNAPSHOT</version>
 	<packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>features</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
-	<groupId>org.jboss.tools.jst.test.features</groupId>
+	<groupId>org.jboss.tools.jst.features</groupId>
 	<artifactId>org.jboss.tools.jst.test.feature</artifactId> 
 	<version>1.1.0-SNAPSHOT</version>
 	<packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/pom.xml
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>features</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.features</groupId>
 	<artifactId>org.jboss.tools.jst.web.tiles.feature</artifactId> 
 	<version>3.3.0-SNAPSHOT</version>
 	<packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/features/pom.xml
===================================================================
--- trunk/jst/features/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/features/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -5,6 +5,11 @@
 	<artifactId>features</artifactId>
 	<name>jst.features</name>
 	<version>0.0.1-SNAPSHOT</version>
+	<parent>
+		<groupId>org.jboss.tools</groupId>
+		<artifactId>jst</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
+	</parent>
 	<packaging>pom</packaging>
 	<modules>
 		<module>org.jboss.tools.jst.feature</module>

Modified: trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.css</artifactId> 
 	<version>3.3.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.firstrun</artifactId> 
 	<version>3.2.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.jsp</artifactId> 
 	<version>3.3.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
-		<groupId>org.jboss.tools</groupId>
-		<artifactId>org.jboss.tools.parent.pom</artifactId>
-		<version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.base.test</artifactId>
 	<version>1.1.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.text.ext</artifactId> 
 	<version>3.3.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.web</artifactId> 
 	<version>3.3.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.tests</groupId>
 	<artifactId>org.jboss.tools.jst.web.kb</artifactId> 
 	<version>3.3.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.web.tiles</artifactId> 
 	<version>3.1.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.web.tiles.ui</artifactId> 
 	<version>3.3.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.web.ui</artifactId> 
 	<version>3.3.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/org.jboss.tools.jst.web.verification/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.verification/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.verification/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,12 +2,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>plugins</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.plugins</groupId>
 	<artifactId>org.jboss.tools.jst.web.verification</artifactId> 
 	<version>3.1.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/plugins/pom.xml
===================================================================
--- trunk/jst/plugins/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/plugins/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -5,6 +5,11 @@
 	<artifactId>plugins</artifactId>
 	<name>jst.plugins</name>
 	<version>0.0.1-SNAPSHOT</version>
+	<parent>
+		<groupId>org.jboss.tools</groupId>
+		<artifactId>jst</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
+	</parent>
 	<packaging>pom</packaging>
 	<modules>
 		<module>org.jboss.tools.jst.css</module>

Modified: trunk/jst/pom.xml
===================================================================
--- trunk/jst/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -5,6 +5,12 @@
 	<artifactId>jst</artifactId>
 	<name>jst.all</name>
 	<version>0.0.1-SNAPSHOT</version>
+	<parent>
+		<groupId>org.jboss.tools</groupId>
+		<artifactId>org.jboss.tools.parent.pom</artifactId>
+		<version>0.0.2-SNAPSHOT</version>
+		<relativePath>../build/parent/pom.xml</relativePath>
+	</parent>
 	<packaging>pom</packaging>
 	<modules>
 		<module>features</module>

Modified: trunk/jst/site/pom.xml
===================================================================
--- trunk/jst/site/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/site/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,14 +2,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-		
 		<groupId>org.jboss.tools</groupId>
-		<artifactId>org.jboss.tools.parent.pom</artifactId>
-		<version>0.0.2-SNAPSHOT</version>
+		<artifactId>jst</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst</groupId>
 	<artifactId>jst.site</artifactId> 
 	<name>jst.site</name>
 	<version>0.0.1-SNAPSHOT</version>
 	<packaging>eclipse-update-site</packaging>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,9 +2,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>tests</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.tests</groupId>
 	<artifactId>org.jboss.tools.jst.css.test</artifactId> 
@@ -15,4 +15,4 @@
 		<emma.filter>org.jboss.tools.jst.css*</emma.filter>
 		<emma.instrument.bundles>org.jboss.tools.jst.css</emma.instrument.bundles>
 	</properties>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,9 +2,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>tests</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.tests</groupId>
 	<artifactId>org.jboss.tools.jst.jsp.test</artifactId> 
@@ -15,4 +15,4 @@
 		<emma.filter>org.jboss.tools.jst.jsp*</emma.filter>
 		<emma.instrument.bundles>org.jboss.tools.jst.jsp</emma.instrument.bundles>
 	</properties>	
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/tests/org.jboss.tools.jst.text.ext.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.text.ext.test/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/tests/org.jboss.tools.jst.text.ext.test/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,9 +2,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>tests</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.tests</groupId>
 	<artifactId>org.jboss.tools.jst.text.ext.test</artifactId> 
@@ -15,4 +15,4 @@
 		<emma.filter>org.jboss.tools.jst.text.ext*</emma.filter>
 		<emma.instrument.bundles>org.jboss.tools.jst.text.ext</emma.instrument.bundles>
 	</properties>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,9 +2,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>tests</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.tests</groupId>
 	<artifactId>org.jboss.tools.jst.ui.bot.test</artifactId> 
@@ -14,4 +14,4 @@
 		<emma.filter>org.jboss.tools.jst*</emma.filter>
 		<emma.instrument.bundles>org.jboss.tools.jst*</emma.instrument.bundles>
 	</properties>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,9 +2,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>tests</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.tests</groupId>
 	<artifactId>org.jboss.tools.jst.ui.firstrun.bot.test</artifactId> 
@@ -15,4 +15,4 @@
 		<emma.filter>org.jboss.tools.jst*</emma.filter>
 		<emma.instrument.bundles>org.jboss.tools.jst*</emma.instrument.bundles>
 	</properties>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,9 +2,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>tests</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.tests</groupId>
 	<artifactId>org.jboss.tools.jst.web.kb.test</artifactId> 
@@ -15,4 +15,4 @@
 		<emma.filter>org.jboss.tools.jst.web.kb*</emma.filter>
 		<emma.instrument.bundles>org.jboss.tools.jst.web.kb</emma.instrument.bundles>
 	</properties>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,9 +2,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
-		<groupId>org.jboss.tools</groupId>
-		<artifactId>org.jboss.tools.parent.pom</artifactId>
-		<version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>tests</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.tests</groupId>
 	<artifactId>org.jboss.tools.jst.web.test</artifactId>
@@ -14,4 +14,4 @@
 		<emma.filter>org.jboss.tools.jst.web*</emma.filter>
 		<emma.instrument.bundles>org.jboss.tools.jst.web</emma.instrument.bundles>
 	</properties>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,9 +2,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion> 
 	<parent>
-	  <groupId>org.jboss.tools</groupId>
-	  <artifactId>org.jboss.tools.parent.pom</artifactId>
-	  <version>0.0.2-SNAPSHOT</version>
+		<groupId>org.jboss.tools.jst</groupId>
+		<artifactId>tests</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
 	</parent>
 	<groupId>org.jboss.tools.jst.tests</groupId>
 	<artifactId>org.jboss.tools.jst.web.ui.test</artifactId> 
@@ -15,4 +15,4 @@
 		<emma.filter>org.jboss.tools.jst.web.ui*</emma.filter>
 		<emma.instrument.bundles>org.jboss.tools.jst.web.ui</emma.instrument.bundles>
 	</properties>
-</project>
\ No newline at end of file
+</project>

Modified: trunk/jst/tests/pom.xml
===================================================================
--- trunk/jst/tests/pom.xml	2011-05-12 23:47:02 UTC (rev 31284)
+++ trunk/jst/tests/pom.xml	2011-05-13 00:45:12 UTC (rev 31285)
@@ -2,9 +2,14 @@
 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>
 	<groupId>org.jboss.tools.jst</groupId>
-	<artifactId>org.jboss.tools.jst.tests</artifactId>
-	<name>org.jboss.tools.jst.tests</name>
+	<artifactId>tests</artifactId>
+	<name>jst.tests</name>
 	<version>0.0.1-SNAPSHOT</version>
+	<parent>
+		<groupId>org.jboss.tools</groupId>
+		<artifactId>jst</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
+	</parent>
 	<packaging>pom</packaging>
 	<modules>
 		<module>org.jboss.tools.jst.css.test</module>



More information about the jbosstools-commits mailing list