spring-petclinic/pom.xml

293 lines
9.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2016-11-10 16:51:14 +00:00
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
2020-01-31 11:30:24 +00:00
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
2016-11-10 16:51:14 +00:00
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.samples</groupId>
<artifactId>spring-petclinic</artifactId>
2019-10-20 14:40:04 +00:00
<version>2.2.0.BUILD-SNAPSHOT</version>
2013-04-15 09:17:45 +00:00
2016-11-10 16:51:14 +00:00
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2020-01-25 19:30:18 +00:00
<version>2.2.4.RELEASE</version>
2016-11-10 16:51:14 +00:00
</parent>
<name>petclinic</name>
2013-04-15 09:17:45 +00:00
2016-11-10 16:51:14 +00:00
<properties>
2015-04-14 01:27:25 +00:00
2016-11-10 16:51:14 +00:00
<!-- Generic properties -->
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2013-04-15 09:17:45 +00:00
2016-11-10 16:51:14 +00:00
<!-- Web dependencies -->
<webjars-bootstrap.version>3.3.6</webjars-bootstrap.version>
<webjars-jquery-ui.version>1.11.4</webjars-jquery-ui.version>
<webjars-jquery.version>2.2.4</webjars-jquery.version>
<wro4j.version>1.8.0</wro4j.version>
<jacoco.version>0.8.5</jacoco.version>
2020-01-25 19:31:07 +00:00
<spring-format.version>0.0.19</spring-format.version>
2016-11-10 16:51:14 +00:00
</properties>
2013-04-15 09:17:45 +00:00
2016-11-10 16:51:14 +00:00
<dependencies>
<!-- Spring and Spring Boot dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
2018-10-10 16:41:57 +00:00
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
2018-10-10 16:41:57 +00:00
</exclusion>
</exclusions>
2016-11-10 16:51:14 +00:00
</dependency>
2013-04-15 09:17:45 +00:00
2016-11-10 16:51:14 +00:00
<!-- Databases - Uses HSQL by default -->
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
2017-02-17 11:30:57 +00:00
<!-- caching -->
2017-02-16 20:08:30 +00:00
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
</dependency>
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
</dependency>
2016-11-10 16:51:14 +00:00
<!-- webjars -->
<dependency>
<groupId>org.webjars</groupId>
2018-02-21 09:48:01 +00:00
<artifactId>webjars-locator-core</artifactId>
2016-11-10 16:51:14 +00:00
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>${webjars-jquery.version}</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery-ui</artifactId>
<version>${webjars-jquery-ui.version}</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>${webjars-bootstrap.version}</version>
</dependency>
<!-- end of webjars -->
2013-04-15 09:17:45 +00:00
2018-10-10 16:41:57 +00:00
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
2016-11-10 16:51:14 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
2018-07-10 06:43:13 +00:00
<optional>true</optional>
2016-11-10 16:51:14 +00:00
</dependency>
</dependencies>
2016-11-10 16:51:14 +00:00
<build>
<plugins>
2020-01-03 11:22:05 +00:00
<plugin>
<groupId>io.spring.javaformat</groupId>
<artifactId>spring-javaformat-maven-plugin</artifactId>
<version>${spring-format.version}</version>
<!-- run ./mvnw spring-javaformat:apply to apply -->
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>validate</goal>
</goals>
</execution>
</executions>
</plugin>
2016-11-10 16:51:14 +00:00
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
2017-08-24 16:26:45 +00:00
<!-- Spring Boot Actuator displays build-related information
2016-11-10 16:51:14 +00:00
if a META-INF/build-info.properties file is present -->
<goals>
<goal>build-info</goal>
</goals>
<configuration>
<additionalProperties>
<encoding.source>${project.build.sourceEncoding}</encoding.source>
<encoding.reporting>${project.reporting.outputEncoding}</encoding.reporting>
<java.source>${maven.compiler.source}</java.source>
<java.target>${maven.compiler.target}</java.target>
</additionalProperties>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
2018-08-09 08:47:13 +00:00
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
2016-11-10 16:51:14 +00:00
<executions>
<execution>
<goals>
2018-08-09 08:47:13 +00:00
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
2016-11-10 16:51:14 +00:00
</goals>
</execution>
</executions>
</plugin>
2017-08-24 16:26:45 +00:00
<!-- Spring Boot Actuator displays build-related information if a git.properties
2016-11-10 16:51:14 +00:00
file is present at the classpath -->
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>true</verbose>
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties
</generateGitPropertiesFilename>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
2016-11-10 16:51:14 +00:00
</configuration>
</plugin>
2016-11-10 16:51:14 +00:00
<plugin>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-maven-plugin</artifactId>
<version>${wro4j.version}</version>
2016-11-10 16:51:14 +00:00
<executions>
<execution>
<phase>generate-resources</phase>
2016-11-10 16:51:14 +00:00
<goals>
<goal>run</goal>
2016-11-10 16:51:14 +00:00
</goals>
</execution>
</executions>
<configuration>
<wroManagerFactory>ro.isdc.wro.maven.plugin.manager.factory.ConfigurableWroManagerFactory</wroManagerFactory>
<cssDestinationFolder>${project.build.directory}/classes/static/resources/css</cssDestinationFolder>
<wroFile>${basedir}/src/main/wro/wro.xml</wroFile>
<extraConfigFile>${basedir}/src/main/wro/wro.properties</extraConfigFile>
<contextFolder>${basedir}/src/main/less</contextFolder>
2016-11-10 16:51:14 +00:00
</configuration>
<dependencies>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>${webjars-bootstrap.version}</version>
</dependency>
2018-10-05 10:36:56 +00:00
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
</dependency>
</dependencies>
2016-11-10 16:51:14 +00:00
</plugin>
</plugins>
</build>
2009-12-17 18:51:44 +00:00
2017-08-24 16:26:45 +00:00
<!-- Apache 2 license -->
<licenses>
<license>
<name>Apache License, Version 2.0</name>
2019-03-21 10:08:00 +00:00
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
2017-08-24 16:26:45 +00:00
</license>
</licenses>
2018-10-06 14:40:10 +00:00
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>