What are the difference between net.wasdev.wlp.maven.plugins and io.openliberty.tools liberty-maven-plugin and which one should I use ?
Difference between wasdev and openliberty maven plugin
720 Views Asked by Manudebouc At
1
There are 1 best solutions below
Related Questions in WEBSPHERE-LIBERTY
- Where can I download ECI resource adapter (cicseci.rar). Unable to find out it in IBM portal
- IBM Liberty 23.x version is not taking hibernate jar from deployed application
- Liberty doesn't compile JSP
- Put JMS message properties in IBM MQ queue and access from other JMS client which run on Websphere liberty
- WebSphere Liberty integration with Redis for HTTP Session Persistence
- A strange behavior is observed when using CDI beans with session scope in conjunction with the session-cache feature of OpenLiberty
- WebSphere Liberty BASE Remote EJB call failed in JDK 17
- Docx4J not working on Websphere Liberty Server 24.0.0.2
- Error in java api service: Could not find deployment
- Error on starting spring boot 3 EAR on Websphere Liberty
- Does Infinispan TransactionManagerLookup support WebSphere Liberty?
- WebSphere Liberty BASE transaction failure
- StackOverflowError during class transformation on startup of Liberty Server
- java.lang.NoClassDefFoundError: com/sun/jndi/toolkit/chars/CharacterEncoder
- IBM Liberty's viewSettings command keeps saying "The password for this proxy is not encoded"
Related Questions in OPEN-LIBERTY
- Is there a way to conditionally disable openidConnectClient and instead use LDAP authentication using ldapRegistry in OpenLiberty?
- Liberty doesn't compile JSP
- A strange behavior is observed when using CDI beans with session scope in conjunction with the session-cache feature of OpenLiberty
- openliberty saml group mapping not working
- ProcessingException RESTEASY004655: Testcontainers unable to invoke request to an external REST API service
- What is openliberty transaction manager backend routing?
- Error in java api service: Could not find deployment
- Protect API with Microprofile JWT without @RolesAllowed annotation
- Using local libraries in a maven project with Open Liberty Dev mode
- ContainerLaunchException: Cannot start Testcontainer OpenLiberty Server in Integration Tests using Spock
- OpenLiberty maven filtering on server.xml
- StackOverflowError during class transformation on startup of Liberty Server
- Is there any option to activate/deactivate a MDB in open liberty
- IBM Liberty and SpringBoot - how to implement mpHealth 4.0 `@Readiness` bean
- Liberty InstantOn with spring-boot-starter-security throws exception
Related Questions in LIBERTY-MAVEN-PLUGIN
- Open Liberty - Context Root Not Found error, ClassCastException, CWWKZ0013E
- How can I set the context root in Liberty using server configuration (server.xml) for my EAR-packaged WARs?
- Configuring Apache Derby dependency in Open Liberty Maven project
- Why isn't IBM Liberty Developer Tools or WebSphere Developer Tools (WDT) for Eclipse automatically creating a server to run my Maven project?
- open liberty won't start app after initial startup
- Common library path when using liberty maven plugin
- How to use MicroProfile ConfigProperty injection from a microprofile-config.properties file in Open Liberty test using ShrinkWrap + Arquillian?
- How can I use Open Liberty dev mode with my Maven WAR project and include JavaScript and CSS files from outside my project (eg from my local machine)?
- Getting CWWKF0044E incompatible feature error using Open Liberty with Maven, but I didn't configure incompatible features
- liberty:devc: <dockerfile> not being honored
- Use maven filtering in server.xml without breaking mvn liberty:dev
- How can I debug my tests in Open Liberty server dev mode (using liberty-maven-plugin) and toggle the debugger on/off?
- How can I start an Open Liberty server in debug mode with the liberty-maven-plugin "run" goal?
- Difference between wasdev and openliberty maven plugin
- Install a default DataSource in OpenLiberty by maven plugin
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
New, preferred (3.x) version
io.openliberty.tools:liberty-maven-plugin
The
io.openliberty.toolsone is the newer, better version of the liberty-maven-plugin, and the one you'll likely want to use for new development.Older (2.x) version
net.wasdev.wlp.maven.plugins:liberty-maven-plugin
The older
net.wasdev.wlp.maven.pluginsplugin is what evolved into the newerio.openliberty.toolsplugin.Along with the move from version 2.x to version 3.x of the liberty-maven-plugin, the groupId was also changed from
net.wasdev.wlp.maven.plugins(versions 1.x-2.x) toio.openliberty.tools(version 3.x and beyond).Why use the newer plugin?
Both versions of the plugins can be used to work with (install, deploy to, etc.) either Open Liberty or WebSphere Liberty servers. (so that is not a concern in choosing one vs. the other).
The newer V3 plugin provides the helpful new "dev mode" support. Plus you'll find a lot more recent material using this version such as the Open Liberty guides.
It also enhances and streamlines some of the other goals and configuration (besides "dev mode"). There's a summary of the 3.x enhancements here.
So at this point the only reason to use the 2.x plugin from
net.wasdev.wlp.maven.pluginswould be to continue with a project already using this version of the plugin (unless or until you're ready to migrate).