remove snapshot dependency

This commit is contained in:
Tom Hombergs
2021-07-18 10:47:25 +10:00
parent 16815980a9
commit 9e6f17cf1e

View File

@@ -27,9 +27,9 @@ repositories {
dependencies {
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.springframework.boot:spring-boot-starter-data-rest')
compile('io.springfox:springfox-data-rest:2.7.1-SNAPSHOT')
compile('io.springfox:springfox-swagger2:2.7.1-SNAPSHOT')
compile('io.springfox:springfox-swagger-ui:2.7.1-SNAPSHOT')
compile('io.springfox:springfox-data-rest:2.7.1')
compile('io.springfox:springfox-swagger2:2.7.1')
compile('io.springfox:springfox-swagger-ui:2.7.1')
compile('com.h2database:h2:1.4.196')
testCompile('org.springframework.boot:spring-boot-starter-test')
}