diff options
author | Glenn Adams <gadams@apache.org> | 2016-03-13 01:32:45 +0000 |
---|---|---|
committer | Glenn Adams <gadams@apache.org> | 2016-03-13 01:32:45 +0000 |
commit | 56a5fe00c829a616178a2b95f371577fa4ff6db1 (patch) | |
tree | d39218e04ccfc20e66ddf7a52dee82c96233f997 /pom.xml | |
parent | 6a719897d6f98ba89aa08e2f97b2b801be066cbf (diff) | |
download | xmlgraphics-fop-56a5fe00c829a616178a2b95f371577fa4ff6db1.tar.gz xmlgraphics-fop-56a5fe00c829a616178a2b95f371577fa4ff6db1.zip |
Fixups for ant targets, checkstyle, findbugs.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/maven@1734752 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 24 |
1 files changed, 21 insertions, 3 deletions
@@ -13,13 +13,13 @@ <antrun.plugin.version>1.8</antrun.plugin.version> <avalon.version>4.3.1</avalon.version> <batik.version>1.9.0-SNAPSHOT</batik.version> - <build.helper.plugin.version>1.10</build.helper.plugin.version> - <checkstyle.plugin.version>2.15</checkstyle.plugin.version> + <build.helper.plugin.version>1.9.1</build.helper.plugin.version> + <checkstyle.plugin.version>2.14</checkstyle.plugin.version> <commons.io.version>1.3.1</commons.io.version> <commons.logging.version>1.0.4</commons.logging.version> <compiler.plugin.version>3.1</compiler.plugin.version> <exec.plugin.version>1.4.0</exec.plugin.version> - <findbugs.plugin.version>3.0.1</findbugs.plugin.version> + <findbugs.plugin.version>2.5.5</findbugs.plugin.version> <jar.plugin.version>2.6</jar.plugin.version> <java.version>1.6</java.version> <junit.version>4.11</junit.version> @@ -62,6 +62,11 @@ <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>${checkstyle.plugin.version}</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler.plugin.version}</version> <configuration> @@ -98,10 +103,23 @@ <repository> <id>apache.snapshots.https</id> <url>https://repository.apache.org/content/repositories/snapshots</url> + <releases> + <enabled>false</enabled> + </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> + <repository> + <id>apache.releases.https</id> + <url>https://repository.apache.org/content/repositories/releases</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> </repositories> <distributionManagement> |