Add test runtime dependency on org.springframework.boot:spring-boot-starter-data-jpa.

Add test runtime dependency on org.springframework.boot:spring-boot-starter-data-cassandra.

Add test runtime dependency on org.hsqldb:hsqldb.
This commit is contained in:
John Blum
2019-06-13 00:13:26 -07:00
parent 3047073b52
commit dcd0b33f7c

View File

@@ -23,6 +23,16 @@ dependencies {
exclude group: "org.skyscreamer", module: "jsonassert"
}
testCompile("org.springframework.boot:spring-boot-starter-data-jpa") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
testCompile("org.springframework.boot:spring-boot-starter-data-cassandra") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
testCompile "org.springframework.data:spring-data-geode-test"
testRuntime "org.hsqldb:hsqldb"
}