From 9e6f17cf1ea9ccbc7b13c8bb18a20346193ece0b Mon Sep 17 00:00:00 2001 From: Tom Hombergs Date: Sun, 18 Jul 2021 10:47:25 +1000 Subject: [PATCH] remove snapshot dependency --- spring-data/spring-data-rest-springfox/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-data/spring-data-rest-springfox/build.gradle b/spring-data/spring-data-rest-springfox/build.gradle index 7b098b8..276b819 100644 --- a/spring-data/spring-data-rest-springfox/build.gradle +++ b/spring-data/spring-data-rest-springfox/build.gradle @@ -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') }