Upgrade to Spring Boot 1.5.9.RELEASE

Closes gh-503
This commit is contained in:
Stephane Nicoll 2017-12-29 13:43:42 +01:00
parent 63becddb94
commit d4d06ec22b
3 changed files with 10 additions and 1 deletions

View File

@ -20,10 +20,13 @@ import com.fasterxml.jackson.databind.JsonNode;
import io.spring.initializr.web.AbstractFullStackInitializrIntegrationTests;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import static io.spring.initializr.web.AbstractInitializrIntegrationTests.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;
/**
* Tests for actuator specific features.
@ -31,6 +34,8 @@ import static org.junit.Assert.assertTrue;
* @author Stephane Nicoll
*/
@ActiveProfiles("test-default")
@SpringBootTest(classes = Config.class, webEnvironment = RANDOM_PORT,
properties = "management.security.enabled=false")
public class ActuatorIntegrationTests
extends AbstractFullStackInitializrIntegrationTests {

View File

@ -23,6 +23,10 @@ logging:
org.springframework.core.env: warn
org.springframework.jndi: warn
management:
security:
enabled: false
server:
compression:
enabled: true

View File

@ -37,7 +37,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.boot.version>1.4.7.RELEASE</spring.boot.version>
<spring.boot.version>1.5.9.RELEASE</spring.boot.version>
<java.version>1.8</java.version>
</properties>