ci.maven
ci.maven copied to clipboard
Maven plugins for managing Liberty profile servers #devops
Consider a shortcut in dev mode for developers to execute the package goal (including the relevant pre- and post- goals) to generate a package of the project (e.g., a war...
`BasicSupport.getLibertyDirectoryPropertyFiles()` currently relies on the target server directory existing. Modify this logic for generate features so that env variables can be gathered and resolved from the source directory. See https://github.com/OpenLiberty/ci.maven/blob/fec2732344a13de78b18f847d765dcd22b7cc7ba/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java#L114-L124...
The `generate-features` goal resolves the user specified features based off of the `src` dir. Investigate the case where the serverXmlFile has `include` elements with relative paths to other config files...
An edge case, but if you run both the Liberty Maven Plugin generated-features goal and the Liberty Gradle Plugin generateFeatures task on the same project, two comments appear in the...
We need to look into what can be done to improve the odds of the test cases passing on the builds. See this merge of a PR where 4 out...
## PROBLEM If I do: `mvn liberty:install-server liberty:install-feature`, then rather than installing the features in server.xml into **target/liberty/wlp/** I'm going to see messages like this: > [INFO] CWWKM2102I: Using serverName...
I can write a two-stage Docker build like this, which in stage 1, packages a WAR and generates Liberty config (bootstrap.properties, liberty-plugin-variable-config.xml, etc.) from the POM properties, and then in...
Currently dev mode allows the hotTests parameter to be specified during dev mode startup. As an enhancement, allow this flag to be toggleable using a hot key while dev mode...
This documentation still refers to the `install-apps` goal which was superseded by the `deploy` goal in release 3.0. https://github.com/OpenLiberty/ci.maven/blob/main/docs/spring-boot-support.md#spring-boot-support Should also add documentation for the `attach` config parameter to the...