diff options
author | Michal Kordas <kontakt@michalkordas.com> | 2015-03-14 14:33:09 +0100 |
---|---|---|
committer | Michal Kordas <kontakt@michalkordas.com> | 2015-03-14 14:33:09 +0100 |
commit | 1fd31f137c3995d29a5be698c9919b6f764ba882 (patch) | |
tree | 95ca55922a28aacc053afa7bea211776ddc9ff9f /pom.xml | |
parent | 105a5f483f0bd8d6d097463ba1ff3a0ed73a8f39 (diff) | |
download | javassist-1fd31f137c3995d29a5be698c9919b6f764ba882.tar.gz javassist-1fd31f137c3995d29a5be698c9919b6f764ba882.zip |
Update maven-jar-plugin and maven-compiler-plugin to fix warning
The following warning when invoking `mvn versions:display-plugin-updates` does not appear anymore:
```
[WARNING] Some problems were encountered while building the effective model for org.javassist:javassist:bundle:3.19.0-GA
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 137, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 160, column 15
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
```
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -137,6 +137,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> <configuration> <source>1.6</source> <target>1.6</target> @@ -160,6 +161,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> + <version>2.6</version> <configuration> <archive> <manifestFile>${project.build.sourceDirectory}/META-INF/MANIFEST.MF</manifestFile> |