cunningt opened a new pull request, #3028:
URL: https://github.com/apache/cxf/pull/3028
I'm getting the following error on trying to build cxf 4.2.0 (I changed the
version) :
` [ERROR] Failed to execute goal on project cxf-systests-ci-grizzly: Could
not
resolve dependencies for project
org.apache.cxf.systests:cxf-systests-ci-grizzly:jar:4.2.0-rhbac-SNAPSHOT:
Failed
to collect dependencies at
org.glassfish.grizzly:grizzly-http-server:jar:5.0.0:
Failed to read artifact descriptor for
org.glassfish.grizzly:grizzly-http-server:jar:5.0.0: Could not find
artifact
org.glassfish.grizzly:grizzly-bom:pom:5.0.0-SNAPSHOT in fuse-repository
(https://fuse-build-repository.fusesource-jenkins.hosted.psi.rdu2.redhat.com/repos
itory/maven-public/) -> [Help 1]`
The error here is that grizzly-http-server has broken parentage :
grizzly-http-server points to grizzly-project 5.0.0 which has a parent of
grizzly-bom 5.0.0-SNAPSHOT (should be 5.0.0)
See the
https://repo1.maven.org/maven2/org/glassfish/grizzly/grizzly-project/5.0.0/grizzly-project-5.0.0.pom
```
<parent>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-bom</artifactId>
<version>5.0.0-SNAPSHOT</version>
<relativePath>boms/bom/pom.xml</relativePath>
</parent>
```
Since this error is in the parentage, I don't think this can be fixed with a
dependencyManagement override. Might be best to downgrade until a 5.0.1 or
newer is available.
--
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]