Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

(RC1) Maven users are recommended to depend on org.apache.wicket:wicket:pom from now on

To help migrate dependencies, you can add the following to give you an error if you are depending on the wicket:1.4:jar

Code Block

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-enforcer-plugin</artifactId>
    <version>1.0</version>
    <executions>
        <execution>
            <id>enforce</id>
            <goals><goal>enforce</goal></goals>
            <configuration>
                <rules>
                    <bannedDependencies>
                        <excludes>
                            <exclude>org.apache.wicket:wicket:*:jar</exclude>
                        </excludes>
                    </bannedDependencies>
                </rules>
                <fail>true</fail>
            </configuration>
        </execution>
    </executions>
</plugin>

(RC2) All standard (form) validators now extend Behavior.

...