Skip to content

Commit

Permalink
Resolved Maven 3.0 warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
codeconsole committed Jan 27, 2011
1 parent 45b9965 commit 4b25cb3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
15 changes: 13 additions & 2 deletions pom.xml
Expand Up @@ -65,8 +65,10 @@
</snapshotRepository>
</distributionManagement>

<!-- Support for Google App Engine -->
<properties>
<gae.version>1.4.0</gae.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
Expand All @@ -77,6 +79,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
Expand All @@ -87,18 +90,21 @@
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>7.2.2.v20101205</version>
</plugin>

<!-- Google Appengine plugin. Allows quick testing via: mvn package gae:run -->
<!-- Google App Engine plugin. Allows quick testing via: mvn package gae:run -->
<plugin>
<groupId>net.kindleit</groupId>
<artifactId>maven-gae-plugin</artifactId>
<version>0.8.1</version>
</plugin>

<!-- Tomcat plugin. Allows quick testing via: mvn tomcat:run -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.1</version>
<configuration>
<path>/</path>
</configuration>
Expand All @@ -112,25 +118,30 @@

<!-- Test results report -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.7.2</version>
</plugin>

<!-- JXR source reference report -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
<version>2.0-beta-1</version>
</plugin>

<!-- Cobertura code coverage report -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.4</version>
</plugin>

<!-- PMD/CPD report -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
<configuration>
<targetJdk>1.5</targetJdk>
</configuration>
Expand All @@ -140,7 +151,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.0.1</version>
<version>2.3.1</version>
</plugin>

</plugins>
Expand Down
3 changes: 3 additions & 0 deletions sitemesh/pom.xml
Expand Up @@ -42,6 +42,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-source</id>
Expand All @@ -56,6 +57,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifest>
Expand All @@ -69,6 +71,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<includes>
<include>**/*Test.java</include>
Expand Down

0 comments on commit 4b25cb3

Please sign in to comment.