Since the LMP has a "smart" default for the `appsDirectory`, you might not need to set it yourself. See the appsDirectory smart default documentation: https://github.com/OpenLiberty/ci.maven/blob/master/docs/deploy.md `boost.runtimes.openliberty.LibertyRuntime`: ``` /** * Invoke the liberty-maven-plugin to run the install-app goal. */ private void installApp(String installAppPackagesVal) throws MojoExecutionException { Element deployPackages = element(name("deployPackages"), installAppPackagesVal); Element serverNameElement = element(name("serverName"), serverName); Xpp3Dom configuration = configuration(deployPackages, serverNameElement, getRuntimeArtifactElement()); configuration.addChild(element(name("appsDirectory"), "apps").toDom()); executeMojo(getPlugin(), goal("deploy"), configuration, env); } ```
Since the LMP has a "smart" default for the
appsDirectory, you might not need to set it yourself.See the appsDirectory smart default documentation:
https://github.com/OpenLiberty/ci.maven/blob/master/docs/deploy.md
boost.runtimes.openliberty.LibertyRuntime: