-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
Java 9 support #69
Comments
Take a look to #64 |
will have a try and report :-) |
Thanks for support ;-) |
Forking as needed to specify custom compiler options seems to work, but the options aren't passed properly yet. See #70 for a fix |
It should work now, but I haven't been able to get javac(build 9+181) to do the right thing yet. Investigating right now.. |
hug! .. I've just now released |
Well, according to the Javac documentation, it should already be working.. I guess they maybe introduced another regression or I am simply not seeing the problem... |
Really your fix has been to bypass the Do you think that this could have affect the processor ? The |
This should be safe. I also managed to get the processing work with JDK9 but now I think I'm facing a different problem(need to set addCompileSourceRoots for compilation to work). This issue can be closed I guess. I am going to investigate the new issue I have and open a new issue if necessary. To use a processor with JDK9 you need a configuration like
|
thanks again for contribution |
Hi, I'm trying to run the plugin with JDK 9 as proposed above, but it gives me the following error: [INFO] --- maven-processor-plugin:3.3.2:process (process) @ tt-server --- I'm not adding any -source and/or -target options. Where does javac get -source 1.7 - target 1.7 ? |
the plugin use the following strategy:
|
Thanks. I found out that specifying |
I guess that the simplest solution is to set in the project properties <properties>
<maven.compiler.source>1.9</maven.compiler.source>
<maven.compiler.target>1.9</maven.compiler.target>
</properties> as explained here let me know if it works ... I never dealt with option |
When I set |
maven-compiler-plugin 3.7.0 also supports |
ok this is a new implementation, at now it is not supported please cloud create a new issue in order that I can arrange its implementation? note
|
Released version @plevart please, test it and let me know if works |
No description provided.
The text was updated successfully, but these errors were encountered: