Remove explicit repositories declaration.

Change the 'spring-geode-starter' dependency declaration from the externally, fully-qualified artifact to using the project 'spring-geode-starter' module artifact.
This commit is contained in:
John Blum
2019-10-03 14:31:40 -07:00
parent 61079d8b4b
commit 912bed1b55

View File

@@ -6,19 +6,14 @@ apply plugin: 'io.spring.convention.spring-test'
description = "Smoke Tests to assert that a multi-store Spring Data project using JPA for database access and Apache Geode for caching works as expected."
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
implementation project(':spring-geode-starter')
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-data-mongodb"
implementation "org.springframework.geode:spring-geode-starter:$version"
runtime "org.hsqldb:hsqldb"