tkobayas commented on PR #271: URL: https://github.com/apache/incubator-kie-benchmarks/pull/271#issuecomment-1780745595
Test 1 : Raising this PR without any fix failed with ``` 2023-10-26T08:34:49.6510635Z [ERROR] Failed to execute goal on project drools-benchmarks-reliability: Could not resolve dependencies for project org.drools:drools-benchmarks-reliability:jar:1.0-SNAPSHOT: Could not find artifact org.drools:drools-reliability-h2mvstore:jar:8.45.0-SNAPSHOT in apache-public-repository-group (https://repository.apache.org/content/groups/public/) -> [Help 1] ``` Test 2: Commenting out h2mvstore (in pom.xml and java code), passed the CI Test 3: Explicitly added jboss repo to drools-benchmarks-reliability/pom.xml . Reenabled h2mvstore. Passed the CI. ``` <repositories> <repository> <id>jboss-public-repository-group</id> <name>JBoss Public Repository Group</name> <url>https://repository.jboss.org/nexus/content/groups/public/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> </snapshots> </repository> </repositories> ``` -- 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]
