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://wicket-rad.sourceforge.net/repo</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> You will also need to add the dependency, which will look like this if you want to use both wicket-rad-core and wicket-rad-jpa: <dependency> <groupId>org.wicketrad.jpa</groupId> <artifactId>wicket-rad-jpa</artifactId> <version>0.5</version> </dependency> Or like this if you only want wicket-rad-core: <dependency> <groupId>org.wicketrad</groupId> <artifactId>wicket-rad-core</artifactId> <version>0.5</version> </dependency> |