[jboss-svn-commits] JBoss Common SVN: r2183 - jbossxb/trunk

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Nov 28 19:59:19 EST 2006


Author: scott.stark at jboss.org
Date: 2006-11-28 19:59:17 -0500 (Tue, 28 Nov 2006)
New Revision: 2183

Modified:
   jbossxb/trunk/pom.xml
Log:
Fix the jboss dependencies and add a distributionManagement section

Modified: jbossxb/trunk/pom.xml
===================================================================
--- jbossxb/trunk/pom.xml	2006-11-29 00:34:31 UTC (rev 2182)
+++ jbossxb/trunk/pom.xml	2006-11-29 00:59:17 UTC (rev 2183)
@@ -4,21 +4,21 @@
   <groupId>jboss</groupId>
   <artifactId>jbossxb</artifactId>
   <packaging>jar</packaging>
-  <version>1.0.1.TEST</version>
+  <version>1.0.0.snapshot</version>
   <name>JBoss XML Binding</name>
   <url>http://www.jboss.org</url>
   <description>JBoss XML Binding</description>
   <licenses>
-   <license>
+    <license>
       <name>lgpl</name>
       <url>http://repository.jboss.com/licenses/lgpl.txt</url>
-   </license>
+    </license>
   </licenses>
   <organization>
     <name>JBoss Inc.</name>
     <url>http://www.jboss.org</url>
   </organization>
- 
+  
   <repositories>
     <repository>
       <id>jboss</id>
@@ -30,60 +30,61 @@
       </snapshots>
     </repository>
   </repositories>
-
+  
   <pluginRepositories>
-     <pluginRepository>
-        <id>jbosspluginrepo</id>
-        <name>jboss plugin repository</name>
-        <url>http://repository.jboss.com/maven2</url>
-        <layout>default</layout>
-        <snapshots>
-           <enabled>false</enabled>
-           <updatePolicy>never</updatePolicy>
-        </snapshots>
-     </pluginRepository>
-      <pluginRepository>
-        <id>central</id>
-        <name>LSU maven2 mirror</name>
-        <url>http://ibiblio.lsu.edu/main/pub/packages/maven2</url>
-        <layout>default</layout>
-        <snapshots>
-           <enabled>false</enabled>
-           <updatePolicy>never</updatePolicy>
-        </snapshots>
-     </pluginRepository>
+    <pluginRepository>
+      <id>jbosspluginrepo</id>
+      <name>jboss plugin repository</name>
+      <url>http://repository.jboss.com/maven2</url>
+      <layout>default</layout>
+      <snapshots>
+        <enabled>false</enabled>
+        <updatePolicy>never</updatePolicy>
+      </snapshots>
+    </pluginRepository>
+    <pluginRepository>
+      <id>central</id>
+      <name>LSU maven2 mirror</name>
+      <url>http://ibiblio.lsu.edu/main/pub/packages/maven2</url>
+      <layout>default</layout>
+      <snapshots>
+        <enabled>false</enabled>
+        <updatePolicy>never</updatePolicy>
+      </snapshots>
+    </pluginRepository>
   </pluginRepositories>
-
   
+  
   <build>
-     <sourceDirectory>src/main/java</sourceDirectory>
-  <plugins>
-  
+    <sourceDirectory>src/main/java</sourceDirectory>
+    <finalName>jboss-xml-binding</finalName>
+    <plugins>
+      
       <!-- define how we want compilation to take place
-           here, we accept most of the defaults but say that we want the
-           optimization flag set, and define the source and target to be 1.4,
-           these setting will be inherited by child projects -->
+        here, we accept most of the defaults but say that we want the
+        optimization flag set, and define the source and target to be 1.4,
+        these setting will be inherited by child projects -->
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <version>2.0</version>
-          <configuration>
-              <optimize>true</optimize>
-              <source>1.4</source>
-              <target>1.4</target>
-          </configuration>
+        <configuration>
+          <optimize>true</optimize>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
       </plugin>  
