From 01e93da27e9e2756206782f998ea18b387458065 Mon Sep 17 00:00:00 2001 From: Spencer Gibb Date: Wed, 7 Feb 2018 14:50:50 -0500 Subject: [PATCH] Switch to javax validation --- .../cloud/consul/config/ConsulConfigProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulConfigProperties.java b/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulConfigProperties.java index 151552ae..e8a14dae 100644 --- a/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulConfigProperties.java +++ b/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulConfigProperties.java @@ -17,9 +17,9 @@ package org.springframework.cloud.consul.config; import javax.annotation.PostConstruct; +import javax.validation.constraints.NotEmpty; import javax.validation.constraints.NotNull; -import org.hibernate.validator.constraints.NotEmpty; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.validation.annotation.Validated;