-
Notifications
You must be signed in to change notification settings - Fork 3
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
Version with DB support #4
base: master-db-support
Are you sure you want to change the base?
Version with DB support #4
Conversation
</systemPropertyVariables> | ||
<systemPropertyVariables> | ||
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> | ||
<maven.home>${user.home}\bin</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.
You set the maven home directory to your users directory. This may work on your machine, but not on others. For example, if I use this and run a test, it will cause an error. I think <maven.home>${maven.home}</maven.home>
should work since it resolves the path to your maven installation, I think
</native.image.path> | ||
<java.util.logging.manager>org.jboss.logmanager.LogManager | ||
</java.util.logging.manager> | ||
<maven.home>${user.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.
See the other comment
Maybe you can also add a test entity and change the rest service to use the database |
No description provided.