[jboss-cvs] JBossAS SVN: r72371 - projects/maven/plugins/deployer/trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 17 11:30:16 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-04-17 11:30:15 -0400 (Thu, 17 Apr 2008)
New Revision: 72371

Modified:
   projects/maven/plugins/deployer/trunk/pom.xml
Log:
deploy ok

Modified: projects/maven/plugins/deployer/trunk/pom.xml
===================================================================
--- projects/maven/plugins/deployer/trunk/pom.xml	2008-04-17 15:26:18 UTC (rev 72370)
+++ projects/maven/plugins/deployer/trunk/pom.xml	2008-04-17 15:30:15 UTC (rev 72371)
@@ -6,10 +6,26 @@
   <groupId>org.jboss.maven.plugins</groupId>
   <artifactId>maven-deployer-plugin</artifactId>
   <packaging>maven-plugin</packaging>
+  
   <url>http://maven.apache.org</url>
   
   <version>1.0-SNAPSHOT</version>
   
+  <!-- License -->
+  <licenses>
+    <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+    </license>
+  </licenses>
+  
+  <!-- Organization -->
+  <organization>
+    <name>JBoss, a division of Red Hat, Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+  
+  <!-- Properties -->
   <properties>
     <maven.artifact>2.0.9</maven.artifact>
     <maven.assembly.plugin>2.1</maven.assembly.plugin>
@@ -17,10 +33,10 @@
     <maven.plugin.api>2.0.9</maven.plugin.api>
     <maven.plugin.testing.harness>1.1</maven.plugin.testing.harness>
     <maven.project>2.0.9</maven.project>
-    
     <surefire.jvm.args>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jvm.args>
   </properties>
   
+  <!-- Dependencies -->
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>
@@ -47,8 +63,7 @@
       <artifactId>maven-dependency-plugin</artifactId>
       <version>${maven.dependency.plugin}</version>
     </dependency>
-    
-    <!-- test dependencies -->
+    <!-- Test Dependencies -->
     <dependency>
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-plugin-testing-harness</artifactId>
@@ -57,6 +72,7 @@
     </dependency>
   </dependencies>
   
+  <!-- Plugins -->
   <build>
     <plugins>
       <plugin>
@@ -77,4 +93,21 @@
     </plugins>
   </build>
   
+  <!-- DistributionManagement -->
+  <distributionManagement>
+    <repository>
+      <!-- 
+        Copy the distribution jar file to a local checkout of the maven repository 
+        This variable can be set in $MAVEN_HOME/conf/settings.xml 
+      -->
+      <id>repository.jboss.org</id>
+      <url>file://${maven.repository.root}</url>
+    </repository>
+    <snapshotRepository>
+      <id>snapshots.jboss.org</id>
+      <name>JBoss Snapshot Repository</name>
+      <url>dav:https://snapshots.jboss.org/maven2</url>
+    </snapshotRepository>
+  </distributionManagement>
+  
 </project>




More information about the jboss-cvs-commits mailing list