diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2012-11-05 13:58:18 +0200 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2012-11-05 13:58:18 +0200 |
commit | 363b2b093ccecfc75fd28f49ca2aa139bbc6d1ce (patch) | |
tree | 5e0dd12fd56b8ab5819c6a3449738d74fad12059 /pom.xml | |
parent | 112b73f4eac7fbac80033589a17571198ec6133d (diff) | |
download | pf4j-363b2b093ccecfc75fd28f49ca2aa139bbc6d1ce.tar.gz pf4j-363b2b093ccecfc75fd28f49ca2aa139bbc6d1ce.zip |
it seems to me that properties-maven-plugin doesn't work with maven 3
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 62 |
1 files changed, 32 insertions, 30 deletions
@@ -2,10 +2,10 @@ <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/xsd/maven-4.0.0.xsd"> <parent> - <groupId>org.sonatype.oss</groupId> - <artifactId>oss-parent</artifactId> - <version>7</version> - </parent> + <groupId>org.sonatype.oss</groupId> + <artifactId>oss-parent</artifactId> + <version>7</version> + </parent> <modelVersion>4.0.0</modelVersion> <groupId>ro.fortsoft.pf4j</groupId> @@ -48,28 +48,30 @@ </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.8</version> + <executions> + <execution> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>2.2</version> + <executions> + <execution> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -89,15 +91,15 @@ <plugin> <artifactId>maven-jar-plugin</artifactId> - <version>2.3.1</version> - </plugin> + <version>2.4</version> + </plugin> </plugins> </build> <modules> - <module>pf4j</module> - <module>demo</module> - </modules> + <module>pf4j</module> + <module>demo</module> + </modules> <profiles> <profile> |