Repository: archiva-redback-core Updated Branches: refs/heads/master 3d266df48 -> e2909f295
[MRM-1827] Redback core fail with jdk 1.7 (compiler target 1.7) use new bcel 6.0 Project: http://git-wip-us.apache.org/repos/asf/archiva-redback-core/repo Commit: http://git-wip-us.apache.org/repos/asf/archiva-redback-core/commit/e2909f29 Tree: http://git-wip-us.apache.org/repos/asf/archiva-redback-core/tree/e2909f29 Diff: http://git-wip-us.apache.org/repos/asf/archiva-redback-core/diff/e2909f29 Branch: refs/heads/master Commit: e2909f295665a6de9311a8f33bc79230fe5190c9 Parents: 3d266df Author: olivier lamy <[email protected]> Authored: Wed Jul 20 23:37:47 2016 +0200 Committer: olivier lamy <[email protected]> Committed: Wed Jul 20 23:37:47 2016 +0200 ---------------------------------------------------------------------- pom.xml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/archiva-redback-core/blob/e2909f29/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 5bab187..4a440bd 100644 --- a/pom.xml +++ b/pom.xml @@ -101,7 +101,6 @@ <enabled>true</enabled> </snapshots> </repository> - <repository> <id>apache.snapshots</id> <url>https://repository.apache.org/content/groups/snapshots-group</url> @@ -112,7 +111,6 @@ <enabled>true</enabled> </snapshots> </repository> - </repositories> <pluginRepositories> @@ -682,20 +680,26 @@ <build> <pluginManagement> <plugins> - <!-- due to issue with bcel using 1.7 as target doesn't work --> - <!-- http://jira.codehaus.org/browse/MRM-1827 --> + <!-- https://issues.apache.org/jira/browse/MRM-1827 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> - <source>1.6</source> - <target>1.6</target> + <source>1.7</source> + <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jpox-maven-plugin</artifactId> <version>1.1.7</version> + <dependencies> + <dependency> + <groupId>org.apache.bcel</groupId> + <artifactId>bcel</artifactId> + <version>6.0</version> + </dependency> + </dependencies> </plugin> <plugin> <groupId>org.codehaus.modello</groupId>
