You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by fe...@apache.org on 2011/10/09 15:48:11 UTC

svn commit: r1180613 - /james/trunk/sandbox/felixk/james-parent/pom.xml

Author: felixk
Date: Sun Oct  9 13:48:10 2011
New Revision: 1180613

URL: http://svn.apache.org/viewvc?rev=1180613&view=rev
Log:
Working on sample james-parent.pom

Modified:
    james/trunk/sandbox/felixk/james-parent/pom.xml

Modified: james/trunk/sandbox/felixk/james-parent/pom.xml
URL: http://svn.apache.org/viewvc/james/trunk/sandbox/felixk/james-parent/pom.xml?rev=1180613&r1=1180612&r2=1180613&view=diff
==============================================================================
--- james/trunk/sandbox/felixk/james-parent/pom.xml (original)
+++ james/trunk/sandbox/felixk/james-parent/pom.xml Sun Oct  9 13:48:10 2011
@@ -17,6 +17,9 @@
   specific language governing permissions and limitations
   under the License.    
 -->
+<!-- 
+  Ordering of tags is following mostly the model description on http://maven.apache.org/ref/3.0.3/maven-model/maven.html
+ -->
 <project
     xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -311,10 +314,11 @@
     </distributionManagement>
 
     <properties>
+        <!-- The target JDK version for James projects using this parent pom-->
+        <target.jdk>1.6</target.jdk>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <maven-site-plugin.siteDirectory>${basedir}/src/site</maven-site-plugin.siteDirectory>
         <maven-site-plugin.generateReports>false</maven-site-plugin.generateReports>
-        <target.jdk>1.6</target.jdk>
     </properties>
 
     <dependencyManagement>
@@ -326,6 +330,18 @@
     </dependencies>
 
     <repositories>
+        <!-- JBoss.org repository - required for APIviz Javadoc build -->
+        <repository>
+            <id>jboss.releases</id>
+            <name>JBoss releases</name>
+            <url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
     </repositories>
 
     <pluginRepositories>
@@ -348,22 +364,22 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-jar-plugin</artifactId>
-                    <version>2.3.1</version>
+                    <version>2.3.2</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-assembly-plugin</artifactId>
-                    <version>2.2</version>
+                    <version>2.2.1</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.felix</groupId>
                     <artifactId>maven-bundle-plugin</artifactId>
-                    <version>2.3.4</version>
+                    <version>2.3.5</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-surefire-plugin</artifactId>
-                    <version>2.7.2</version>
+                    <version>2.10</version>
                     <configuration>
                         <aggregate>true</aggregate>
                     </configuration>
@@ -443,6 +459,19 @@
                                 <groupId>org.codehaus.mojo</groupId>
                                 <artifactId>findbugs-maven-plugin</artifactId>
                             </plugin>
+                            <plugin>
+                                <groupId>org.codehaus.mojo</groupId>
+                                <artifactId>versions-maven-plugin</artifactId>
+                                <reportSets>
+                                    <reportSet>
+                                        <reports>
+                                            <report>dependency-updates-report</report>
+                                            <report>plugin-updates-report</report>
+                                            <report>property-updates-report</report>
+                                        </reports>
+                                    </reportSet>
+                                </reportSets>
+                            </plugin>
                             <!--
                             <plugin>
                               <groupId>org.apache.maven.plugins</groupId>
@@ -468,12 +497,12 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-project-info-reports-plugin</artifactId>
-                    <version>2.3.1</version>
+                    <version>2.4</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-jxr-plugin</artifactId>
-                    <version>2.2</version>
+                    <version>2.3</version>
                     <configuration>
                         <aggregate>true</aggregate>
                     </configuration>
@@ -481,7 +510,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-surefire-report-plugin</artifactId>
-                    <version>2.7.2</version>
+                    <version>2.10</version>
                     <configuration>
                         <forkMode>pertest</forkMode>
                         <argLine>-Xms256m -Xmx512m</argLine>
@@ -513,7 +542,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-changes-plugin</artifactId>
-                    <version>2.4</version>
+                    <version>2.6</version>
                     <configuration>
                         <onlyCurrentVersion>true</onlyCurrentVersion>
                         <resolutionIds>Fixed</resolutionIds>
@@ -601,6 +630,11 @@
                         </excludes>
                     </configuration>
                 </plugin>
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>versions-maven-plugin</artifactId>
+                    <version>1.2</version>
+                </plugin>
             </plugins>
         </pluginManagement>
     </build>



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org