Updated Branches: refs/heads/master b227e3cbf -> 1ce0000ab
Make wicket-cdi check against 6.1.0 instead of 6.0.0 The Wicket API is fixed and should remain binary compatible. This also holds true for CDI and it was configured to check itself against 6.0.0 (which is the default for all projects in Wicket). However, CDI was not introduced until 6.1.0, so we should actually check for this particular library against 6.1.0. Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/1ce0000a Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/1ce0000a Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/1ce0000a Branch: refs/heads/master Commit: 1ce0000abdd12fbcaacb5585f591d5ccce7910a6 Parents: b227e3c Author: Martijn Dashorst <[email protected]> Authored: Fri Dec 14 15:55:45 2012 +0100 Committer: Martijn Dashorst <[email protected]> Committed: Fri Dec 14 15:55:45 2012 +0100 ---------------------------------------------------------------------- wicket-cdi/pom.xml | 58 +++++++++++++++++++++++++++++++++------------- 1 files changed, 41 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/1ce0000a/wicket-cdi/pom.xml ---------------------------------------------------------------------- diff --git a/wicket-cdi/pom.xml b/wicket-cdi/pom.xml index 8334849..1a9e4f5 100644 --- a/wicket-cdi/pom.xml +++ b/wicket-cdi/pom.xml @@ -1,21 +1,16 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> -<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/maven-v4_0_0.xsd"> +<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor + license agreements. See the NOTICE file distributed with this work for additional + information regarding copyright ownership. The ASF licenses this file to + You under the Apache License, Version 2.0 (the "License"); you may not use + this file except in compliance with the License. You may obtain a copy of + the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required + by applicable law or agreed to in writing, software distributed under the + License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS + OF ANY KIND, either express or implied. See the License for the specific + language governing permissions and limitations under the License. --> +<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.wicket</groupId> @@ -53,4 +48,33 @@ <scope>test</scope> </dependency> </dependencies> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>clirr-maven-plugin</artifactId> + <executions> + <execution> + <id>clirr-check</id> + <phase>compile</phase> + <goals> + <goal>check</goal> + </goals> + <configuration> + <comparisonVersion>6.1.0</comparisonVersion> + <failOnError>true</failOnError> + <logResults>true</logResults> + </configuration> + </execution> + </executions> + <configuration> + <comparisonVersion>6.1.0</comparisonVersion> + <failOnError>true</failOnError> + <logResults>true</logResults> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> </project>
