Wicket in Action

Wicket Security: WASP and SWARM 1.4 released!

31 May 2010, by dashorst

We are proud to release Wicket Security 1.4 final.

Wicket Security is an attempt to create an out of the box reusable authenticating and authorization framework for Apache Wicket. It contains several projects which can be used standalone or in conjunction with each other.

After testing the codebase for a while we did not find any issues.

Differences between the 1.4-rc1 release:

  • upgraded dependencies to newest working versions (JUnit 4.x does not work with Spring)
  • versioned maven plugins to appease the Maven 3 gods.

Many thanks go to Olger Warnier for the initial port of Wicket Security to Wicket 1.4.

The release is available from the Wicket Stuff maven repository.

If you already depend on Wicket Security, all you need to do is modify the version of your dependencies in your Maven poms:

	<repository>
		<id>wicketstuff</id>
		<url>http://wicketstuff.org/maven/repository</url>
		<snapshots>
			<enabled>true</enabled>
		</snapshots>
		<releases>
			<enabled>true</enabled>
		</releases>
	</repository>

	<dependency>
		<groupId>org.apache.wicket.wicket-security</groupId>
		<artifactId>swarm</artifactId>
		<version>1.4</version>
		<scope>compile</scope>
	</dependency>

Note that with future releases we will move to a new groupId and package name (since org.apache.wicket is reserved for Apache Wicket, and not 3rd party projects).

The future of the Wicket Security project is to remain a standalone project (it will not be adopted by Apache Wicket), and will continue to be maintained by Topicus. If you wish to join please let us know!

Emond & Martijn

-->