os-maven-plugin
os-maven-plugin copied to clipboard
A Maven plugin that sets various useful properties detected from ${os.name} and ${os.arch} properties.
I am using a BOM in my dependency management to get all my dependencies versions aligned. Unfortunately, the property `${os.detected.classifier}` is not replaced in such case. See the following pom.xml...
Similar to https://github.com/trustin/os-maven-plugin/issues/51 but also need to support riscv64. I've got fix for it already, will submit PR soon
This is a small feature request. Currently the plugin does not work out of the box with the `bytedeco/javacpp-presets` on mac. For example, the opencv bindings are published for different...
Signed-off-by: alex
Build matrix includes: - Java 8, Java 11, Java 16 - MacOS, Linux, Windows
Apparently Zulu reports the value of "os.name" to be "Mac". The code currently looks for "macosx" or "osx".
Hi, Currently, it is not possible to use the detected properties to activate profiles. PR implements afterSessionStart in addition to afterProjectsRead. This makes it possible to use the detected properties...
First off, I love this plugin! I use its detector API in non-maven scenarios: - In `enforcer-gradle-plugin` as an implementation of the `RequireOs` rule https://github.com/kordamp/enforcer-gradle-plugin/blob/master/core/enforcer-rules/src/main/groovy/enforcer/rules/RequireOS.groovy#L172 - In the Kordamp `profiles-gradle-plugin`...