Fixed toolchain build before release
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/747f8918 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/747f8918 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/747f8918 Branch: refs/heads/wicket-6.x Commit: 747f8918fe7fa75760ceda70d2263f33433bc31c Parents: fe2a75f Author: Martijn Dashorst <[email protected]> Authored: Tue Jun 9 16:11:38 2015 +0200 Committer: Martijn Dashorst <[email protected]> Committed: Tue Jun 9 17:14:19 2015 +0200 ---------------------------------------------------------------------- pom.xml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/747f8918/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 197152a..8ff21bd 100644 --- a/pom.xml +++ b/pom.xml @@ -673,6 +673,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> + <source>${maven.compiler.source}</source> + <target>${maven.compiler.target}</target> <optimize>true</optimize> <debug>true</debug> </configuration> @@ -945,6 +947,25 @@ <ignore /> </action> </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId> + org.codehaus.mojo + </groupId> + <artifactId> + clirr-maven-plugin + </artifactId> + <versionRange> + [2.6.1,) + </versionRange> + <goals> + <goal>check</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration>
