Skip to content

Instantly share code, notes, and snippets.

@ericglau
Last active December 3, 2021 16:39
Show Gist options
  • Save ericglau/8c2dc7fe284e2c67dc0b9bc69c4ab2e1 to your computer and use it in GitHub Desktop.
Save ericglau/8c2dc7fe284e2c67dc0b9bc69c4ab2e1 to your computer and use it in GitHub Desktop.
Use specific Open Liberty version with Liberty Maven Plugin
<properties>
<liberty.runtime.version>21.0.0.5</liberty.runtime.version>
</properties>
or
<build>
<plugins>
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.3.4</version>
<configuration>
<libertyRuntimeVersion>21.0.0.5</libertyRuntimeVersion>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment