-
Notifications
You must be signed in to change notification settings - Fork 103
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
Added support for latest jOOQ version #91
base: master
Are you sure you want to change the base?
Conversation
Thank you! This looks good, but please change jooq-latest to jooq-java8 as you suggested. Also, take a look at the Quasar build file to see how to exclude subprojects from the build when built using Java 7. |
No problem. Could you be more explicit regarding the subproject build exclusion? |
On my machine, the exclusion of the tests from the sourceSet deletes the test class for some reason, not sure why.. |
@pron Could you review the gradle solution to make sure it's appropriate? |
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's a very, very minor thing but as a convention I personally prefer having all the files ending with a newline, what do you think @pron?
} | ||
|
||
assemble.dependsOn jarTask | ||
} |
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 think the sources and javadoc jars are missing.
@@ -495,6 +496,8 @@ The interface now can be registered and used as usual from fibers: | |||
{% include_snippet usage ./comsat-jooq/src/test/java/co/paralleluniverse/fibers/jooq/JooqContextTest.java %} | |||
~~~ | |||
|
|||
As with versions 3.7 and above, jOOQ requires Java 8, Comsat provides two separate jOOQ integrations: The legacy, Java 7 and below, `comsat-jooq` and `comsat-jooq-java8` which supports using jOOQ with Java 8. |
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'd change it into:
Starting with versions 3.7 jOOQ requires Java 8 and Comsat provides two separate jOOQ integrations: comsat-jooq
supports Java 6+ and jOOQ 3.6.x while comsat-jooq-java8
supports jOOQ 3.8.x with Java 8.
The sources & javadocs artifacts are inherited from the parent build.gradle it seems. Added them explicitly. |
The |
Hi,
Here's a start.
I'm not sure about "comsat-jooq-latest", perhaps "comsat-jooq-java8" is more appropriate.
Please let me know of any comments or reservations.