Skip to content

Latest commit

 

History

History
236 lines (188 loc) · 7.5 KB

ga-release-post.adoc

File metadata and controls

236 lines (188 loc) · 7.5 KB
layout title categories author_picture author_github seo-title seo-description blog_description open-graph-image
post
TITLE
blog
TITLE - makes sure it ends with - OpenLiberty.io
DESCRIPTION
DESCRIPTION

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