|
31 | 31 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
32 | 32 |
|
33 | 33 | <embedded-postgres-binaries.version>14.11.0</embedded-postgres-binaries.version> |
| 34 | + <commons-codec.version>1.17.0</commons-codec.version> |
| 35 | + <commons-compress.version>1.26.2</commons-compress.version> |
| 36 | + <commons-io.version>2.16.1</commons-io.version> |
| 37 | + <commons-lang3.version>3.14.0</commons-lang3.version> |
| 38 | + <flyway.version>7.15.0</flyway.version> |
| 39 | + <junit5.version>5.10.3</junit5.version> |
| 40 | + <junit4.version>4.13.2</junit4.version> |
| 41 | + <liquibase.version>4.28.0</liquibase.version> |
| 42 | + <mockito.version>4.11.0</mockito.version> |
| 43 | + <pmd.version>7.3.0</pmd.version> |
| 44 | + <postgresql.version>42.7.3</postgresql.version> |
| 45 | + <slf4j.version>2.0.13</slf4j.version> |
| 46 | + <xz.version>1.9</xz.version> |
| 47 | + <maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version> |
| 48 | + <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
| 49 | + <maven-javadoc-plugin.version>3.7.0</maven-javadoc-plugin.version> |
| 50 | + <maven-pmd-plugin.version>3.23.0</maven-pmd-plugin.version> |
| 51 | + <maven-release-plugin.version>3.1.0</maven-release-plugin.version> |
| 52 | + <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
| 53 | + <maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version> |
34 | 54 | </properties> |
35 | 55 |
|
36 | 56 | <url>https://github.com/zonkyio/embedded-postgres</url> |
|
76 | 96 | <dependency> |
77 | 97 | <groupId>commons-io</groupId> |
78 | 98 | <artifactId>commons-io</artifactId> |
79 | | - <version>2.16.1</version> |
| 99 | + <version>${commons-io.version}</version> |
80 | 100 | </dependency> |
81 | 101 | <dependency> |
82 | 102 | <groupId>org.apache.commons</groupId> |
83 | 103 | <artifactId>commons-lang3</artifactId> |
84 | | - <version>3.14.0</version> |
| 104 | + <version>${commons-lang3.version}</version> |
85 | 105 | </dependency> |
86 | 106 | <dependency> |
87 | 107 | <groupId>org.apache.commons</groupId> |
88 | 108 | <artifactId>commons-compress</artifactId> |
89 | | - <version>1.26.2</version> |
| 109 | + <version>${commons-compress.version}</version> |
90 | 110 | </dependency> |
91 | 111 | <dependency> |
92 | 112 | <groupId>commons-codec</groupId> |
93 | 113 | <artifactId>commons-codec</artifactId> |
94 | | - <version>1.17.0</version> |
| 114 | + <version>${commons-codec.version}</version> |
95 | 115 | </dependency> |
96 | 116 | <dependency> |
97 | 117 | <groupId>org.junit</groupId> |
98 | 118 | <artifactId>junit-bom</artifactId> |
99 | | - <version>5.10.3</version> |
| 119 | + <version>${junit5.version}</version> |
100 | 120 | <type>pom</type> |
101 | 121 | <scope>import</scope> |
102 | 122 | </dependency> |
103 | 123 | <dependency> |
104 | 124 | <groupId>org.slf4j</groupId> |
105 | 125 | <artifactId>slf4j-bom</artifactId> |
106 | | - <version>2.0.13</version> |
| 126 | + <version>${slf4j.version}</version> |
107 | 127 | <type>pom</type> |
108 | 128 | <scope>import</scope> |
109 | 129 | </dependency> |
|
150 | 170 | <dependency> |
151 | 171 | <groupId>org.tukaani</groupId> |
152 | 172 | <artifactId>xz</artifactId> |
153 | | - <version>1.9</version> |
| 173 | + <version>${xz.version}</version> |
154 | 174 | </dependency> |
155 | 175 | <dependency> |
156 | 176 | <groupId>commons-io</groupId> |
|
163 | 183 | <dependency> |
164 | 184 | <groupId>org.flywaydb</groupId> |
165 | 185 | <artifactId>flyway-core</artifactId> |
166 | | - <version>7.15.0</version> |
| 186 | + <version>${flyway.version}</version> |
167 | 187 | <optional>true</optional> |
168 | 188 | </dependency> |
169 | 189 | <dependency> |
170 | 190 | <groupId>org.liquibase</groupId> |
171 | 191 | <artifactId>liquibase-core</artifactId> |
172 | | - <version>4.28.0</version> |
| 192 | + <version>${liquibase.version}</version> |
173 | 193 | <optional>true</optional> |
174 | 194 | </dependency> |
175 | 195 | <dependency> |
176 | 196 | <groupId>org.postgresql</groupId> |
177 | 197 | <artifactId>postgresql</artifactId> |
178 | | - <version>42.7.3</version> |
| 198 | + <version>${postgresql.version}</version> |
179 | 199 | </dependency> |
180 | 200 | <dependency> |
181 | 201 | <groupId>junit</groupId> |
182 | 202 | <artifactId>junit</artifactId> |
183 | | - <version>4.13.2</version> |
| 203 | + <version>${junit4.version}</version> |
184 | 204 | <scope>provided</scope> |
185 | 205 | <optional>true</optional> |
186 | 206 | </dependency> |
|
209 | 229 | <dependency> |
210 | 230 | <groupId>org.mockito</groupId> |
211 | 231 | <artifactId>mockito-core</artifactId> |
212 | | - <version>4.11.0</version><!-- last Java 8 version --> |
| 232 | + <version>${mockito.version}</version><!-- last Java 8 version --> |
213 | 233 | <scope>test</scope> |
214 | 234 | </dependency> |
215 | 235 | </dependencies> |
|
219 | 239 | <plugin> |
220 | 240 | <groupId>org.apache.maven.plugins</groupId> |
221 | 241 | <artifactId>maven-enforcer-plugin</artifactId> |
222 | | - <version>3.5.0</version> |
| 242 | + <version>${maven-enforcer-plugin.version}</version> |
223 | 243 | <executions> |
224 | 244 | <execution> |
225 | 245 | <id>enforce-versions</id> |
|
237 | 257 | </plugin> |
238 | 258 | <plugin> |
239 | 259 | <artifactId>maven-surefire-plugin</artifactId> |
240 | | - <version>3.3.1</version> |
| 260 | + <version>${maven-surefire-plugin.version}</version> |
241 | 261 | </plugin> |
242 | 262 | <plugin> |
243 | 263 | <artifactId>maven-pmd-plugin</artifactId> |
244 | | - <version>3.23.0</version> |
| 264 | + <version>${maven-pmd-plugin.version}</version> |
245 | 265 | <executions> |
246 | 266 | <execution> |
247 | 267 | <phase>verify</phase> |
|
254 | 274 | <dependency> |
255 | 275 | <groupId>net.sourceforge.pmd</groupId> |
256 | 276 | <artifactId>pmd-core</artifactId> |
257 | | - <version>7.3.0</version> |
| 277 | + <version>${pmd.version}</version> |
258 | 278 | <scope>compile</scope> |
259 | 279 | </dependency> |
260 | 280 | <dependency> |
261 | 281 | <groupId>net.sourceforge.pmd</groupId> |
262 | 282 | <artifactId>pmd-java</artifactId> |
263 | | - <version>7.3.0</version> |
| 283 | + <version>${pmd.version}</version> |
264 | 284 | <scope>compile</scope> |
265 | 285 | </dependency> |
266 | 286 | </dependencies> |
|
276 | 296 | <plugin> |
277 | 297 | <groupId>org.apache.maven.plugins</groupId> |
278 | 298 | <artifactId>maven-source-plugin</artifactId> |
279 | | - <version>3.3.1</version> |
| 299 | + <version>${maven-source-plugin.version}</version> |
280 | 300 | <executions> |
281 | 301 | <execution> |
282 | 302 | <id>attach-sources</id> |
|
289 | 309 | <plugin> |
290 | 310 | <groupId>org.apache.maven.plugins</groupId> |
291 | 311 | <artifactId>maven-javadoc-plugin</artifactId> |
292 | | - <version>3.7.0</version> |
| 312 | + <version>${maven-javadoc-plugin.version}</version> |
293 | 313 | <executions> |
294 | 314 | <execution> |
295 | 315 | <id>attach-javadocs</id> |
|
305 | 325 | <plugin> |
306 | 326 | <groupId>org.apache.maven.plugins</groupId> |
307 | 327 | <artifactId>maven-release-plugin</artifactId> |
308 | | - <version>3.1.0</version> |
| 328 | + <version>${maven-release-plugin.version}</version> |
309 | 329 | <configuration> |
310 | 330 | <useReleaseProfile>false</useReleaseProfile> |
311 | 331 | <releaseProfiles>release</releaseProfiles> |
|
323 | 343 | <plugin> |
324 | 344 | <groupId>org.apache.maven.plugins</groupId> |
325 | 345 | <artifactId>maven-gpg-plugin</artifactId> |
326 | | - <version>1.6</version> |
| 346 | + <version>${maven-gpg-plugin.version}</version> |
327 | 347 | <executions> |
328 | 348 | <execution> |
329 | 349 | <id>sign-artifacts</id> |
|
0 commit comments