You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2006/01/22 14:03:47 UTC

svn commit: r371283 - in /myfaces/core/trunk: assembly/pom.xml pom.xml

Author: bommel
Date: Sun Jan 22 05:03:43 2006
New Revision: 371283

URL: http://svn.apache.org/viewcvs?rev=371283&view=rev
Log:
added deploy wagon maven plugin 
changed all assembly poms 
you can used it with  
mvn assembly:assembly org.apache.myfaces.maven:wagon-maven-plugin:deploy

Modified:
    myfaces/core/trunk/assembly/pom.xml
    myfaces/core/trunk/pom.xml

Modified: myfaces/core/trunk/assembly/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/core/trunk/assembly/pom.xml?rev=371283&r1=371282&r2=371283&view=diff
==============================================================================
--- myfaces/core/trunk/assembly/pom.xml (original)
+++ myfaces/core/trunk/assembly/pom.xml Sun Jan 22 05:03:43 2006
@@ -1,8 +1,6 @@
 <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>nightly</groupId>
   <artifactId>myfaces-core-assembly</artifactId>
   <packaging>pom</packaging>
   <name>Core Assembly</name>
@@ -22,23 +20,6 @@
     <url>http://svn.apache.org/viewcvs.cgi/myfaces/core/trunk/assembly</url>
   </scm>
 
-  <distributionManagement>
-<!--
-    <repository>
-      <id>apache-maven</id>
-      <name>Apache Maven Repository</name>
-      <url>scpexe://people.apache.org/www/www.apache.org/dist/maven-repository</url>
-    </repository>
--->
-    <snapshotRepository>
-      <uniqueVersion>false</uniqueVersion>
-      <id>myfaces-nightly-builds</id>
-      <name>Apache My Faces Nightly Builds</name>
-      <url>scpexe://minotaur.apache.org/www/cvs.apache.org/builds/myfaces/</url>
-    </snapshotRepository>
-  </distributionManagement>
-
-
   <build>
 
     <plugins>
@@ -46,6 +27,7 @@
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>dependency-maven-plugin</artifactId>
         <executions>
+
           <execution>
             <id>copy-javadoc</id>
             <phase>package</phase>
@@ -137,8 +119,19 @@
         <configuration>
           <descriptor>src/main/assembly/dep.xml</descriptor>
           <finalName>myfaces-core-${version}</finalName>
-          <outputDirectory>target</outputDirectory>
+          <outputDirectory>target/assembly/out</outputDirectory>
           <workDirectory>target/assembly/work</workDirectory>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.myfaces.maven</groupId>
+        <artifactId>wagon-maven-plugin</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <configuration>
+          <id>myfaces-nightly-builds</id>
+          <url>scpexe://minotaur.apache.org/www/cvs.apache.org/builds/myfaces/</url>
+          <inputDirectory>target/assembly/out</inputDirectory>
         </configuration>
       </plugin>
 

Modified: myfaces/core/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/core/trunk/pom.xml?rev=371283&r1=371282&r2=371283&view=diff
==============================================================================
--- myfaces/core/trunk/pom.xml (original)
+++ myfaces/core/trunk/pom.xml Sun Jan 22 05:03:43 2006
@@ -32,5 +32,4 @@
     <module>impl</module>
   </modules>
 
-
 </project>