diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties index 25cc8af3c7cd60f0f0c8b8dc95aa12e64bba8134..6c8c0e080f9c27e4a95d306a2f7f2b3a3708eecf 100644 --- a/.mvn/wrapper/maven-wrapper.properties +++ b/.mvn/wrapper/maven-wrapper.properties @@ -1 +1 @@ -distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.3/apache-maven-3.3.3-bin.zip +distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.4/apache-maven-3.5.4-bin.zip diff --git a/pom.xml b/pom.xml index 0469ceaf735db938d5ea06f737397775abb4d1f1..70bb29209f52c4b9bbd15e888cb2f594fabcb5b9 100644 --- a/pom.xml +++ b/pom.xml @@ -5,12 +5,12 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.springframework.samples</groupId> <artifactId>spring-petclinic</artifactId> - <version>2.0.0.BUILD-SNAPSHOT</version> + <version>2.1.0.BUILD-SNAPSHOT</version> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> - <version>2.0.4.RELEASE</version> + <version>2.1.0.BUILD-SNAPSHOT</version> </parent> <name>petclinic</name> @@ -27,7 +27,7 @@ <webjars-jquery.version>2.2.4</webjars-jquery.version> <wro4j.version>1.8.0</wro4j.version> - <jacoco.version>0.8.1</jacoco.version> + <jacoco.version>0.8.2</jacoco.version> </properties> @@ -200,6 +200,11 @@ <artifactId>bootstrap</artifactId> <version>${webjars-bootstrap.version}</version> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>${mockito.version}</version> + </dependency> </dependencies> </plugin> </plugins> @@ -213,4 +218,23 @@ </license> </licenses> + <profiles> + <profile> + <id>java11+</id> + <activation> + <jdk>[11,)</jdk> + </activation> + <dependencies> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </dependency> + <dependency> + <groupId>org.glassfish.jaxb</groupId> + <artifactId>jaxb-runtime</artifactId> + </dependency> + </dependencies> + </profile> + </profiles> + </project>