-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -37,15 +37,17 @@ | |||||
<groupId>jakarta.validation</groupId> | ||||||
<artifactId>jakarta.validation-api</artifactId> | ||||||
</dependency> | ||||||
<!-- test --> | ||||||
<dependency> | ||||||
<groupId>org.hibernate.validator</groupId> | ||||||
<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 commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
</dependency> | ||||||
<dependency> | ||||||
<groupId>org.glassfish.expressly</groupId> | ||||||
<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 commentThe reason will be displayed to describe this comment to others. Learn more. Same here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
</dependency> | ||||||
<!-- test --> | ||||||
<dependency> | ||||||
<groupId>org.junit.jupiter</groupId> | ||||||
<artifactId>junit-jupiter-api</artifactId> | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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 |
||
<groupId>org.hibernate.validator</groupId> | ||
<artifactId>hibernate-validator</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.glassfish.expressly</groupId> | ||
<artifactId>expressly</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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 |
||
<groupId>org.hibernate.validator</groupId> | ||
<artifactId>hibernate-validator</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.glassfish.expressly</groupId> | ||
<artifactId>expressly</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
|
@@ -47,4 +57,4 @@ | |
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> | ||
</project> |
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