Skip to content

Commit

Permalink
Some cleanup in pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-punko committed Jan 19, 2024
1 parent 4c8faba commit 58f2ec5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<java.version>17</java.version>

<spring.version>3.1.7</spring.version>
<spring-boot.version>3.1.7</spring-boot.version>
<mapstruct.version>1.5.5.Final</mapstruct.version>
<lombok.version>1.18.30</lombok.version>

Expand All @@ -36,7 +36,7 @@
<!-- Import dependency management for Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.version}</version>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -125,7 +125,7 @@
</exclusions>
</dependency>

<!-- Web-Sockets -->
<!-- Web-Sockets -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
Expand Down Expand Up @@ -170,7 +170,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.version}</version>
<version>${spring-boot.version}</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -217,18 +217,18 @@
</goals>
</execution>
<execution>
<id>generate-code-coverage-report</id>
<phase>test</phase>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/configs/*</exclude>
<exclude>**/dto/*</exclude>
<exclude>**/entities/*</exclude>
<exclude>**/configs/**</exclude>
<exclude>**/dto/**</exclude>
<exclude>**/entities/**</exclude>
</excludes>
</configuration>
</plugin>
Expand Down

0 comments on commit 58f2ec5

Please sign in to comment.