Skip to content
Filipe Roque edited this page May 30, 2023 · 16 revisions

Welcome to the pm-wicket-utils wiki

pm-wicket-utils is a library with Wicket components, behaviours and some other stuff and this wiki describes each in detail.

Packages

  • [com.premiumminds.webapp.wicket.bootstrap](Bootstrap Package)
  • [com.premiumminds.webapp.wicket.drawer](Drawer Package)
  • [com.premiumminds.webapp.wicket.repeaters](Repeaters Package)
  • [com.premiumminds.webapp.wicket.testing](Testing Package)
  • [com.premiumminds.webapp.wicket.validators](Validators Package)

Documentation (SNAPSHOT)

Using SNAPSHOT version

Add the following maven dependency to your project pom.xml:

<dependency>
   <groupId>com.premiumminds</groupId>
   <artifactId>pm-wicket-utils</artifactId>
   <version>4.5-SNAPSHOT</version>
</dependency>

and you need to add this, as well:

<repositories>
  <repository>
     <id>premiumminds-nexus-snapshots</id>
     <name>premiumminds-nexus-snapshots</name>
     <url>https://oss.sonatype.org/content/repositories/snapshots</url>
     <snapshots>
        <enabled>true</enabled>
     </snapshots>
   </repository>
</repositories>
Clone this wiki locally