Home | History | Annotate | Download | only in 3
      1 <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">
      2     <modelVersion>4.0.0</modelVersion>
      3     <groupId>org.sonatype.forge</groupId>
      4     <artifactId>forge-parent</artifactId>
      5     <packaging>pom</packaging>
      6     <version>3</version>
      7     <name>Sonatype Forge Parent Pom</name>
      8     <inceptionYear>2008</inceptionYear>
      9     <url>http://forge.sonatype.com/</url>
     10     <scm>
     11         <connection>scm:svn:http://svn.sonatype.org/forge/tags/forge-parent-3</connection>
     12         <url>http://svn.sonatype.org/forge/tags/forge-parent-3</url>
     13         <developerConnection>scm:svn:https://svn.sonatype.org/forge/tags/forge-parent-3</developerConnection>
     14     </scm>
     15  
     16 
     17     <properties>
     18       <forgeReleaseId>forge-releases</forgeReleaseId>
     19       <forgeReleaseUrl>http://repository.sonatype.org/content/repositories/releases</forgeReleaseUrl>
     20       <forgeSnapshotId>forge-snapshots</forgeSnapshotId>
     21       <forgeSnapshotUrl>http://repository.sonatype.org/content/repositories/snapshots</forgeSnapshotUrl>
     22     </properties>
     23     <distributionManagement>
     24         <repository>
     25             <id>${forgeReleaseId}</id>
     26             <url>${forgeReleaseUrl}</url>
     27         </repository>
     28         <snapshotRepository>
     29             <id>${forgeSnapshotId}</id>
     30             <url>${forgeSnapshotUrl}</url>
     31         </snapshotRepository>
     32     </distributionManagement>
     33     
     34     
     35     
     36     <build>
     37     <!--set the default plugin revs-->
     38         <pluginManagement>
     39             <plugins>
     40                <plugin>
     41                     <artifactId>maven-enforcer-plugin</artifactId>
     42                     <version>1.0-alpha-4-sonatype</version>
     43                 </plugin>
     44                 <plugin>
     45                     <artifactId>maven-eclipse-plugin</artifactId>
     46                     <version>2.4</version>
     47                 </plugin>
     48                 <plugin>
     49                     <artifactId>maven-surefire-plugin</artifactId>
     50                     <version>2.3</version>
     51                 </plugin>
     52                 <plugin>
     53                     <artifactId>maven-clean-plugin</artifactId>
     54                     <version>2.2</version>
     55                 </plugin>
     56                 <plugin>
     57                     <artifactId>maven-deploy-plugin</artifactId>
     58                     <version>2.3</version>
     59                 </plugin>
     60                 <plugin>
     61                     <artifactId>maven-dependency-plugin</artifactId>
     62                     <version>2.0</version>
     63                 </plugin>
     64                 <plugin>
     65                     <artifactId>maven-site-plugin</artifactId>
     66                     <version>2.0-beta-6</version>
     67                 </plugin>
     68                 <plugin>
     69                     <artifactId>maven-jar-plugin</artifactId>
     70                     <version>2.1</version>
     71                 </plugin>
     72                 <plugin>
     73                     <artifactId>maven-help-plugin</artifactId>
     74                     <version>2.0.2</version>
     75                 </plugin>                
     76                 <plugin>
     77                     <artifactId>maven-resources-plugin</artifactId>
     78                     <version>2.2</version>
     79                 </plugin>
     80                 <plugin>
     81                     <artifactId>maven-install-plugin</artifactId>
     82                     <version>2.2</version>
     83                 </plugin>
     84                 <plugin>
     85                     <groupId>org.apache.maven.plugins</groupId>
     86                     <artifactId>maven-compiler-plugin</artifactId>
     87                     <version>2.0.2</version>
     88                     <configuration>
     89                         <source>1.5</source>
     90                         <target>1.5</target>
     91                     </configuration>
     92                 </plugin>
     93                 <plugin>
     94                     <groupId>org.apache.maven.plugins</groupId>
     95                     <artifactId>maven-assembly-plugin</artifactId>
     96                     <version>2.2-beta-1</version>
     97                 </plugin>
     98             </plugins>
     99         </pluginManagement>
    100     </build>
    101     
    102     <reporting>
    103 		<plugins>
    104 			<plugin>
    105 				<groupId>org.codehaus.mojo</groupId>
    106 				<artifactId>cobertura-maven-plugin</artifactId>
    107 				<version>2.0</version>
    108 			</plugin>
    109             <plugin>
    110 				<groupId>org.codehaus.mojo</groupId>
    111 				<artifactId>findbugs-maven-plugin</artifactId>
    112 				<version>1.1.1</version>
    113                 <configuration>
    114                   <omitVisitors>UnreadFields</omitVisitors>
    115                 </configuration>
    116 			</plugin>
    117             <plugin>
    118 				<artifactId>maven-jxr-plugin</artifactId>
    119 				<version>2.0</version>
    120 			</plugin>
    121             <plugin>
    122 				<artifactId>maven-pmd-plugin</artifactId>
    123 				<version>2.3</version>
    124                 <configuration>
    125                   <targetJdk>1.5</targetJdk> 
    126                 </configuration>
    127 			</plugin>
    128 		</plugins>
    129         
    130 	</reporting>
    131 </project>