-
-
Notifications
You must be signed in to change notification settings - Fork 46
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
Add Awaitility Dependency & Import die Bibliothek #244
base: main
Are you sure you want to change the base?
Conversation
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.
This is just a preliminary review. A final review follows if the pipeline runs successfully
pom.xml
Outdated
@@ -85,7 +92,7 @@ | |||
<java.util.logging.manager> | |||
org.jboss.logmanager.LogManager | |||
</java.util.logging.manager> | |||
<maven.home>${maven.home}</maven.home> | |||
<maven.home>${env.MAVEN_HOME}</maven.home> |
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, do not set the maven home in a pom.xml. The maven home is an environment variable that should be provided by the os system.
pom.xml
Outdated
@@ -114,7 +121,7 @@ | |||
${project.build.directory}/${project.build.finalName}-runner</native.image.path> | |||
<java.util.logging.manager> | |||
org.jboss.logmanager.LogManager</java.util.logging.manager> | |||
<maven.home>${maven.home}</maven.home> | |||
<maven.home>${env.MAVEN_HOME}</maven.home> |
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 remove this.
pom.xml
Outdated
@@ -47,7 +47,14 @@ | |||
de.remsfal.service.entity.dto\** | |||
</sonar.cpd.exclusions> | |||
</properties> | |||
|
|||
<dependencies> |
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.
The dependency is only in the service module required. Therefore, please move this dependency to the remsfal-service/pom.xml
No description provided.