2009-11-25 18:45:52 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-11-24 17:32:42 +00:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-11-10 16:51:14 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.springframework.samples</groupId>
|
2016-12-20 10:47:45 +00:00
|
|
|
<artifactId>spring-petclinic</artifactId>
|
2024-05-25 15:24:17 +00:00
|
|
|
<version>3.3.0-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>
|
2024-09-24 14:15:42 +00:00
|
|
|
<version>3.3.4</version>
|
|
|
|
<relativePath/>
|
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 -->
|
2022-03-30 13:58:39 +00:00
|
|
|
<java.version>17</java.version>
|
2016-11-10 16:51:14 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2023-05-10 07:43:16 +00:00
|
|
|
<!-- Important for reproducible builds. Update using e.g. ./mvnw versions:set -DnewVersion=... -->
|
|
|
|
<project.build.outputTimestamp>2023-05-10T07:42:50Z</project.build.outputTimestamp>
|
2013-04-15 09:17:45 +00:00
|
|
|
|
2016-11-10 16:51:14 +00:00
|
|
|
<!-- Web dependencies -->
|
2024-05-25 15:36:13 +00:00
|
|
|
<webjars-bootstrap.version>5.3.3</webjars-bootstrap.version>
|
2021-11-24 11:15:44 +00:00
|
|
|
<webjars-font-awesome.version>4.7.0</webjars-font-awesome.version>
|
2016-06-17 16:38:24 +00:00
|
|
|
|
2024-09-28 06:58:17 +00:00
|
|
|
<checkstyle.version>10.18.1</checkstyle.version>
|
2024-05-25 15:36:13 +00:00
|
|
|
<jacoco.version>0.8.12</jacoco.version>
|
2023-05-26 17:56:00 +00:00
|
|
|
<libsass.version>0.2.29</libsass.version>
|
|
|
|
<lifecycle-mapping>1.0.0</lifecycle-mapping>
|
2024-09-28 06:58:17 +00:00
|
|
|
<maven-checkstyle.version>3.5.0</maven-checkstyle.version>
|
2023-03-10 13:59:47 +00:00
|
|
|
<nohttp-checkstyle.version>0.0.11</nohttp-checkstyle.version>
|
2024-09-28 06:58:17 +00:00
|
|
|
<spring-format.version>0.0.43</spring-format.version>
|
2021-11-24 11:15:44 +00:00
|
|
|
|
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>
|
2020-05-02 05:51:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
2016-11-10 16:51:14 +00:00
|
|
|
<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>
|
|
|
|
</dependency>
|
2013-04-15 09:17:45 +00:00
|
|
|
|
2020-03-20 17:24:24 +00:00
|
|
|
<!-- Databases - Uses H2 by default -->
|
2016-11-10 16:51:14 +00:00
|
|
|
<dependency>
|
2020-03-20 17:24:24 +00:00
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
2016-11-10 16:51:14 +00:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2016-12-05 21:50:29 +00:00
|
|
|
<dependency>
|
2022-12-20 10:44:30 +00:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2016-12-05 21:50:29 +00:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2021-12-07 11:46:58 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2016-01-30 13:30:19 +00:00
|
|
|
|
2023-11-24 17:32:42 +00:00
|
|
|
<!-- Caching -->
|
2017-02-16 20:08:30 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.cache</groupId>
|
|
|
|
<artifactId>cache-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-10-16 19:21:27 +00:00
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
<artifactId>caffeine</artifactId>
|
2017-02-16 20:08:30 +00:00
|
|
|
</dependency>
|
|
|
|
|
2023-11-24 17:32:42 +00:00
|
|
|
<!-- Webjars -->
|
2016-11-10 16:51:14 +00:00
|
|
|
<dependency>
|
2021-11-19 11:49:45 +00:00
|
|
|
<groupId>org.webjars.npm</groupId>
|
2016-11-10 16:51:14 +00:00
|
|
|
<artifactId>bootstrap</artifactId>
|
|
|
|
<version>${webjars-bootstrap.version}</version>
|
|
|
|
</dependency>
|
2021-11-19 11:49:45 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars.npm</groupId>
|
|
|
|
<artifactId>font-awesome</artifactId>
|
2021-11-24 11:15:44 +00:00
|
|
|
<version>${webjars-font-awesome.version}</version>
|
2021-11-19 11:49:45 +00:00
|
|
|
</dependency>
|
2013-04-15 09:17:45 +00:00
|
|
|
|
2016-11-10 16:51:14 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
2023-04-14 11:09:34 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-testcontainers</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-docker-compose</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>mysql</artifactId>
|
|
|
|
<scope>test</scope>
|
2016-11-10 16:51:14 +00:00
|
|
|
</dependency>
|
2022-10-01 16:50:40 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2016-11-10 16:51:14 +00:00
|
|
|
</dependencies>
|
2016-06-28 10:02:53 +00:00
|
|
|
|
2016-11-10 16:51:14 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2023-03-29 17:18:00 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-java</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<requireJavaVersion>
|
2024-05-25 15:36:13 +00:00
|
|
|
<message>This build requires at least Java ${java.version}, update your JVM, and
|
|
|
|
run the build again</message>
|
2023-03-29 17:18:00 +00:00
|
|
|
<version>${java.version}</version>
|
|
|
|
</requireJavaVersion>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2023-06-22 07:19:27 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>io.spring.javaformat</groupId>
|
|
|
|
<artifactId>spring-javaformat-maven-plugin</artifactId>
|
|
|
|
<version>${spring-format.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>validate</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-01-31 16:31:19 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2023-05-26 17:56:00 +00:00
|
|
|
<version>${maven-checkstyle.version}</version>
|
2020-01-31 16:31:19 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
2023-05-26 17:56:00 +00:00
|
|
|
<version>${checkstyle.version}</version>
|
2020-01-31 16:31:19 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.nohttp</groupId>
|
|
|
|
<artifactId>nohttp-checkstyle</artifactId>
|
|
|
|
<version>${nohttp-checkstyle.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>nohttp-checkstyle-validation</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>src/checkstyle/nohttp-checkstyle.xml</configLocation>
|
|
|
|
<sourceDirectories>${basedir}</sourceDirectories>
|
|
|
|
<includes>**/*</includes>
|
|
|
|
<excludes>**/.git/**/*,**/.idea/**/*,**/target/**/,**/.flattened-pom.xml,**/*.class</excludes>
|
2024-02-14 01:56:03 +00:00
|
|
|
<propertyExpansion>
|
|
|
|
config_loc=${basedir}/src/checkstyle/
|
|
|
|
</propertyExpansion>
|
2020-01-31 16:31:19 +00:00
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2023-03-10 13:59:47 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.graalvm.buildtools</groupId>
|
|
|
|
<artifactId>native-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2016-11-10 16:51:14 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2024-08-19 11:59:58 +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>
|
2023-05-26 17:56:00 +00:00
|
|
|
<java.source>${java.version}</java.source>
|
|
|
|
<java.target>${java.version}</java.target>
|
2016-11-10 16:51:14 +00:00
|
|
|
</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>
|
2016-06-28 10:02:53 +00:00
|
|
|
|
2024-05-26 10:46:57 +00:00
|
|
|
<!-- Spring Boot Actuator displays build-related information if a git.properties file is
|
|
|
|
present at the classpath -->
|
2016-11-10 16:51:14 +00:00
|
|
|
<plugin>
|
2023-01-09 11:55:04 +00:00
|
|
|
<groupId>io.github.git-commit-id</groupId>
|
|
|
|
<artifactId>git-commit-id-maven-plugin</artifactId>
|
2016-11-10 16:51:14 +00:00
|
|
|
<configuration>
|
2017-03-06 07:19:28 +00:00
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
2021-01-07 15:28:46 +00:00
|
|
|
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
|
2016-11-10 16:51:14 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-05-26 10:46:57 +00:00
|
|
|
<!-- Spring Boot Actuator displays sbom-related information if a CycloneDX SBOM file is
|
|
|
|
present at the classpath -->
|
|
|
|
<plugin>
|
2024-09-24 14:15:42 +00:00
|
|
|
<?m2e ignore?>
|
2024-05-26 10:46:57 +00:00
|
|
|
<groupId>org.cyclonedx</groupId>
|
|
|
|
<artifactId>cyclonedx-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2016-06-28 10:02:53 +00:00
|
|
|
|
2016-11-10 16:51:14 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2009-12-17 18:51:44 +00:00
|
|
|
|
2017-08-24 16:26:45 +00:00
|
|
|
<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>
|
|
|
|
|
2020-03-20 17:17:34 +00:00
|
|
|
<profiles>
|
2021-11-24 07:45:21 +00:00
|
|
|
<profile>
|
|
|
|
<id>css</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack</id>
|
|
|
|
<?m2e execute onConfiguration,onIncremental?>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.webjars.npm</groupId>
|
|
|
|
<artifactId>bootstrap</artifactId>
|
|
|
|
<version>${webjars-bootstrap.version}</version>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
<outputDirectory>${project.build.directory}/webjars</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.gitlab.haynes</groupId>
|
|
|
|
<artifactId>libsass-maven-plugin</artifactId>
|
2023-05-26 17:56:00 +00:00
|
|
|
<version>${libsass.version}</version>
|
2021-11-24 07:45:21 +00:00
|
|
|
<executions>
|
2022-01-05 08:12:09 +00:00
|
|
|
<execution>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<?m2e execute onConfiguration,onIncremental?>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2021-11-24 07:45:21 +00:00
|
|
|
</executions>
|
|
|
|
<configuration>
|
2022-01-05 08:12:09 +00:00
|
|
|
<inputPath>${basedir}/src/main/scss/</inputPath>
|
|
|
|
<outputPath>${basedir}/src/main/resources/static/resources/css/</outputPath>
|
2023-11-24 17:32:42 +00:00
|
|
|
<includePath>
|
|
|
|
${project.build.directory}/webjars/META-INF/resources/webjars/bootstrap/${webjars-bootstrap.version}/scss/</includePath>
|
2021-11-24 07:45:21 +00:00
|
|
|
</configuration>
|
2022-01-05 08:12:09 +00:00
|
|
|
</plugin>
|
2021-11-24 07:45:21 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2020-03-20 17:17:34 +00:00
|
|
|
<profile>
|
|
|
|
<id>m2e</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>m2e.version</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2024-08-19 11:59:58 +00:00
|
|
|
<!-- This plugin's configuration is used to store Eclipse m2e settings
|
2023-11-24 17:32:42 +00:00
|
|
|
only. It has no influence on the Maven build itself. -->
|
2020-03-20 17:17:34 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
2023-05-26 17:56:00 +00:00
|
|
|
<version>${lifecycle-mapping}</version>
|
2020-03-20 17:17:34 +00:00
|
|
|
<configuration>
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
<pluginExecutions>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<versionRange>[1,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2022-01-05 08:12:09 +00:00
|
|
|
<ignore />
|
2020-03-20 17:17:34 +00:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<versionRange>[1,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>build-info</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2022-01-05 08:12:09 +00:00
|
|
|
<ignore />
|
2020-03-20 17:17:34 +00:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2021-05-04 10:37:26 +00:00
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>io.spring.javaformat</groupId>
|
|
|
|
<artifactId>spring-javaformat-maven-plugin</artifactId>
|
|
|
|
<versionRange>[0,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>validate</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2022-01-05 08:12:09 +00:00
|
|
|
<ignore />
|
2021-05-04 10:37:26 +00:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
2020-03-20 17:17:34 +00:00
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2024-08-19 11:59:58 +00:00
|
|
|
</project>
|