You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2013/03/05 21:15:11 UTC

svn commit: r1452975 - /commons/proper/fileupload/trunk/pom.xml

Author: simonetripodi
Date: Tue Mar  5 20:15:10 2013
New Revision: 1452975

URL: http://svn.apache.org/r1452975
Log:
@trivial POM elements reordered according to http://maven.apache.org/developers/conventions/code.html, no functional modifications

Modified:
    commons/proper/fileupload/trunk/pom.xml

Modified: commons/proper/fileupload/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/pom.xml?rev=1452975&r1=1452974&r2=1452975&view=diff
==============================================================================
--- commons/proper/fileupload/trunk/pom.xml (original)
+++ commons/proper/fileupload/trunk/pom.xml Tue Mar  5 20:15:10 2013
@@ -16,25 +16,24 @@
  limitations under the License.
 -->
 <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>
+
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-parent</artifactId>
     <version>28</version>
   </parent>
-  <modelVersion>4.0.0</modelVersion>
+
   <groupId>commons-fileupload</groupId>
   <artifactId>commons-fileupload</artifactId>
   <version>2.0.0-SNAPSHOT</version>
+
   <name>Commons FileUpload</name>
   <description>
     The FileUpload component provides a simple yet flexible means of adding support for multipart
     file upload functionality to servlets and web applications.
   </description>
   <url>http://commons.apache.org/fileupload/</url>
-  <issueManagement>
-    <system>jira</system>
-    <url>http://issues.apache.org/jira/browse/FILEUPLOAD</url>
-  </issueManagement>
   <inceptionYear>2002</inceptionYear>
 
   <developers>
@@ -140,6 +139,11 @@
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk</developerConnection>
     <url>http://svn.apache.org/viewvc/commons/proper/fileupload/trunk</url>
   </scm>
+  <issueManagement>
+    <system>jira</system>
+    <url>http://issues.apache.org/jira/browse/FILEUPLOAD</url>
+  </issueManagement>
+
   <properties>
     <maven.compile.source>1.3</maven.compile.source>
     <maven.compile.target>1.3</maven.compile.target>
@@ -149,29 +153,7 @@
     <commons.jira.pid>12310476</commons.jira.pid>
     <commons.osgi.import>!javax.portlet,*</commons.osgi.import>
     <commons.osgi.dynamicImport>javax.portlet</commons.osgi.dynamicImport>
-  </properties> 
-
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-        <configuration>
-          <descriptors>
-            <descriptor>src/main/assembly/bin.xml</descriptor>
-            <descriptor>src/main/assembly/src.xml</descriptor>
-          </descriptors>
-          <tarLongFileMode>gnu</tarLongFileMode>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-release-plugin</artifactId>
-        <configuration>
-          <prepatationGoals>clean site verify</prepatationGoals>
-          <goals>deploy</goals>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
+  </properties>
 
   <dependencies>
     <dependency>
@@ -200,6 +182,28 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptors>
+            <descriptor>src/main/assembly/bin.xml</descriptor>
+            <descriptor>src/main/assembly/src.xml</descriptor>
+          </descriptors>
+          <tarLongFileMode>gnu</tarLongFileMode>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <prepatationGoals>clean site verify</prepatationGoals>
+          <goals>deploy</goals>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
   <reporting>
     <plugins>
       <plugin>
@@ -254,4 +258,5 @@
       </plugin>
     </plugins>
   </reporting>
+
 </project>