|
29 | 29 | <tag/> |
30 | 30 | <url/> |
31 | 31 | </scm> |
| 32 | + |
32 | 33 | <properties> |
33 | 34 | <java.version>17</java.version> |
34 | 35 | <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> |
35 | 38 | </properties> |
36 | 39 |
|
37 | 40 | <dependencyManagement> |
38 | 41 | <dependencies> |
39 | 42 | <dependency> |
40 | 43 | <groupId>io.cucumber</groupId> |
41 | 44 | <artifactId>cucumber-bom</artifactId> |
42 | | - <version>7.22.2</version> |
| 45 | + <version>${cucumber.version}</version> |
43 | 46 | <type>pom</type> |
44 | 47 | <scope>import</scope> |
45 | 48 | </dependency> |
46 | 49 | <dependency> |
47 | 50 | <groupId>io.rest-assured</groupId> |
48 | 51 | <artifactId>rest-assured-bom</artifactId> |
49 | | - <version>5.5.5</version> |
| 52 | + <version>${rest-assured.version}</version> |
50 | 53 | <type>pom</type> |
51 | 54 | <scope>import</scope> |
52 | 55 | </dependency> |
|
60 | 63 | <artifactId>spring-boot-starter-actuator</artifactId> |
61 | 64 | </dependency> |
62 | 65 |
|
63 | | - <!-- https://mvnrepository.com/artifact/org.springframework.kafka/spring-kafka --> |
64 | 66 | <dependency> |
65 | 67 | <groupId>org.springframework.kafka</groupId> |
66 | 68 | <artifactId>spring-kafka</artifactId> |
67 | | - <version>3.3.3</version> |
68 | 69 | </dependency> |
69 | 70 |
|
70 | 71 | <dependency> |
|
140 | 141 | <dependency> |
141 | 142 | <groupId>org.projectlombok</groupId> |
142 | 143 | <artifactId>lombok</artifactId> |
143 | | - <version>1.18.36</version> |
144 | 144 | <scope>provided</scope> |
145 | 145 | </dependency> |
146 | 146 | </dependencies> |
|
155 | 155 | <plugin> |
156 | 156 | <groupId>org.apache.maven.plugins</groupId> |
157 | 157 | <artifactId>maven-compiler-plugin</artifactId> |
158 | | - <version>3.13.0</version> |
159 | 158 | <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> |
163 | 162 | <annotationProcessorPaths> |
164 | 163 | <path> |
165 | 164 | <groupId>org.projectlombok</groupId> |
166 | 165 | <artifactId>lombok</artifactId> |
167 | | - <version>1.18.36</version> |
168 | 166 | </path> |
169 | 167 | </annotationProcessorPaths> |
170 | 168 | </configuration> |
|
188 | 186 | <plugin> |
189 | 187 | <groupId>org.jacoco</groupId> |
190 | 188 | <artifactId>jacoco-maven-plugin</artifactId> |
191 | | - <version>0.8.13</version> |
192 | 189 | <executions> |
193 | 190 | <execution> |
194 | 191 | <id>jacoco-initialize</id> |
|
0 commit comments