Startup Java Project Configuration#3
Startup Java Project Configuration#3viniciusam merged 19 commits intoutPLSQL:developfrom viniciusam:java-api
Conversation
jgebal
left a comment
There was a problem hiding this comment.
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.
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.
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.
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.