Author: trustin
Date: 2010-03-17 22:35:20 -0400 (Wed, 17 Mar 2010)
New Revision: 5830
Modified:
remoting3/trunk/jboss-remoting/pom.xml
remoting3/trunk/pom.xml
remoting3/trunk/samples/pom.xml
remoting3/trunk/taglet/pom.xml
Log:
POM refactoring
Modified: remoting3/trunk/jboss-remoting/pom.xml
===================================================================
--- remoting3/trunk/jboss-remoting/pom.xml 2010-03-16 18:38:13 UTC (rev 5829)
+++ remoting3/trunk/jboss-remoting/pom.xml 2010-03-18 02:35:20 UTC (rev 5830)
@@ -29,28 +29,15 @@
<name>JBoss Remoting 3</name>
<description>JBoss Remoting 3</description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <xnio.version>2.1.0.CR2</xnio.version>
- <jbmar.version>1.3.0.CR2</jbmar.version>
- </properties>
-
- <groupId>org.jboss.remoting3</groupId>
+ <parent>
+ <groupId>org.jboss.remoting3</groupId>
+ <artifactId>jboss-remoting-parent</artifactId>
+ <version>3.1.0.Beta3-SNAPSHOT</version>
+ </parent>
+
<artifactId>jboss-remoting</artifactId>
<packaging>jar</packaging>
- <version>3.1.0.Beta3-SNAPSHOT</version>
- <licenses>
- <license>
- <name>LGPL 2.1</name>
- <
url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <organization>
- <name>JBoss, a division of Red Hat, Inc.</name>
- <
url>http://www.jboss.org/</url>
- </organization>
<dependencies>
<dependency>
<groupId>org.jboss.xnio</groupId>
@@ -112,27 +99,6 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>verify</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-injection-plugin</artifactId>
<version>1.0.2</version>
@@ -205,11 +171,4 @@
</plugin>
</plugins>
</build>
- <distributionManagement>
- <repository>
- <id>repository.jboss.org</id>
- <name>JBoss Maven2 Repository</name>
- <
url>http://repository.jboss.org/repos/maven2</url>
- </repository>
- </distributionManagement>
</project>
Modified: remoting3/trunk/pom.xml
===================================================================
--- remoting3/trunk/pom.xml 2010-03-16 18:38:13 UTC (rev 5829)
+++ remoting3/trunk/pom.xml 2010-03-18 02:35:20 UTC (rev 5830)
@@ -29,14 +29,23 @@
<name>JBoss Remoting 3 Parent</name>
<description>JBoss Remoting 3 Parent POM</description>
+ <parent>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-parent</artifactId>
+ <version>5-beta-5</version>
+ </parent>
+
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <xnio.version>2.1.0.CR2</xnio.version>
+ <jbmar.version>1.3.0.CR2</jbmar.version>
</properties>
<groupId>org.jboss.remoting3</groupId>
- <artifactId>jboss-remoting-all</artifactId>
+ <artifactId>jboss-remoting-parent</artifactId>
<packaging>pom</packaging>
<version>3.1.0.Beta3-SNAPSHOT</version>
+
<modules>
<module>taglet</module>
<module>jboss-remoting</module>
@@ -54,12 +63,4 @@
</plugin>
</plugins>
</build>
-
- <distributionManagement>
- <repository>
- <id>repository.jboss.org</id>
- <name>JBoss Maven2 Repository</name>
- <
url>http://repository.jboss.org/repos/maven2</url>
- </repository>
- </distributionManagement>
</project>
Modified: remoting3/trunk/samples/pom.xml
===================================================================
--- remoting3/trunk/samples/pom.xml 2010-03-16 18:38:13 UTC (rev 5829)
+++ remoting3/trunk/samples/pom.xml 2010-03-18 02:35:20 UTC (rev 5830)
@@ -29,19 +29,20 @@
<name>JBoss Remoting 3 Samples</name>
<description>JBoss Remoting 3 Samples</description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-
- <groupId>org.jboss.remoting3</groupId>
+ <parent>
+ <groupId>org.jboss.remoting3</groupId>
+ <artifactId>jboss-remoting-parent</artifactId>
+ <version>3.1.0.Beta3-SNAPSHOT</version>
+ </parent>
+
<artifactId>jboss-remoting-samples</artifactId>
<packaging>jar</packaging>
- <version>3.1.0.Beta3-SNAPSHOT</version>
+
<dependencies>
<dependency>
- <groupId>org.jboss.remoting3</groupId>
+ <groupId>${groupId}</groupId>
<artifactId>jboss-remoting</artifactId>
- <version>3.1.0.Beta3-SNAPSHOT</version>
+ <version>${version}</version>
<scope>compile</scope>
</dependency>
<dependency>
@@ -51,31 +52,4 @@
<scope>compile</scope>
</dependency>
</dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <id>repository.jboss.org</id>
- <name>JBoss Maven2 Repository</name>
- <
url>http://repository.jboss.org/repos/maven2</url>
- </repository>
- </distributionManagement>
</project>
Modified: remoting3/trunk/taglet/pom.xml
===================================================================
--- remoting3/trunk/taglet/pom.xml 2010-03-16 18:38:13 UTC (rev 5829)
+++ remoting3/trunk/taglet/pom.xml 2010-03-18 02:35:20 UTC (rev 5830)
@@ -26,16 +26,17 @@
<modelVersion>4.0.0</modelVersion>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-
- <groupId>org.jboss.remoting3</groupId>
- <artifactId>jboss-remoting-taglet</artifactId>
<name>JBoss Remoting 3 Taglet</name>
<description>JBoss Remoting 3 Documentation Taglet</description>
+
+ <parent>
+ <groupId>org.jboss.remoting3</groupId>
+ <artifactId>jboss-remoting-parent</artifactId>
+ <version>3.1.0.Beta3-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>jboss-remoting-taglet</artifactId>
<packaging>jar</packaging>
- <version>3.1.0.Beta3-SNAPSHOT</version>
<dependencies>
<dependency>
@@ -46,31 +47,4 @@
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <id>repository.jboss.org</id>
- <name>JBoss Maven2 Repository</name>
- <
url>http://repository.jboss.org/repos/maven2</url>
- </repository>
- </distributionManagement>
</project>
\ No newline at end of file