changed pom.xml to adjust the checkstyle plugin

This commit is contained in:
TomPGrid 2025-02-27 14:06:53 +01:00
parent 82e86404ce
commit 43f4a3f015

44
pom.xml
View file

@ -6,35 +6,15 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.0</version>
<relativePath />
<relativePath></relativePath>
</parent>
<groupId>org.springframework.samples</groupId>
<artifactId>spring-petclinic</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>3.4.0-SNAPSHOT</version>
<name>petclinic</name>
<scm>
<connection>scm:git:git://github.com/TomP101/spring-petclinic.git</connection>
<developerConnection>scm:git:ssh://git@github.com/TomP101/spring-petclinic.git</developerConnection>
<url>https://github.com/TomP101/spring-petclinic</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>nexus</id>
<name>releases</name>
<url>http://localhost:8081/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>nexus</id>
<name>snapshots</name>
<url>http://localhost:8081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<!-- Generic properties -->
@ -43,7 +23,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Important for reproducible builds. Update using e.g. ./mvnw versions:set
-DnewVersion=... -->
<project.build.outputTimestamp>2025-01-21T15:41:45Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2024-11-28T14:37:52Z</project.build.outputTimestamp>
<!-- Web dependencies -->
<webjars-locator.version>1.0.1</webjars-locator.version>
@ -242,6 +222,18 @@
<propertyExpansion>config_loc=${basedir}/src/checkstyle/</propertyExpansion>
</configuration>
</execution>
<execution>
<id>generate-checkstyle-report</id>
<phase>verify</phase>
<goals>
<goal>checkstyle</goal>
</goals>
<configuration>
<configLocation>src/checkstyle/nohttp-checkstyle.xml</configLocation>
<outputFile>target/site/checkstyle.html</outputFile>
<outputFileFormat>plain</outputFileFormat>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
@ -434,7 +426,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore />
<ignore></ignore>
</action>
</pluginExecution>
<pluginExecution>
@ -447,7 +439,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore />
<ignore></ignore>
</action>
</pluginExecution>
<pluginExecution>
@ -460,7 +452,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore />
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>