I have read number of articles on adding OpenLiberty plugin or dependency to Spring Boot app. For example https://www.baeldung.com/java-open-liberty
I tried all the suggestions but without success.
What I did so far?
I added plugin to the section of my pom.xml file:
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.5.1</version>
</plugin>
I also tried couple of different versions but all I get is
Cannot resolve plugin io.openliberty.tools:liberty-maven-plugin:3.5.1
Instead of adding the plugin, I also tried adding the dependency:
<dependency>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.4</version>
</dependency>
But in this case, all I get is
Unresolved dependency: 'io.openliberty.tools:liberty-maven-plugin:jar:3.4'
As with the plugin, I also tried couple of other versions for dependency as well but all produced same issue.