You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ftpserver-commits@incubator.apache.org by ng...@apache.org on 2007/07/29 20:53:12 UTC

svn commit: r560816 - /incubator/ftpserver/trunk/pom.xml

Author: ngn
Date: Sun Jul 29 13:53:11 2007
New Revision: 560816

URL: http://svn.apache.org/viewvc?view=rev&rev=560816
Log:
Updating a number of plugin versions

Modified:
    incubator/ftpserver/trunk/pom.xml

Modified: incubator/ftpserver/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ftpserver/trunk/pom.xml?view=diff&rev=560816&r1=560815&r2=560816
==============================================================================
--- incubator/ftpserver/trunk/pom.xml (original)
+++ incubator/ftpserver/trunk/pom.xml Sun Jul 29 13:53:11 2007
@@ -103,12 +103,13 @@
         <sourceDirectory>src/java</sourceDirectory>
         <testSourceDirectory>src/test</testSourceDirectory>
         <plugins>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-enforcer-plugin</artifactId>
-           	<executions>
-            	<execution>
-                <phase>validate</phase>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-enforcer-plugin</artifactId>
+            <version>1.0-alpha-2</version>
+             	<executions>
+              	<execution>
+                  <phase>validate</phase>
                 	<goals>
                     <goal>enforce</goal>
                   </goals>
@@ -126,7 +127,7 @@
         
             <plugin>
                 <artifactId>maven-surefire-plugin</artifactId>
-                <version>2.0</version>
+                <version>2.3.1-SNAPSHOT</version>
             </plugin>
             <plugin>
                 <artifactId>maven-eclipse-plugin</artifactId>
@@ -137,13 +138,14 @@
             </plugin>
             <plugin>
                 <artifactId>maven-release-plugin</artifactId>
+                <version>2.0-beta-5</version>
                 <configuration>
                     <tagBase>https://svn.apache.org/repos/asf/incubator/ftpserver/tags/</tagBase>
                 </configuration>
             </plugin>
             <plugin>
                 <artifactId>maven-remote-resources-plugin</artifactId>
-                <version>1.0-alpha-2</version>
+                <version>1.0-alpha-4</version>
                 <executions>
                     <execution>
                         <goals>
@@ -205,7 +207,7 @@
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>rat-maven-plugin</artifactId>
-                        <version>1.0-alpha-1-SNAPSHOT</version>
+                        <version>1.0-alpha-2</version>
                         <executions>
                             <execution>
                                 <phase>verify</phase>
@@ -242,11 +244,28 @@
             </pluginRepositories>
         </profile>
         <profile>
+            <id>snapshot</id>
+            <modules>
+                <module>ftplet-api</module>
+                <module>core</module>
+                <module>admin-gui</module>
+            </modules>
+            <distributionManagement>
+                <repository>
+                    <id>apache.snapshots</id>
+                    <name>Apache Development Snapshot Repository</name>
+                    <!-- <url>scp://people.apache.org/www/people.apache.org/repo/m2-incubating-repository/</url> -->
+                    <url>scp://people.apache.org/home/ngn/m2-incubating-repository/</url> 
+                </repository>
+            </distributionManagement>
+        </profile>
+        <profile>
             <id>rc</id>
             <build>
                 <plugins>
                     <plugin>
                         <artifactId>maven-gpg-plugin</artifactId>
+                        <version>1.0-alpha-3</version>
                         <executions>
                             <execution>
                                 <id>sign-artifacts</id>
@@ -259,7 +278,7 @@
                     </plugin>
                     <plugin>
                         <artifactId>maven-javadoc-plugin</artifactId>
-                        <version>2.2</version>
+                        <version>2.3</version>
                         <executions>
                             <execution>
                                 <id>create-javadoc-jar</id>
@@ -300,6 +319,7 @@
         <module>core</module>
         <module>admin-gui</module>
     </modules>
+
     <distributionManagement>
         <repository>
             <id>dummy</id>
@@ -307,6 +327,7 @@
             <url/>
         </repository>
     </distributionManagement>
+    
     <properties>
         <maven.compile.source>1.4</maven.compile.source>
         <maven.compile.target>1.4</maven.compile.target>
@@ -317,4 +338,17 @@
         <commons-logging-version>1.1</commons-logging-version>
         <junit-version>3.8.1</junit-version>
     </properties>
+    
+      <pluginRepositories>
+    <pluginRepository>
+      <id>apache Snapshots</id>
+      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </pluginRepository>
+  </pluginRepositories> 
 </project>