-
Notifications
You must be signed in to change notification settings - Fork 47
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
test lift #244
test lift #244
Conversation
@franvila I clicked ready for review by mistake and couldn't find a way to switch it back. |
Looks like you could config what mvnw does by having your setup script create |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks reasonable to me.
@k-wall tested but it does not work. It seems setup and ./mvnw are executed in parallel so they are not always executed in the same order and does not affect the other. |
How about ignoring mvnw files in our tree with a https://community.sonatype.com/t/dependency-tab-using-maven-should-be-gradle/10323/3?u=kwall |
@k-wall @SamBarker My intention was not to merge this PR, but if you agree we can merge this PR and close Sam's #242 |
I tried that as well, but nothing. It seems it is configured by default to detect Anyway, it is "only" noise, non time consuming as they are executed in parallel, we just need one compilation to be able to run the static analysis. |
You are right, it probably doesn't matter as the build is reasonable quick. I suppose setup script could run.
|
Tested in this commit with no luck https://lift.sonatype.com/results/github.com/kroxylicious/kroxylicious/01GWVQP2KNRBCHQN9YMXRVYE55/?ph=PhaseIntroduced&tab=logs. As I suspected, both processes are run in parallel without knowing each other, so no matter what the setup does, if mvnw exists at the beginning it will be launched by default. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remember to squash and give it a sensible commit message
Type of change
Description
In order to have a build with no errors in Kroxylicious we would need to avoid java 19 jdk (
integrationtests
module) because there is no current support in Sonatype for that version. The LTS supported is JDK 17.Additional Context
Why are you making this pull request?