[jboss-remoting-commits] JBoss Remoting SVN: r4865 - in remoting3/trunk: jboss-remoting and 1 other directory.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Mon Mar 2 18:01:05 EST 2009


Author: david.lloyd at jboss.com
Date: 2009-03-02 18:01:05 -0500 (Mon, 02 Mar 2009)
New Revision: 4865

Added:
   remoting3/trunk/jboss-remoting/
   remoting3/trunk/jboss-remoting/pom.xml
   remoting3/trunk/jboss-remoting/src/
Removed:
   remoting3/trunk/api/
   remoting3/trunk/jboss-remoting/pom.xml
   remoting3/trunk/jboss-remoting/src/
Log:
Mavenizing fix: move "api" to "jboss-remoting"

Copied: remoting3/trunk/jboss-remoting (from rev 4858, remoting3/trunk/api)

Deleted: remoting3/trunk/jboss-remoting/pom.xml
===================================================================
--- remoting3/trunk/api/pom.xml	2009-02-26 21:50:42 UTC (rev 4858)
+++ remoting3/trunk/jboss-remoting/pom.xml	2009-03-02 23:01:05 UTC (rev 4865)
@@ -1,45 +0,0 @@
-<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.remoting</groupId>
-    <artifactId>jboss-remoting</artifactId>
-    <packaging>jar</packaging>
-    <version>1.1.0.CR1</version>
-    <dependencies>
-        <dependency>
-            <groupId>org.jboss.xnio</groupId>
-            <artifactId>xnio-api</artifactId>
-            <version>1.2.0.GA</version>
-            <scope>compile</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.marshalling</groupId>
-            <artifactId>marshalling-api</artifactId>
-            <version>1.0.0.GA</version>
-            <scope>compile</scope>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>3.8.2</version>
-            <scope>test</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>
-        </plugins>
-        <finalName>jboss-remoting</finalName>
-    </build>
-</project>

Copied: remoting3/trunk/jboss-remoting/pom.xml (from rev 4864, remoting3/trunk/api/pom.xml)
===================================================================
--- remoting3/trunk/jboss-remoting/pom.xml	                        (rev 0)
+++ remoting3/trunk/jboss-remoting/pom.xml	2009-03-02 23:01:05 UTC (rev 4865)
@@ -0,0 +1,51 @@
+<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.remoting</groupId>
+        <artifactId>jboss-remoting-all</artifactId>
+        <version>3.1.0.CR1</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.jboss.remoting</groupId>
+    <artifactId>jboss-remoting</artifactId>
+    <packaging>jar</packaging>
+    <version>1.1.0.CR1</version>
+    <dependencies>
+        <dependency>
+            <groupId>org.jboss.xnio</groupId>
+            <artifactId>xnio-api</artifactId>
+            <version>1.2.0.GA</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.marshalling</groupId>
+            <artifactId>marshalling-api</artifactId>
+            <version>1.1.0.GA</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.2</version>
+            <scope>test</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>
+        </plugins>
+    </build>
+</project>

Copied: remoting3/trunk/jboss-remoting/src (from rev 4864, remoting3/trunk/api/src)




More information about the jboss-remoting-commits mailing list