yesamer opened a new issue, #1488: URL: https://github.com/apache/incubator-kie-issues/issues/1488
In some conditions, we faced troubles building kie-tools due to transitive SNAPSHOT dependency coming from org.jpmml:pmml-model: `[ERROR] Could not resolve dependencies: Failed to collect dependencies at org.kie:kie-dmn-core:jar:9.1.1-ibm-0002 -> org.jpmml:pmml-model:jar:1.6.4 -> com.fasterxml.jackson.core:jackson-annotations:jar:2.12.6-SNAPSHOT` This comes from a jbang command using jbang: -Dkogito-runtime.version=9.1.1-ibm-0002 /workspace/app/kie-tools/packages/dmn-marshaller-backend-compatibility-tester/src/DmnMarshallerBackendCompatibilityTesterScript.java Looking at [the version definition in pmml-model](https://github.com/jpmml/jpmml-model/blob/1.6.4/pom.xml#L140) , it's defined as a range, but SNAPSHOTs should be (according to the internet) not resolved as matching the range criteria To fix that, it's enough to directly import the `drools-build-parent` as direct dependency in the script to point to the correct versions. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
