-
Notifications
You must be signed in to change notification settings - Fork 5
Startup Java Project Configuration #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
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.
Do we need to keep intellij settings with the project? Maybe it's better to add whole .idea folder to gitignore?
Yes, is better to keep the IDE files out. |
<dependencies> | ||
<dependency> | ||
<groupId>com.oracle.jdbc</groupId> | ||
<artifactId>ojdbc7</artifactId> |
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.
Should we use java7 driver or go ahead with java8?
Maybe entire project should be build on java7?
Or do we want 2 separate builds with java7 and java8?
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 would prefer to use Java 8 because of lambda expressions and try with resources. But if we want to support both drivers, we can't use those new features anyways.
We could start with the Java 7 and add support to the newest later.
What do you think?
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.
Sounds good to me.
Probably for Java8 we will need a separate branch/project then :(
Merging to start working on base repo, |
Startup project using maven and travis.