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
- Using JaCoCo with Liberty Profile 8.5.5.4 in Eclipse does not produce any code coverage
- unable to deploy restful application liberty profile 8.2
- Using Cobertura for Junit testing webapp deployed on WebSphere Liberty Profile
- WAS Liberty 8.5.5.4, JPA 2.0 - discovered implementations: NONE
- Specify user handlers for JAX-RS when using annotation scanning
- com.ibm.wsspi.http.channel.exception.WriteBeyondContentLengthException
- Install wasJmsClient-2.0 feature in Liberty Profile 8.5.5.2
- Shared Javascript library in Websphere Liberty
- Libs missing when pushing a java app from Eclipse to Bluemix
- WebSphere Liberty auto scaling CPU metric
- Why is MobileFirst Server Configuration Tool not letting me deploy with libertyAdminUser and libertyAdminPassword?
- How to determine ciphers to use (addressing logjam exploit)
- Applying Security Constraints Liberty for Java
- Dandelion datatables not working on Liberty profile
- Can't find WebSphere Integrated Solutions Console
Related Questions in OPEN-LIBERTY
- LDAP java single sign-on on Liberty server
- How do you prevent Liberty from deleting the expanded folder after a restart
- Logging.properties in WAR file ignored by Liberty server
- Liberty server properties file setup
- OpenLiberty ear postgresql
- How do I run multiple instances war in one Liberty Server?
- Fault tolerance @Asynchronous on MicroProfile REST client cause open liberty core dump on windows
- REST client call fails with "SunCertPathBuilderException: unable to find valid certification path to requested target"
- Injected JMS ConnectionFactory is null in simple JMS example using ActiveMQ Artemis with OpenLiberty
- Liberty OIDC Provider: map name from basicRegistry to preferred_username in JWT
- java CDI: @Singleton @Startup @Inject not working implementing an interface
- OpenLiberty maven plugin & EAR project: Ignored exclusions of transitive dependencies in ear.xml
- Spring Security - avoiding in-web-container role binding removes flexibility
- How can I set a delegation parentLast when using open liberty-maven-plugin?
- open-liberty - extend transaction timeout for specific operation
Related Questions in LIBERTY-MAVEN-PLUGIN
- Open Liberty - Context Root Not Found error, ClassCastException, CWWKZ0013E
- Use maven filtering in server.xml without breaking mvn liberty:dev
- How can I start an Open Liberty server in debug mode with the liberty-maven-plugin "run" goal?
- How can I debug my tests in Open Liberty server dev mode (using liberty-maven-plugin) and toggle the debugger on/off?
- Getting CWWKF0044E incompatible feature error using Open Liberty with Maven, but I didn't configure incompatible features
- 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)?
- How to deploy to WebSphere Liberty apps directory from WebSphere Liberty Maven plugin?
- How to redeploy artifact with liberty-maven-plugin?
- What tools are there to deploy to Websphere 8.5 using maven on OSX
- How do I start a Liberty server in debug mode in the background with the liberty-maven-plugin?
- liberty:devc: <dockerfile> not being honored
- How can I set the context root in Liberty using server configuration (server.xml) for my EAR-packaged WARs?
- How to use MicroProfile ConfigProperty injection from a microprofile-config.properties file in Open Liberty test using ShrinkWrap + Arquillian?
- Common library path when using liberty maven plugin
- open liberty won't start app after initial startup
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 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).