diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-04-20 16:32:41 +0400 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-04-21 01:29:56 +0400 |
commit | 9b4abb9191c24ea7f36b274bd71da3ca0934f189 (patch) | |
tree | f730ad34a2ce94037b8605e299f3c3c94e8ca09b | |
parent | fdf6f4dcc2a4ee620dde9cdb5e2909ec4bd8c7f9 (diff) | |
download | sonarqube-9b4abb9191c24ea7f36b274bd71da3ca0934f189.tar.gz sonarqube-9b4abb9191c24ea7f36b274bd71da3ca0934f189.zip |
Update some Maven plugins to latest versions for thread safety
* maven-assembly-plugin 2.2.1
* maven-plugin-plugin 2.7
* maven-antrun-plugin 1.6
* maven-war-plugin 2.1.1
-rw-r--r-- | pom.xml | 16 | ||||
-rw-r--r-- | sonar-application/pom.xml | 1 | ||||
-rw-r--r-- | sonar-server/pom.xml | 1 |
3 files changed, 13 insertions, 5 deletions
@@ -117,9 +117,10 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> - <version>1.3</version> + <version>1.6</version> </plugin> <plugin> + <!-- not thread safe --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-archetype-plugin</artifactId> <version>2.0-alpha-4</version> @@ -127,7 +128,7 @@ <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.maven.plugins</groupId> @@ -140,6 +141,7 @@ <version>2.3.2</version> </plugin> <plugin> + <!-- not thread safe --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.1</version> @@ -150,6 +152,7 @@ <version>2.5</version> </plugin> <plugin> + <!-- not thread safe --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0</version> @@ -160,6 +163,7 @@ <version>2.6</version> </plugin> <plugin> + <!-- not thread safe --> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>1.2</version> @@ -192,7 +196,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> - <version>2.4</version> + <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -225,6 +229,12 @@ <version>2.6</version> </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <version>2.1.1</version> + </plugin> + <plugin> + <!-- not thread safe --> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-dev-maven-plugin</artifactId> <version>1.2</version> diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml index e5290ef4ca3..02fdc544bc6 100644 --- a/sonar-application/pom.xml +++ b/sonar-application/pom.xml @@ -14,7 +14,6 @@ <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> - <version>2.2</version> <executions> <execution> <phase>package</phase> diff --git a/sonar-server/pom.xml b/sonar-server/pom.xml index 40f8da7f194..5927afa3eae 100644 --- a/sonar-server/pom.xml +++ b/sonar-server/pom.xml @@ -313,7 +313,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> - <version>2.1-beta-1</version> <configuration> <packagingExcludes> **/*.log,*.iml,WEB-INF/script/,WEB-INF/test/ |