I'm trying to use the open liberty maven plugin. My app has a set of common jars that I define as listed below in the server.xml file. To use the liberty maven plugin I can't use the <application>
element (AFAIK) . Can I config a shared library path another way using the maven plugin or ibm-web-ext.xml?
<library id="commonlibs">
<fileset dir="C:\dev\commonlibs" includes="*.jar" scanInterval="30s"/>
</library>
<application id="irent" location="C:\dev\myapp\myappmaven\target\myapp.war" name="myapp" type="war">
<classloader commonLibraryRef="commonlibs"/>
<web-ext enable-file-serving="true"/>
</application>