[savara-commits] savara SVN: r56 - trunk and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Sat Oct 17 10:44:45 EDT 2009


Author: jeff.yuchang
Date: 2009-10-17 10:44:45 -0400 (Sat, 17 Oct 2009)
New Revision: 56

Added:
   runtime/trunk/pom.xml
Removed:
   trunk/pom.xml
Log:
* moving pom.xml


Copied: runtime/trunk/pom.xml (from rev 55, trunk/pom.xml)
===================================================================
--- runtime/trunk/pom.xml	                        (rev 0)
+++ runtime/trunk/pom.xml	2009-10-17 14:44:45 UTC (rev 56)
@@ -0,0 +1,247 @@
+<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</groupId>
+	<artifactId>savara</artifactId>
+	<version>1.0-SNAPSHOT</version>
+	<packaging>pom</packaging>
+	<name>Savara</name>
+	<url>http://www.jboss.org/overlord/savara</url>
+	<description>
+		The JBoss SAVARA Project.
+	</description>
+	<scm>
+		<connection>scm:svn:https://svn.jboss.org/repos/soag/savara/trunk</connection>
+	</scm>
+	<developers>
+		<developer>
+			<name>Jeff Yu</name>
+			<id>jeff.yuchang</id>
+			<email>cyu at redhat.com</email>
+			<organization>Red Hat</organization>
+			<roles>
+				<role>Developer</role>
+			</roles>
+			<timezone>+8</timezone>
+		</developer>
+		<developer>
+		    <name>Gary Brown</name>
+		    <id>objectiser</id>
+		    <email>gbrown at redhat.com</email>
+		    <organization>Red Hat</organization>
+		    <roles>
+		        <role>Developer</role>
+		    </roles>
+		    <timezone>+1</timezone>
+		</developer>
+	</developers>
+	<modules>
+		<module>runtime/jbossesb</module>
+        <module>validator/jbossesb</module>
+		<module>samples</module>
+	</modules>
+
+	<profiles>
+		<profile>
+			<id>release</id>
+			<modules>
+				<module>docs/docbook</module>
+				<module>distribution</module>
+			</modules>
+		</profile>
+		<profile>
+		    <!-- 
+			This profile is activated when the "generate.docs" property is set,
+			as in "mvn ... -Dgenerate.docs=true ..."
+		    -->
+	      <id>docs</id>
+	      <activation>
+	        <property>
+	          <name>generate.docs</name>
+	        </property>
+	      </activation>
+	      <modules>
+	        <module>docs</module>
+	      </modules>
+		  <reporting>
+		    <plugins>
+		      <plugin>
+		        <groupId>org.apache.maven.plugins</groupId>
+		        <artifactId>maven-javadoc-plugin</artifactId>
+		        <configuration>
+		          <aggregate>true</aggregate>
+				  <show>public</show>
+				  <title>JBoss Savara ${project.version}</title>
+		        </configuration>
+		      </plugin>
+		    </plugins>
+		  </reporting>
+	    </profile>
+	</profiles>
+
+	<build>
+		<!-- This section defines the default plugin settings inherited by child projects. -->
+		<pluginManagement>
+			<plugins>
+				<!-- Fixes how test resources of a project can be used in projects dependent on it  -->
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-jar-plugin</artifactId>
+					<version>2.2</version>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-javadoc-plugin</artifactId>
+					<version>2.2</version>
+					<configuration>
+						<aggregate>true</aggregate>
+					</configuration>
+				</plugin>
+			</plugins>
+		</pluginManagement>
+		<plugins>
+			<!-- Specify the compiler options and settings -->
+			<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>
+					<showDeprecation>false</showDeprecation>
+					<showWarnings>false</showWarnings>
+				</configuration>
+			</plugin>
+			<!-- Produce source jars during the 'verify' phase -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<phase>verify</phase>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<includes>
+						<include>**/*TestCase.java</include>
+						<include>**/*Test.java</include>
+					</includes>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+
+	<properties>
+		<savara-version>1.0-SNAPSHOT</savara-version>
+		<junit.version>4.4</junit.version>
+		<rosetta.version>4.5</rosetta.version>
+		<log4j.version>1.2.14</log4j.version>
+        <mvel.version>1.3.4-java1.5</mvel.version>
+	</properties>
+
+	<dependencyManagement>
+	  <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>${junit.version}</version>
+            <scope>test</scope>
+        </dependency>
+	    <dependency>
+	    	<groupId>org.jboss.overlord.dependencies.org.jboss.esb</groupId>
+	    	<artifactId>jbossesb-rosetta</artifactId>
+	    	<version>${rosetta.version}</version>
+	    </dependency>
+	    <dependency>
+	    	<groupId>log4j</groupId>
+	    	<artifactId>log4j</artifactId>
+	    	<version>${log4j.version}</version>
+	    </dependency>
+	    <dependency>
+	    	<groupId>org.mvel</groupId>
+	    	<artifactId>mvel</artifactId>
+	    	<version>${mvel.version}</version>
+	    </dependency>    
+	  </dependencies>
+	</dependencyManagement>
+
+
+	<reporting>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-report-plugin</artifactId>
+			</plugin>
+	    </plugins>
+	</reporting>
+	
+	<repositories>
+		<repository>
+			<id>jboss</id>
+			<url>http://repository.jboss.com/maven2/</url>
+			<snapshots>
+			  <enabled>false</enabled>
+			</snapshots>
+		</repository>
+		
+		<repository>
+			<id>jboss-snapshot</id>
+			<url>http://snapshots.jboss.org/maven2</url>
+			<snapshots>
+			  <enabled>true</enabled>
+			</snapshots>
+		</repository>
+
+	    <repository>
+	        <id>maven.repo</id>
+	        <name>maven repository</name>
+	        <url>http://repo1.maven.org/maven2</url>
+	    </repository>
+
+	    <repository>
+	        <id>ibiblio</id>
+	        <name>ibiblio repository</name>
+	        <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
+	    </repository>
+
+		<repository>
+		    <id>codehaus</id>
+			<name>codehaus repository</name>
+			<url>http://repo1.maven.org/maven2</url>
+		</repository>
+
+		<!-- Not all dependencies are resolved when using this repository.
+			Complains about not finding appropriate version of
+			org.eclipse.equinox.app	plugin. -->
+		<!-- repository>
+		    <id>eclipse</id>
+			<name>eclipse repository</name>
+			<url>http://repo1.maven.org/eclipse</url>
+		</repository-->
+
+	</repositories>
+
+  <distributionManagement>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Maven Repository</name>
+      <url>file://${jboss.maven.repository}</url>
+    </repository>
+    <snapshotRepository>
+      <id>jboss-snapshots</id>
+      <name>JBoss Snapshot Repository</name>
+      <url>dav:https://snapshots.jboss.org/maven2</url>
+    </snapshotRepository>
+  </distributionManagement>
+
+	
+</project>
+

