Skip to content

Latest commit

 

History

History
236 lines (188 loc) · 7.5 KB

File metadata and controls

236 lines (188 loc) · 7.5 KB
layout post
title TITLE
categories blog
author_picture https://avatars3.githubusercontent.com/GITHUB_USERNAME
author_github https://github.com/GITHUB_USERNAME
seo-title TITLE - makes sure it ends with - OpenLiberty.io
seo-description DESCRIPTION
blog_description DESCRIPTION
open-graph-image https://openliberty.io/img/twitter_card.jpg

TITLE

Run your apps using RELEASE_VERSION

If you’re using Maven, here are the coordinates:

<dependency>
    <groupId>io.openliberty</groupId>
    <artifactId>openliberty-runtime</artifactId>
    <version>RELEASE_VERSION</version>
    <type>zip</type>
</dependency>

Or for Gradle:

dependencies {
    libertyRuntime group: 'io.openliberty', name: 'openliberty-runtime', version: '[RELEASE_VERSION,)'
}

Or if you’re using Docker:

FROM open-liberty

Or take a look at our Downloads page.

Ask a question on Stack Overflow

FEATURE_1_HEADING

Add the feature to the server.xml:

<server>
  <featureManager>
    <feature>FEATURE</feature>
  </featureManager>
</server>

FEATURE_2_TITLE

SUB_FEATURE_1_TITLE

Add the feature to the server.xml:

<server>
  <featureManager>
    <feature>FEATURE</feature>
  </featureManager>
</server>

SUB_FEATURE_2_TITLE

Add the feature to the server.xml:

<server>
  <featureManager>
    <feature>FEATURE</feature>
  </featureManager>
</server>

FEATURE_3_TITLE

For more details, check the LINK[LINK_DESCRIPTION].

Notable bugs fixed in this release

We’ve spent some time fixing bugs. The following sections describe just some of the issues resolved in this release. If you’re interested, here’s the full list of bugs fixed in RELEASE_VERSION.

Get Open Liberty RELEASE_VERSION now