-
Notifications
You must be signed in to change notification settings - Fork 63
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
Fix some smaller issues in dependencies #6152
base: master
Are you sure you want to change the base?
Conversation
The CI test failure is unrelated to this pull request, see #6138. |
43cc244
to
f7d4ee9
Compare
I added a commit which adds the missing "test" scope to some dependencies which are only relevant for the tests. |
53f242b
to
6fd113a
Compare
Kitodo-Query-URL-Import/pom.xml
Outdated
@@ -47,6 +47,7 @@ | |||
<dependency> | |||
<groupId>org.hamcrest</groupId> | |||
<artifactId>hamcrest</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.
Not needed as defined in parent as test scope.
Kitodo-XML-SchemaConverter/pom.xml
Outdated
@@ -43,6 +43,7 @@ | |||
<dependency> | |||
<groupId>org.hamcrest</groupId> | |||
<artifactId>hamcrest</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.
Not needed as defined in parent as test scope.
Kitodo/pom.xml
Outdated
@@ -233,6 +233,7 @@ | |||
<dependency> | |||
<groupId>org.xmlunit</groupId> | |||
<artifactId>xmlunit-matchers</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.
Not needed as defined in parent as 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.
I don't see a test scope for xmlunit-matchers in my latest pom.xml
.
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.
You add the right scope in your current pull request and as the scopes are passed to the sub modules you did not define it again. As already written in my post above.
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.
It is only a reading and compiling review. I can not test the changes itself in a working environment.
Ignore my review and this should be reviewed by an other person. |
dfea134
to
3dc9aa3
Compare
Signed-off-by: Stefan Weil <[email protected]>
The missing scopes were reported by `mvn dependency:analyze`. Signed-off-by: Stefan Weil <[email protected]>
Rebased + fixed merge conflict. |
The updates were selected from this list: