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/08/10 09:24:03 UTC

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

Author: ngn
Date: Fri Aug 10 02:24:02 2007
New Revision: 564525

URL: http://svn.apache.org/viewvc?view=rev&rev=564525
Log:
Updated enforcer to allow version 2.0.5 and 2.0.7 (FTPSERVER-104)

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=564525&r1=564524&r2=564525
==============================================================================
--- incubator/ftpserver/trunk/pom.xml (original)
+++ incubator/ftpserver/trunk/pom.xml Fri Aug 10 02:24:02 2007
@@ -103,28 +103,28 @@
         <sourceDirectory>src/java</sourceDirectory>
         <testSourceDirectory>src/test</testSourceDirectory>
         <plugins>
-          <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>
-                	<configuration>
-                   	<rules>
-                    <!-- Allow only Maven 2.0.5 -->
-                    	<requireMavenVersion>
-                        <version>[2.0.5,2.0.6)</version>
-                      </requireMavenVersion>
-                    </rules>
-                  </configuration>
-                </execution>
-              </executions>
+            <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>
+                        <configuration>
+                            <rules>
+                                <!-- Allow only Maven 2.0.5 and 2.0.7 -->
+                                <requireMavenVersion>
+                                    <version>[2.0.5],[2.0.7]</version>
+                                </requireMavenVersion>
+                            </rules>
+                        </configuration>
+                    </execution>
+                </executions>
             </plugin>
-        
+
             <plugin>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <version>2.3.1-SNAPSHOT</version>
@@ -255,7 +255,7 @@
                     <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> 
+                    <url>scp://people.apache.org/home/ngn/m2-incubating-repository/</url>
                 </repository>
             </distributionManagement>
         </profile>
@@ -327,28 +327,28 @@
             <url/>
         </repository>
     </distributionManagement>
-    
+
     <properties>
         <maven.compile.source>1.4</maven.compile.source>
         <maven.compile.target>1.4</maven.compile.target>
-        
+
         <mina-version>1.0.2</mina-version>
         <slf4j-version>1.3.0</slf4j-version>
         <log4j-version>1.2.13</log4j-version>
         <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> 
+
+    <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>