Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Adds correct dependencies to run with java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ayedo committed Apr 23, 2019
1 parent 5912b3c commit fe4f08a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Due to backwards incompatible changes in the API, __no jooq generator version ol
Add the following to your *build.gradle* plugin configuration block:

plugins {
id 'ch.ayedo.jooqmodelator' version '3.4.0'
id 'ch.ayedo.jooqmodelator' version '3.5.0'
}

## Configuration
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

apply plugin: 'java-gradle-plugin'

project.ext.version = '3.4.0'
project.ext.version = '3.5.0'

group 'ch.ayedo'
version project.ext.version
Expand All @@ -31,10 +31,10 @@ dependencies {
}
compile('org.slf4j:slf4j-simple:1.7.25')

runtime('com.sun.xml.bind:jaxb-impl:2.3.0')
runtime('com.sun.xml.bind:jaxb-core:2.3.0')
runtime('com.sun.xml.bind:jaxb-impl:2.3.0')
runtime('javax.activation:activation:1.1.1')
compile('javax.xml.bind:jaxb-api:2.3.0')
compile('com.sun.xml.bind:jaxb-core:2.3.0')
compile('javax.activation:activation:1.1.1')
compile('com.sun.xml.bind:jaxb-impl:2.3.0')

testCompile('org.junit.jupiter:junit-jupiter-api:5.2.0')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.2.0')
Expand Down

0 comments on commit fe4f08a

Please sign in to comment.