Skip to content
This repository was archived by the owner on Jul 9, 2022. It is now read-only.

INTSCALA-41 - Fix JDBC dependencies #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,8 @@ project('spring-integration-dsl-scala-jdbc') {
dependencies {
compile project(":spring-integration-dsl-scala-core")
compile "org.springframework.integration:spring-integration-jdbc:$springintegrationVersion"

// libraries only needed for test
testCompile "commons-dbcp:commons-dbcp:1.4"
testCompile "commons-pool:commons-dbcp:1.5.4"
compile "commons-dbcp:commons-dbcp:1.4"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the motivation for not making this a test dependency? I don't think we should force users to use dbcp.

compile "commons-pool:commons-dbcp:1.5.4"
}
}

Expand Down