Comment out Repositories declaration and declare direct dependency on the 'spring-geode-starter' project module.

This commit is contained in:
John Blum
2019-10-02 20:55:05 -07:00
parent 39dc684172
commit b356111ed4

View File

@@ -2,17 +2,20 @@ apply plugin: 'io.spring.convention.spring-test'
description = "Smoke Tests to assert that a Spring for Apache Geode project generated from Spring Initializer is a standard, non-Webapp Spring Boot application."
/*
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
*/
dependencies {
implementation "org.assertj:assertj-core"
implementation "org.springframework.geode:spring-geode-starter:$version"
implementation project(':spring-geode-starter')
// implementation "org.springframework.geode:spring-geode-starter:$version"
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'