How to add a dependency to Maven
Add the following org.wicketeer : wicket-modelfactory maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>org.wicketeer</groupId>
<artifactId>wicket-modelfactory</artifactId>
<version>6.9.17</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following org.wicketeer : wicket-modelfactory gradle dependency to your build.gradle
file:
implementation 'org.wicketeer:wicket-modelfactory:6.9.17'
Gradle Kotlin DSL: Add the following org.wicketeer : wicket-modelfactory gradle kotlin dependency to your build.gradle.kts
file:
implementation("org.wicketeer:wicket-modelfactory:6.9.17")
How to add a dependency to SBT Scala
SBT Scala: Add the following org.wicketeer : wicket-modelfactory sbt scala dependency to your build.sbt
file:
libraryDependencies += "org.wicketeer" % "wicket-modelfactory" % "6.9.17"