Wicket Bench

From LaughingPanda

Contents

Wicket Bench

Wicket Bench is an Eclipse plugin for Wicket.

Installation

Add following URL to Eclipse download manager (Help -> Software Updates -> Find and Install -> Search for new features to install)

http://www.laughingpanda.org/svn/wicket-bench/trunk/wicket-bench-site

Requirements for version 0.5.x:

  • Eclipse: 3.3
  • Wicket 1.3
  • Java: >= 5

Post Installation Steps

Add wicketbench.wicketnature nature and wicketbench.associatedMarkupAuditor builder for your Wicket project. This can be done from Properties -> Wicket, or if the .project and .classpath files are generated with maven:

Maven1 syntax:


maven.eclipse.projectnatures=wicketbench.wicketnature
maven.eclipse.buildcommands=wicketbench.associatedMarkupAuditor

Maven2 syntax:


<project>
  ...
  
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-eclipse-plugin</artifactId>
        <configuration>
          <additionalProjectnatures>
            <projectnature>wicketbench.wicketnature</projectnature>
          </additionalProjectnatures>
          <additionalBuildcommands>
            <buildcommand>wicketbench.associatedMarkupAuditor</buildcommand>
          </additionalBuildcommands>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

It is also necessary to setup proper file associations in eclipse options. Make sure you have an association for .html and .properties files, and that at least one editor is selected as default.

Features

Resources

Developers

  • Joni Freeman
  • Igor Vaynberg
  • Ville Peurala
  • Janne Hietamäki
  • Loren Rosen
  • Mikko Peltonen

Bugs/RFEs

Mailing lists

Version Control

License

Copyright © 2005 Wicket Bench developers

Wicket Bench is Licensed under the Apache License, Version 2.0. Please refer to the URL http://www.apache.org/licenses/LICENSE-2.0 for details.