Skip to content

Commit 3e3b298

Browse files
author
bwajtr
committed
Fixed failing tests -> it turns out that both compile and jooqRuntime dependencies have to be defined for postgresql jdbc driver
1 parent 7511df5 commit 3e3b298

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,13 @@ tasks.withType(JavaCompile) {
3232
dependencies {
3333
compile "org.springframework.boot:spring-boot-starter-jdbc"
3434
compile "org.springframework.boot:spring-boot-starter-jooq"
35-
jooqRuntime "org.postgresql:postgresql:9.4.1211.jre7"
35+
compile "org.postgresql:postgresql:9.4.1211.jre7"
3636
compile "org.apache.commons:commons-lang3:3.4"
3737
compile "org.apache.commons:commons-collections4:4.1"
3838

3939
testCompile "org.springframework.boot:spring-boot-starter-test"
40+
41+
jooqRuntime "org.postgresql:postgresql:9.4.1211.jre7"
4042
}
4143

4244
// we want to show following test events in the log

0 commit comments

Comments
 (0)