Enterprise Java

Jakarta EE 9.1 is RELEASED!

Join us in celebrating a new release of Jakarta EE!

The Jakarta EE Working Group Releases Jakarta EE 9.1 as Industry Continues to Embrace Open Source Enterprise Java! Jakarta EE 9.1 adds support for Java SE 11 runtimes to the foundational Jakarta EE 9 release. This gives developers more flexibility when migrating from previous Jakarta EE releases.

In order to upgrade to the new version, simply change the dependency version in your pom.xml to 9.1.0. If you are upgrading from a version prior to Jakarta EE 9, follow the migration steps for the namespace change from javax.* to jakarta.*.

Maven dependency for Jakarta EE Platform 9.1

<dependency≶
  <groupId≶jakarta.platform</groupId≶
  <artifactId≶jakarta.jakartaee-api</artifactId≶
  <version≶9.1.0</version≶
</dependency≶

Maven dependency for Jakarta EE Web Profile 9.1

<dependency≶
  <groupId≶jakarta.platform</groupId≶
  <artifactId≶jakarta.jakartaee-web-api</artifactId≶
  <version≶9.1.0</version≶
</dependency≶

Published on Java Code Geeks with permission by Ivar Grimstad, partner at our JCG program. See the original article here: Jakarta EE 9.1 is RELEASED!

Opinions expressed by Java Code Geeks contributors are their own.

Ivar Grimstad

Ivar Grimstad is an experienced software architect focusing on Enterprise Java. He is participating in the Java Community Process as a member of the Expert Groups for JSR 368 (JMS 2.1), JSR 371 (MVC 1.0), JSR 375 (Java EE Security API). He is also a member of the NetBeans Dream Team.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button