Skip to content

Installation

Christian Kaltepoth edited this page Nov 1, 2022 · 8 revisions

Stable version

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! :)

Latest snapshots

<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>
Clone this wiki locally