|
10 | 10 |
|
11 | 11 | <properties>
|
12 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
13 |
| - <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
14 |
| - <exec-maven-plugin.version>3.0.0</exec-maven-plugin.version> |
15 | 13 | <main.verticle>io.vertx.howtos.hr.MainVerticle</main.verticle>
|
16 |
| - <mutiny-vertx.version>2.14.2</mutiny-vertx.version> |
17 |
| - <hibernate-reactive-core.version>1.0.0.Final</hibernate-reactive-core.version> |
18 |
| - <logback-classic.version>1.2.6</logback-classic.version> |
19 |
| - <testcontainers.version>1.16.0</testcontainers.version> |
20 |
| - <jackson-databind.version>2.13.0</jackson-databind.version> |
21 | 14 | </properties>
|
22 | 15 |
|
| 16 | + <dependencyManagement> |
| 17 | + <dependencies> |
| 18 | + <dependency> |
| 19 | + <groupId>io.vertx</groupId> |
| 20 | + <artifactId>vertx-stack-depchain</artifactId> |
| 21 | + <version>4.3.7</version> |
| 22 | + <type>pom</type> |
| 23 | + <scope>import</scope> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>io.smallrye.reactive</groupId> |
| 27 | + <artifactId>vertx-mutiny-clients-bom</artifactId> |
| 28 | + <version>3.2.0</version> |
| 29 | + <type>pom</type> |
| 30 | + <scope>import</scope> |
| 31 | + </dependency> |
| 32 | + </dependencies> |
| 33 | + </dependencyManagement> |
| 34 | + |
23 | 35 | <dependencies>
|
24 | 36 | <dependency>
|
25 | 37 | <groupId>io.smallrye.reactive</groupId>
|
26 | 38 | <artifactId>smallrye-mutiny-vertx-core</artifactId>
|
27 |
| - <version>${mutiny-vertx.version}</version> |
28 | 39 | </dependency>
|
29 | 40 | <dependency>
|
30 | 41 | <groupId>io.smallrye.reactive</groupId>
|
31 | 42 | <artifactId>smallrye-mutiny-vertx-web</artifactId>
|
32 |
| - <version>${mutiny-vertx.version}</version> |
33 | 43 | </dependency>
|
34 | 44 | <dependency>
|
35 | 45 | <groupId>io.smallrye.reactive</groupId>
|
36 | 46 | <artifactId>smallrye-mutiny-vertx-pg-client</artifactId>
|
37 |
| - <version>${mutiny-vertx.version}</version> |
38 | 47 | </dependency>
|
39 | 48 | <dependency>
|
40 | 49 | <groupId>org.hibernate.reactive</groupId>
|
41 | 50 | <artifactId>hibernate-reactive-core</artifactId>
|
42 |
| - <version>${hibernate-reactive-core.version}</version> |
| 51 | + <version>1.1.9.Final</version> |
43 | 52 | </dependency>
|
44 | 53 | <dependency>
|
45 | 54 | <groupId>com.fasterxml.jackson.core</groupId>
|
46 | 55 | <artifactId>jackson-databind</artifactId>
|
47 |
| - <version>${jackson-databind.version}</version> |
| 56 | + <version>2.14.2</version> |
48 | 57 | </dependency>
|
49 | 58 | <dependency>
|
50 | 59 | <groupId>ch.qos.logback</groupId>
|
51 | 60 | <artifactId>logback-classic</artifactId>
|
52 |
| - <version>${logback-classic.version}</version> |
| 61 | + <version>1.4.6</version> |
53 | 62 | </dependency>
|
54 | 63 | <dependency>
|
55 | 64 | <groupId>org.testcontainers</groupId>
|
56 | 65 | <artifactId>postgresql</artifactId>
|
57 |
| - <version>${testcontainers.version}</version> |
| 66 | + <version>1.17.6</version> |
58 | 67 | </dependency>
|
59 | 68 | </dependencies>
|
60 | 69 |
|
|
63 | 72 | <plugin>
|
64 | 73 | <groupId>org.apache.maven.plugins</groupId>
|
65 | 74 | <artifactId>maven-compiler-plugin</artifactId>
|
66 |
| - <version>${maven-compiler-plugin.version}</version> |
| 75 | + <version>3.10.1</version> |
67 | 76 | <configuration>
|
68 | 77 | <release>11</release>
|
69 | 78 | </configuration>
|
70 | 79 | </plugin>
|
71 | 80 | <plugin>
|
72 | 81 | <groupId>org.codehaus.mojo</groupId>
|
73 | 82 | <artifactId>exec-maven-plugin</artifactId>
|
74 |
| - <version>${exec-maven-plugin.version}</version> |
| 83 | + <version>3.0.0</version> |
75 | 84 | <configuration>
|
76 | 85 | <mainClass>${main.verticle}</mainClass>
|
77 | 86 | </configuration>
|
|
0 commit comments