MVN

wicket : wicket-quickstart

Maven & Gradle

Mar 23, 2008

Wicket Quickstart · Wicket Quickstart is designed to get you up and coding your Wicket applications within minutes. No more creating your own project and having to download dependencies yourself. This is an all-in-one package allowing you to concentrate on your application, and Quickstart on the project structure.

<dependency>
    <groupId>wicket</groupId>
    <artifactId>wicket-quickstart</artifactId>
    <version>1.2.7</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of wicket : wicket-quickstart to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.2.7

All Versions

Choose a version of wicket : wicket-quickstart to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.2.x
wicket-quickstart-1.2.7
wicket-quickstart-1.2.6
wicket-quickstart-1.2.1

How to add a dependency to Maven

Add the following wicket : wicket-quickstart maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>wicket</groupId>
    <artifactId>wicket-quickstart</artifactId>
    <version>1.2.7</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following wicket : wicket-quickstart gradle dependency to your build.gradle file:

implementation 'wicket:wicket-quickstart:1.2.7'

Gradle Kotlin DSL: Add the following wicket : wicket-quickstart gradle kotlin dependency to your build.gradle.kts file:

implementation("wicket:wicket-quickstart:1.2.7")

How to add a dependency to SBT Scala

SBT Scala: Add the following wicket : wicket-quickstart sbt scala dependency to your build.sbt file:

libraryDependencies += "wicket" % "wicket-quickstart" % "1.2.7"

Advertisement