-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
Christian Kaltepoth edited this page Nov 1, 2022
·
8 revisions
Add the following dependencies to your pom.xml
:
<dependency>
<groupId>de.chkal.mvc-toolbox</groupId>
<artifactId>mvc-toolbox-core</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>de.chkal.mvc-toolbox</groupId>
<artifactId>mvc-toolbox-jsp</artifactId>
<version>2.1.0</version>
</dependency>
That's all! :)
<dependency>
<groupId>de.chkal.mvc-toolbox</groupId>
<artifactId>mvc-toolbox-core</artifactId>
<version>2.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>de.chkal.mvc-toolbox</groupId>
<artifactId>mvc-toolbox-jsp</artifactId>
<version>2.2.0-SNAPSHOT</version>
</dependency>
You will also have to add the Sonatype OSS Repository
to your pom.xml
to get the snapshots:
<repositories>
<repository>
<id>sonatype-oss-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
Intro
Core Module
JSP Tags
Development