Skip to content

Commit f7bccf9

Browse files
committed
Clean up versions in pom.xml
1 parent 69d1426 commit f7bccf9

1 file changed

Lines changed: 8 additions & 11 deletions

File tree

memex/pom.xml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,27 @@
2929
<tag/>
3030
<url/>
3131
</scm>
32+
3233
<properties>
3334
<java.version>17</java.version>
3435
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36+
<cucumber.version>7.22.2</cucumber.version>
37+
<rest-assured.version>5.5.5</rest-assured.version>
3538
</properties>
3639

3740
<dependencyManagement>
3841
<dependencies>
3942
<dependency>
4043
<groupId>io.cucumber</groupId>
4144
<artifactId>cucumber-bom</artifactId>
42-
<version>7.22.2</version>
45+
<version>${cucumber.version}</version>
4346
<type>pom</type>
4447
<scope>import</scope>
4548
</dependency>
4649
<dependency>
4750
<groupId>io.rest-assured</groupId>
4851
<artifactId>rest-assured-bom</artifactId>
49-
<version>5.5.5</version>
52+
<version>${rest-assured.version}</version>
5053
<type>pom</type>
5154
<scope>import</scope>
5255
</dependency>
@@ -60,11 +63,9 @@
6063
<artifactId>spring-boot-starter-actuator</artifactId>
6164
</dependency>
6265

63-
<!-- https://mvnrepository.com/artifact/org.springframework.kafka/spring-kafka -->
6466
<dependency>
6567
<groupId>org.springframework.kafka</groupId>
6668
<artifactId>spring-kafka</artifactId>
67-
<version>3.3.3</version>
6869
</dependency>
6970

7071
<dependency>
@@ -140,7 +141,6 @@
140141
<dependency>
141142
<groupId>org.projectlombok</groupId>
142143
<artifactId>lombok</artifactId>
143-
<version>1.18.36</version>
144144
<scope>provided</scope>
145145
</dependency>
146146
</dependencies>
@@ -155,16 +155,14 @@
155155
<plugin>
156156
<groupId>org.apache.maven.plugins</groupId>
157157
<artifactId>maven-compiler-plugin</artifactId>
158-
<version>3.13.0</version>
159158
<configuration>
160-
<source>17</source>
161-
<target>17</target>
162-
<encoding>UTF-8</encoding>
159+
<source>${java.version}</source>
160+
<target>${java.version}</target>
161+
<encoding>${project.build.sourceEncoding}</encoding>
163162
<annotationProcessorPaths>
164163
<path>
165164
<groupId>org.projectlombok</groupId>
166165
<artifactId>lombok</artifactId>
167-
<version>1.18.36</version>
168166
</path>
169167
</annotationProcessorPaths>
170168
</configuration>
@@ -188,7 +186,6 @@
188186
<plugin>
189187
<groupId>org.jacoco</groupId>
190188
<artifactId>jacoco-maven-plugin</artifactId>
191-
<version>0.8.13</version>
192189
<executions>
193190
<execution>
194191
<id>jacoco-initialize</id>

0 commit comments

Comments
 (0)