是否可以在pom中定义javacpp-preset的环境?

是否可以在 pom.xml 文件中定义 javacpp-presets (opencv-platform) 的目标环境?我知道您可以-Djavacpp.platform在执行时设置属性mvn clean install。这将激活正确的 Maven 配置文件,并且不会将其他系统库添加到最终的 jar 中。但是有没有机会直接在pom中定义平台以避免执行maven时的-D参数?



心有法竹
浏览 116回答 1
1回答

LEATH

这是我想出的解决方案:<dependency>&nbsp; &nbsp; <groupId>org.bytedeco.javacpp-presets</groupId>&nbsp; &nbsp; <artifactId>opencv</artifactId>&nbsp; &nbsp; <version>${opencv.version}</version></dependency><dependency>&nbsp; &nbsp; <groupId>org.bytedeco.javacpp-presets</groupId>&nbsp; &nbsp; <artifactId>opencv</artifactId>&nbsp; &nbsp; <version>${opencv.version}</version>&nbsp; &nbsp; <classifier>${os.detected.classifier}</classifier></dependency>可以${os.detected.classifier}在 pom.xml 中设置。我将此属性与以下构建扩展一起使用:<build>&nbsp; &nbsp; <extensions>&nbsp; &nbsp; &nbsp; &nbsp; <extension>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <groupId>kr.motd.maven</groupId>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <artifactId>os-maven-plugin</artifactId>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <version>1.6.1</version>&nbsp; &nbsp; &nbsp; &nbsp; </extension>&nbsp; &nbsp; </extensions>...此扩展(https://github.com/trustin/os-maven-plugin)将在构建时检测操作系统并通过此属性设置正确的分类器。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java