Skip to content

Commit

Permalink
Move processor versions because they are part of product stack
Browse files Browse the repository at this point in the history
  • Loading branch information
pavetok committed Mar 21, 2024
1 parent 92e9abf commit 23efe73
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 7 additions & 2 deletions lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,17 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<version>1.18.32</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${mapstruct.version}</version>
<version>1.5.5.Final</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.5.5.Final</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
4 changes: 0 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

<properties>
<revision>0.1.0-SNAPSHOT</revision>
<lombok.version>1.18.32</lombok.version>
<mapstruct.version>1.5.5.Final</mapstruct.version>
<jacoco.version>0.8.11</jacoco.version>
<skipTests>false</skipTests> <!--unit, integration and e2e tests-->
<skipUnits>${skipTests}</skipUnits> <!--unit tests only-->
Expand Down Expand Up @@ -215,12 +213,10 @@
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstruct.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down

0 comments on commit 23efe73

Please sign in to comment.