-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/#27 jdk11 #29
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…pache.maven.shared.maven-verifier plugin, which implies a new parent-pom / module structure for the whole project. Now the cxf-spring-boot-starter-maven plugin module is build first - and the integrationtest project follows, using the pre-build plugin right away
…ts should also run locally without setting ` -Dmaven.repo.local=$HOME/.m2/repository`
…ces inside the testproject under /src/test/resources :)
…jaxws-maven-plugin on JDK11+
…er execution is needed
…ric/cxf-spring-boot-starter-maven-plugin/jobs/548069236), we need to switch to newer jax-b core. But since that isn't updated anymore (I really don't know why, have a look at https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-core - this is stuck at May 2018), we switch from jaxb-core to jaxb-runtime, which is maintained normal (see https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime)
…since there are old dependencies in our way
…tched: com.helger.maven) to silently moved, but maintained com.sun.xml.ws.jaxws-maven-plugin - which also runs on all major JDKs. This also resolves mojohaus/jaxws-maven-plugin#54 completely
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Plugin now runs on all major JDK versions. The main change here is to switch from unmaintained/deprecated https://github.com/mojohaus/jaxws-maven-plugin to maintained https://github.com/eclipse-ee4j/metro-jax-ws/tree/master/jaxws-ri/jaxws-maven-plugin, which is part of the jaxws reference implementation, which isn't part of the JDK from version 11 on.
Also there are integration tests now verifying the proper plugin execution. And Travis also runs multiple builds for JDK 8, 9 and 11.