-
+      
       <!-- define that we wish to create src jars -->
       <plugin>
         <artifactId>maven-source-plugin</artifactId>
         <inherited>true</inherited>
-       <executions>
-        <execution>
-          <goals>
-            <goal>jar</goal>
-          </goals>
-        </execution>
-      </executions>
+        <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
       </plugin>     
       
       <!-- describe the jarring process -->
@@ -91,72 +92,70 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
         <executions>
-           <execution>
-              <goals>
-                 <goal>jar</goal>
-              </goals>
-           </execution>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
         </executions>
+        <!--
+          <configuration>
+          <jarName>jboss-xml-binding</jarName>
+          </configuration>
+        -->
+      </plugin>
+      
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-           <jarName>jboss-xml-binding</jarName>
+          <printSummary>true</printSummary>
+          <disableXmlReport>false</disableXmlReport>
+          <testFailureIgnore>true</testFailureIgnore>
+          <includes>
+            <include>**/**TestCase.java</include>
+          </includes>
+          <forkMode>pertest</forkMode> <!-- required to correctly run the PojoServer tests -->
         </configuration>
-     </plugin>
-
-      <plugin>
-         <artifactId>maven-surefire-plugin</artifactId>
-         <configuration>
-            <printSummary>true</printSummary>
-            <disableXmlReport>false</disableXmlReport>
-            <testFailureIgnore>true</testFailureIgnore>
-            <includes>
-               <include>**/**TestCase.java</include>
-            </includes>
-            <forkMode>pertest</forkMode> <!-- required to correctly run the PojoServer tests -->
-         </configuration>
       </plugin>    
       <plugin>
-         <groupId>org.apache.maven.plugins</groupId>
-         <artifactId>maven-surefire-report-plugin</artifactId>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
       </plugin>    
     </plugins>
   </build>
-
+  
   <dependencies>
     <dependency>
-      <groupId>jboss.logging</groupId>
+      <groupId>jboss</groupId>
       <artifactId>jboss-logging-spi</artifactId>
-      <version>1.0</version>
+      <version>2.0.2.GA</version>
+      <scope>compile</scope>
     </dependency>
     <dependency>
-      <groupId>jboss.logging.log4j</groupId>
+      <groupId>jboss</groupId>
       <artifactId>jboss-logging-log4j</artifactId>
-      <version>1.0</version>
+      <version>2.0.2.GA</version>
+      <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>jboss.common.core</groupId>
+      <groupId>jboss</groupId>
       <artifactId>jboss-common-core</artifactId>
-      <version>1.0</version>
+      <version>2.0.2.GA</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-test</artifactId>
+      <version>1.0.0.GA</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>oswego-concurrent</groupId>
       <artifactId>concurrent</artifactId>
       <version>1.3.4</version>
       <scope>compile</scope>
     </dependency> 
     <dependency>
-      <groupId>apache-slide</groupId>
-      <artifactId>webdavlib</artifactId>
-      <version>2.0</version>
-      <scope>compile</scope>
-    </dependency> 
-    <dependency>
-      <groupId>sun-jaf</groupId>
-      <artifactId>activation</artifactId>
-      <version>1.0.2</version>
-      <scope>compile</scope>
-    </dependency> 
-    <dependency>
       <groupId>apache-xerces</groupId>
       <artifactId>xercesImpl</artifactId>
       <version>2.7.1</version>
@@ -175,12 +174,18 @@
       <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>jboss.jboss-test</groupId>
-      <artifactId>jboss-test</artifactId>
-      <version>1.0.0.CR1</version>
-      <scope>test</scope>
-    </dependency>
+      <groupId>sun-jaf</groupId>
+      <artifactId>activation</artifactId>
+      <version>1.0.2</version>
+      <scope>compile</scope>
+    </dependency> 
   </dependencies>  
-
+  
+  <distributionManagement>
+    <repository>
+      <id>cvs-file-repository</id>
+      <!-- Set maven.cvs.root in your settings.xml -->
+      <url>file://${maven.cvs.root}</url>
+    </repository>
+  </distributionManagement>
 </project>
-




More information about the jboss-svn-commits mailing list