Deleted: trunk/pom.xml
===================================================================
--- trunk/pom.xml	2009-10-17 14:41:44 UTC (rev 55)
+++ trunk/pom.xml	2009-10-17 14:44:45 UTC (rev 56)
@@ -1,247 +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/maven-v4_0_0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<groupId>org.jboss</groupId>
-	<artifactId>savara</artifactId>
-	<version>1.0-SNAPSHOT</version>
-	<packaging>pom</packaging>
-	<name>Savara</name>
-	<url>http://www.jboss.org/overlord/savara</url>
-	<description>
-		The JBoss SAVARA Project.
-	</description>
-	<scm>
-		<connection>scm:svn:https://svn.jboss.org/repos/soag/savara/trunk</connection>
-	</scm>
-	<developers>
-		<developer>
-			<name>Jeff Yu</name>
-			<id>jeff.yuchang</id>
-			<email>cyu at redhat.com</email>
-			<organization>Red Hat</organization>
-			<roles>
-				<role>Developer</role>
-			</roles>
-			<timezone>+8</timezone>
-		</developer>
-		<developer>
-		    <name>Gary Brown</name>
-		    <id>objectiser</id>
-		    <email>gbrown at redhat.com</email>
-		    <organization>Red Hat</organization>
-		    <roles>
-		        <role>Developer</role>
-		    </roles>
-		    <timezone>+1</timezone>
-		</developer>
-	</developers>
-	<modules>
-		<module>runtime/jbossesb</module>
-        <module>validator/jbossesb</module>
-		<module>samples</module>
-	</modules>
-
-	<profiles>
-		<profile>
-			<id>release</id>
-			<modules>
-				<module>docs/docbook</module>
-				<module>distribution</module>
-			</modules>
-		</profile>
-		<profile>
-		    <!-- 
-			This profile is activated when the "generate.docs" property is set,
-			as in "mvn ... -Dgenerate.docs=true ..."
-		    -->
-	      <id>docs</id>
-	      <activation>
-	        <property>
-	          <name>generate.docs</name>
-	        </property>
-	      </activation>
-	      <modules>
-	        <module>docs</module>
-	      </modules>
-		  <reporting>
-		    <plugins>
-		      <plugin>
-		        <groupId>org.apache.maven.plugins</groupId>
-		        <artifactId>maven-javadoc-plugin</artifactId>
-		        <configuration>
-		          <aggregate>true</aggregate>
-				  <show>public</show>
-				  <title>JBoss Savara ${project.version}</title>
-		        </configuration>
-		      </plugin>
-		    </plugins>
-		  </reporting>
-	    </profile>
-	</profiles>
-
-	<build>
-		<!-- This section defines the default plugin settings inherited by child projects. -->
-		<pluginManagement>
-			<plugins>
-				<!-- Fixes how test resources of a project can be used in projects dependent on it  -->
-				<plugin>
-					<groupId>org.apache.maven.plugins</groupId>
-					<artifactId>maven-jar-plugin</artifactId>
-					<version>2.2</version>
-				</plugin>
-				<plugin>
-					<groupId>org.apache.maven.plugins</groupId>
-					<artifactId>maven-javadoc-plugin</artifactId>
-					<version>2.2</version>
-					<configuration>
-						<aggregate>true</aggregate>
-					</configuration>
-				</plugin>
-			</plugins>
-		</pluginManagement>
-		<plugins>
-			<!-- Specify the compiler options and settings -->
-			<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>
-					<showDeprecation>false</showDeprecation>
-					<showWarnings>false</showWarnings>
-				</configuration>
-			</plugin>
-			<!-- Produce source jars during the 'verify' phase -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-source-plugin</artifactId>
-				<executions>
-					<execution>
-						<id>attach-sources</id>
-						<phase>verify</phase>
-						<goals>
-							<goal>jar</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-			<plugin>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<configuration>
-					<includes>
-						<include>**/*TestCase.java</include>
-						<include>**/*Test.java</include>
-					</includes>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
-
-	<properties>
-		<savara-version>1.0-SNAPSHOT</savara-version>
-		<junit.version>4.4</junit.version>
-		<rosetta.version>4.5</rosetta.version>
-		<log4j.version>1.2.14</log4j.version>
-        <mvel.version>1.3.4-java1.5</mvel.version>
-	</properties>
-
-	<dependencyManagement>
-	  <dependencies>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>${junit.version}</version>
-            <scope>test</scope>
-        </dependency>
-	    <dependency>
-	    	<groupId>org.jboss.overlord.dependencies.org.jboss.esb</groupId>
-	    	<artifactId>jbossesb-rosetta</artifactId>
-	    	<version>${rosetta.version}</version>
-	    </dependency>
-	    <dependency>
-	    	<groupId>log4j</groupId>
-	    	<artifactId>log4j</artifactId>
-	    	<version>${log4j.version}</version>
-	    </dependency>
-	    <dependency>
-	    	<groupId>org.mvel</groupId>
-	    	<artifactId>mvel</artifactId>
-	    	<version>${mvel.version}</version>
-	    </dependency>    
-	  </dependencies>
-	</dependencyManagement>
-
-
-	<reporting>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-report-plugin</artifactId>
-			</plugin>
-	    </plugins>
-	</reporting>
-	
-	<repositories>
-		<repository>
-			<id>jboss</id>
-			<url>http://repository.jboss.com/maven2/</url>
-			<snapshots>
-			  <enabled>false</enabled>
-			</snapshots>
-		</repository>
-		
-		<repository>
-			<id>jboss-snapshot</id>
-			<url>http://snapshots.jboss.org/maven2</url>
-			<snapshots>
-			  <enabled>true</enabled>
-			</snapshots>
-		</repository>
-
-	    <repository>
-	        <id>maven.repo</id>
-	        <name>maven repository</name>
-	        <url>http://repo1.maven.org/maven2</url>
-	    </repository>
-
-	    <repository>
-	        <id>ibiblio</id>
-	        <name>ibiblio repository</name>
-	        <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
-	    </repository>
-
-		<repository>
-		    <id>codehaus</id>
-			<name>codehaus repository</name>
-			<url>http://repo1.maven.org/maven2</url>
-		</repository>
-
-		<!-- Not all dependencies are resolved when using this repository.
-			Complains about not finding appropriate version of
-			org.eclipse.equinox.app	plugin. -->
-		<!-- repository>
-		    <id>eclipse</id>
-			<name>eclipse repository</name>
-			<url>http://repo1.maven.org/eclipse</url>
-		</repository-->
-
-	</repositories>
-
-  <distributionManagement>
-    <repository>
-      <id>jboss</id>
-      <name>JBoss Maven Repository</name>
-      <url>file://${jboss.maven.repository}</url>
-    </repository>
-    <snapshotRepository>
-      <id>jboss-snapshots</id>
-      <name>JBoss Snapshot Repository</name>
-      <url>dav:https://snapshots.jboss.org/maven2</url>
-    </snapshotRepository>
-  </distributionManagement>
-
-	
-</project>
-



More information about the savara-commits mailing list