ATS-137: Update to Spring Boot 2.1.1 (Spring 5.1.3) - including Micrometer 1.1.1

- also remove earlier workaround for Java 11 (see ATS-71)
This commit is contained in:
Jan Vonka
2018-12-03 12:10:40 +00:00
parent d23663caa0
commit 2617686ec0
2 changed files with 2 additions and 39 deletions

View File

@@ -42,33 +42,6 @@
<groupId>org.alfresco</groupId>
<artifactId>alfresco-transform-data-model</artifactId>
</dependency>
<!-- ATS-71: override mockito & byte-buddy (for JDK 11) -->
<!-- Revisit (& remove if possible) when we upgrade Spring Boot Starter Parent (eg. 2.0.5 to 2.1) -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>2.22.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.9.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>