-
Notifications
You must be signed in to change notification settings - Fork 166
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
ERJaxWS examples #558
ERJaxWS examples #558
Conversation
…le compling under Java 6
With Java 8 out, maintaining support for JDK 5 makes little sense to me. |
And since at WOWODC, most people said that they use their own fork, it shouldn't affect many people. ----- Mail original ----- De: "Chuck Hill" notifications@github.com With Java 8 out, maintaining support for JDK 5 makes little sense to me. — |
pulled because the current Version didn't compile anyway
@markusstoll Would you mind to provide the version of the libraries required by the ERJaxWS framework? I'm working in the Maven configuration and this kind of information would be very helpful. Also, the WebService_Stateful project references a testservice.jar generated from a WSDL file. Could you provide the WSDL file? That way I can write the required Maven configuration to run the wsimport on every build to generate the required classes. |
Hi, I have no idea about maven, so thanks for taking care of that. ERJaxWS includes all libraries from Jax WS RI 2.1.10 (which is basically still JDK5 compliant) WebService_Stateful includes the referenced testservice.jar as well. Why would you want to regards, Markus Am 25.04.2014 um 00:01 schrieb Henrique Prange notifications@github.com:
|
Generating the code during the build is the recommended way of doing this with Maven. The good side effect is that the generated classes are going to be compiled with the correct JDK used during the build process. |
Hi,
Ray Kiddy notified me, that my supplied examples were not compiling by default
I recreated the examples using Java 6 (rather than Java 7), using proper package names,
making them run out of the box and added them to the build.xml files to be compiled by default.
I also added the proper license files for ERJaxWS
There is just one drawback. Framework and examples won't compile and run with JDK5. I became unsure
which JDK is used for the automated builds (and I could not find a doc about that).
If JDK5 still is a must, we have to talk about how to handle this. We would have to go back to
an older JaxWS version, which hardly makes sense…
Markus