Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: upgrade to 1.3 beta4

...

Panel

mvn archetype:create -DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=1.3.0-beta3beta4
-DgroupId=com.mycompany
-DartifactId=myproject

...

At present, running mvn package or mvn install will result in a NPE from the Surefire (testing) plugin as the generated pom.xml has no dependancy dependency on either JUnit or TestNG, which the plugin appears to expect if a src/test/java path is present. To avoid this issue, simply add the following to the <dependancies> section of the pom.xml.

...