[jboss-cvs] JBossAS SVN: r64017 - projects/vfs/trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jul 12 17:48:26 EDT 2007


Author: pgier
Date: 2007-07-12 17:48:26 -0400 (Thu, 12 Jul 2007)
New Revision: 64017

Modified:
   projects/vfs/trunk/pom.xml
Log:
Changing to version to maven 2.0.0-SNAPSHOT.  Updated parent reference, and groupId to org.jboss.  Added scm info, and other minor changes.

Modified: projects/vfs/trunk/pom.xml
===================================================================
--- projects/vfs/trunk/pom.xml	2007-07-12 21:12:52 UTC (rev 64016)
+++ projects/vfs/trunk/pom.xml	2007-07-12 21:48:26 UTC (rev 64017)
@@ -1,29 +1,32 @@
 <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">
+  <parent>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>3</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>jboss</groupId>
+  <groupId>org.jboss</groupId>
   <artifactId>jboss-vfs</artifactId>
   <packaging>jar</packaging>
-  <version>2.0.0.snapshot</version>
+  <version>2.0.0-SNAPSHOT</version>
   <name>JBoss VFS</name>
   <url>http://www.jboss.org</url>
-  <description>A set of commonly used classed classes</description>
+  <description>A VFS library</description>
   <licenses>
     <license>
       <name>lgpl</name>
-      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+      <url>http://repository.jboss.org/licenses/lgpl.txt</url>
     </license>
   </licenses>
   <organization>
-    <name>JBoss, A division of Red Hat</name>
+    <name>JBoss, A division of Red Hat, Inc</name>
     <url>http://www.jboss.org</url>
   </organization>
-  <parent>
-    <groupId>jboss</groupId>
-    <artifactId>jboss-parent</artifactId>
-    <version>1</version>
-  </parent>
-
+  <scm>
+    <connection>http://anonsvn.jboss.org/repos/jbossas/projects/vfs/trunk/</connection>
+    <developerConnection>https://svn.jboss.org/repos/jbossas/projects/vfs/trunk/</developerConnection>
+  </scm>
   <build>
     <sourceDirectory>src/main/java</sourceDirectory>
     <finalName>${artifactId}</finalName>
@@ -57,18 +60,12 @@
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <printSummary>true</printSummary>
           <disableXmlReport>false</disableXmlReport>
-          <testFailureIgnore>true</testFailureIgnore>
           <forkMode>once</forkMode> <!-- required to correctly run the PojoServer tests -->
           <useSystemClassLoader>true</useSystemClassLoader>
+          <redirectTestOutputToFile>true</redirectTestOutputToFile>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-report-plugin</artifactId>
-      </plugin>
-      
     </plugins>
   </build>
 
@@ -98,12 +95,26 @@
     </dependency>
   </dependencies>
 
-  <distributionManagement>
+  <repositories>
     <repository>
-      <id>cvs-file-repository</id>
-      <!-- Set maven.cvs.root in your settings.xml -->
-      <url>file://${maven.cvs.root}</url>
+      <id>jboss</id>
+      <name>JBoss Repository</name>
+      <url>http://repository.jboss.org/maven2</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
     </repository>
-  </distributionManagement>
-
+    <repository>
+      <id>jboss-snapshots</id>
+      <name>JBoss Snapshot Repository</name>
+      <url>http://snapshots.jboss.org/maven2</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+  
 </project>




More information about the jboss-cvs-commits mailing list