[seam-commits] Seam SVN: r12059 - in modules/remoting/trunk: docs and 3 other directories.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Tue Feb 16 16:43:41 EST 2010
Author: shane.bryzak at jboss.com
Date: 2010-02-16 16:43:40 -0500 (Tue, 16 Feb 2010)
New Revision: 12059
Modified:
modules/remoting/trunk/docs/pom.xml
modules/remoting/trunk/examples/helloworld/pom.xml
modules/remoting/trunk/examples/model/pom.xml
modules/remoting/trunk/examples/model/src/main/java/org/jboss/seam/remoting/examples/model/PersonAction.java
modules/remoting/trunk/pom.xml
Log:
aligned maven groupId and artifactIds for remoting modules
Modified: modules/remoting/trunk/docs/pom.xml
===================================================================
--- modules/remoting/trunk/docs/pom.xml 2010-02-16 16:40:24 UTC (rev 12058)
+++ modules/remoting/trunk/docs/pom.xml 2010-02-16 21:43:40 UTC (rev 12059)
@@ -1,12 +1,6 @@
-<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">
-
+<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>
-
- <groupId>org.jboss.seam</groupId>
- <artifactId>remoting-reference-guide</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- <packaging>jdocbook</packaging>
- <name>Seam Remoting Reference Guide</name>
<parent>
<groupId>org.jboss.weld</groupId>
@@ -14,6 +8,12 @@
<version>8</version>
</parent>
+ <groupId>org.jboss.seam.remoting</groupId>
+ <artifactId>seam-remoting-reference-guide</artifactId>
+ <version>3.0.0-SNAPSHOT</version>
+ <packaging>jdocbook</packaging>
+ <name>Seam Remoting Reference Guide</name>
+
<pluginRepositories>
<pluginRepository>
<id>repository.jboss.org</id>
Modified: modules/remoting/trunk/examples/helloworld/pom.xml
===================================================================
--- modules/remoting/trunk/examples/helloworld/pom.xml 2010-02-16 16:40:24 UTC (rev 12058)
+++ modules/remoting/trunk/examples/helloworld/pom.xml 2010-02-16 21:43:40 UTC (rev 12059)
@@ -8,11 +8,11 @@
<version>3.0.0-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.seam.remoting.examples</groupId>
- <artifactId>remoting-helloworld</artifactId>
+ <groupId>org.jboss.seam.remoting</groupId>
+ <artifactId>seam-remoting-helloworld-example</artifactId>
<packaging>war</packaging>
<version>1.0.0-SNAPSHOT</version>
- <name>Seam Remoting Examples: Helloworld</name>
+ <name>Seam Remoting Helloworld Example</name>
<dependencies>
<!--dependency>
Modified: modules/remoting/trunk/examples/model/pom.xml
===================================================================
--- modules/remoting/trunk/examples/model/pom.xml 2010-02-16 16:40:24 UTC (rev 12058)
+++ modules/remoting/trunk/examples/model/pom.xml 2010-02-16 21:43:40 UTC (rev 12059)
@@ -2,8 +2,14 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.seam.remoting.examples</groupId>
- <artifactId>remoting-model</artifactId>
+ <parent>
+ <groupId>org.jboss.seam.examples</groupId>
+ <artifactId>seam-examples-parent</artifactId>
+ <version>3.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.jboss.seam.remoting</groupId>
+ <artifactId>seam-remoting-model-example</artifactId>
<packaging>war</packaging>
<version>1.0.0-SNAPSHOT</version>
<name>Seam Remoting Model Example</name>
Modified: modules/remoting/trunk/examples/model/src/main/java/org/jboss/seam/remoting/examples/model/PersonAction.java
===================================================================
--- modules/remoting/trunk/examples/model/src/main/java/org/jboss/seam/remoting/examples/model/PersonAction.java 2010-02-16 16:40:24 UTC (rev 12058)
+++ modules/remoting/trunk/examples/model/src/main/java/org/jboss/seam/remoting/examples/model/PersonAction.java 2010-02-16 21:43:40 UTC (rev 12059)
@@ -15,6 +15,7 @@
public class PersonAction implements Serializable
{
private static final long serialVersionUID = -1923705862231821692L;
+
@PersistenceContext EntityManager entityManager;
@Inject Conversation conversation;
Modified: modules/remoting/trunk/pom.xml
===================================================================
--- modules/remoting/trunk/pom.xml 2010-02-16 16:40:24 UTC (rev 12058)
+++ modules/remoting/trunk/pom.xml 2010-02-16 21:43:40 UTC (rev 12059)
@@ -8,9 +8,10 @@
<version>3.0.0-SNAPSHOT</version>
</parent>
- <artifactId>seam-remoting</artifactId>
- <packaging>jar</packaging>
+ <groupId>org.jboss.seam.remoting</groupId>
+ <artifactId>seam-remoting-core</artifactId>
<version>3.0.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
<name>Seam Remoting</name>
<!-- Snapshots repo to get parent -->
More information about the seam-commits
mailing list