Source downloads can be found on the SourceForge page. Binary distribution via Maven 2 To use the binary distribution from our Maven repository, you will need to add a section that will look something like this: <repositories> <repository> <id>wicketrad</id> <url>http://recursivity.s3.amazonaws.com/repo/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> ike this if you only want wicket-rad-core: <dependency> <groupId>org.wicketrad</groupId> <artifactId>wicket-rad-core</artifactId> <version>0.11</version> </dependency> If you want the wicket-jpa utilities, you need to add this: <dependency> <groupId>org.wicketrad.jpa</groupId> <artifactId>wicket--jpa</artifactId> <version>0.11</version> </dependency> |