avatar
Jakarta MVC 2.0 Released
posted by Ivar Grimstad on 2020-12-21

We are very proud to announce that Jakarta MVC 2.0 has been released. You can get the final version of the specification document and the final API docs on the specification page. All Maven artifacts are available in the Maven Central repository. This includes the API JAR the and final version of Eclipse Krazo.

If you want to learn more about Jakarta MVC 2.0, have a look at the Installation Guides which will teach you how to get started with your first Jakarta MVC 2.0 application.

If you are currently using an earlier version of the spec, just update your dependencies. Make sure you are running your application on a Jakarta EE 9 compatible implementation.

<dependency>
  <groupId>jakarta.mvc</groupId>
  <artifactId>jakarta.mvc-api</artifactId>
  <version>2.0.0</version>
</dependency>

<dependency>
    <groupId>org.eclipse.krazo</groupId>
    <artifactId>krazo-[jersey|resteasy|cxf]</artifactId>
    <version>2.0.0</version>
</dependency>