-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update route to compiler plug-ins #38
Conversation
But weirdly it does run in CI :/ |
After digging a bit more I'm suspecting that this might be related to the versioning plug-in. In my local system I get weird versions like Is there a way to see whether this is the case? Maybe changing some configuration in the versioning plug-in? @i-walker |
The date you are getting is because you have something modified in local. If you commit those files you will get a specific version based on the commit hash. |
That means that I can only test the project with a clean Git status? |
Yes @serras, that is the case for most arrow projects if you depend on build output |
I can add a feature to the version plugin to force a hash version even without a clean status so we can test locally without having to commit files. For example:
|
That would be wonderful :) |
@serras curiously I had that property already implemented with another name and I totally forget it 😆 The usage is: ./gradlew -Psemver.checkClean=false |
It worked! @JavierSegoviaCordoba thanks for the hint :) |
Fixes #36
Alas, the compiler does not run in the
laws
andexample
projects (you can see this by inspecting the JAR created forlaws
and seeing that no@Pre
or@Post
annotations are present). Any ideas on how to fix this? @raulraja @i-walker @nomisRev