-
Notifications
You must be signed in to change notification settings - Fork 48
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
fixes #543 change hibernate-validator and expressly to test scope #544
Conversation
… to test scope
<artifactId>hibernate-validator</artifactId> | ||
<groupId>org.hibernate.validator</groupId> | ||
<artifactId>hibernate-validator</artifactId> | ||
<scope>test</scope> |
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.
Actually these are neeeed at runtime, not just for test, so it should be runtime not test
<artifactId>expressly</artifactId> | ||
<groupId>org.glassfish.expressly</groupId> | ||
<artifactId>expressly</artifactId> | ||
<scope>test</scope> |
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.
Same here
@@ -34,6 +34,16 @@ | |||
<groupId>net.thisptr</groupId> | |||
<artifactId>jackson-jq</artifactId> | |||
</dependency> | |||
<dependency> |
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.
Once you made the other runtime, this does not need to be added and this file should remain unchanged
@@ -21,6 +21,16 @@ | |||
<groupId>io.serverlessworkflow</groupId> | |||
<artifactId>serverlessworkflow-impl-core</artifactId> | |||
</dependency> | |||
<dependency> |
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.
Same, not needed once you set the dependency to runtime, this file should not be modified
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.
These two dependencies are needed for the SDK to work on runtime, so they should be changed to runtime not to test
That way, you do not need to change the impl poms
<artifactId>hibernate-validator</artifactId> | ||
<groupId>org.hibernate.validator</groupId> | ||
<artifactId>hibernate-validator</artifactId> | ||
<scope>test</scope> |
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.
<scope>test</scope> | |
<scope>runtime</scope> |
<artifactId>expressly</artifactId> | ||
<groupId>org.glassfish.expressly</groupId> | ||
<artifactId>expressly</artifactId> | ||
<scope>test</scope> |
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.
<scope>test</scope> | |
<scope>runtime</scope> |
Many thanks for submitting your Pull Request ❤️!
What this PR does / why we need it:
Special notes for reviewers:
Additional information (if needed):