|
6 | 6 |
|
7 | 7 | <groupId>kafka.vertx</groupId> |
8 | 8 | <artifactId>demo</artifactId> |
9 | | - <version>0.0.1</version> |
| 9 | + <version>0.0.2-SNAPSHOT</version> |
10 | 10 |
|
11 | 11 | <properties> |
12 | 12 | <kafka.version>2.3.0</kafka.version> |
13 | | - <vertx.version>3.8.4</vertx.version> |
| 13 | + <vertx.version>4.0.0-SNAPSHOT</vertx.version> |
14 | 14 | </properties> |
15 | 15 |
|
16 | | - <dependencies> |
| 16 | + <dependencyManagement> |
| 17 | + <dependencies> |
| 18 | + <dependency> |
| 19 | + <groupId>io.vertx</groupId> |
| 20 | + <artifactId>vertx-dependencies</artifactId> |
| 21 | + <version>${vertx.version}</version> |
| 22 | + <type>pom</type> |
| 23 | + <scope>import</scope> |
| 24 | + </dependency> |
| 25 | + </dependencies> |
| 26 | + </dependencyManagement> |
17 | 27 |
|
| 28 | + <dependencies> |
18 | 29 | <dependency> |
19 | 30 | <groupId>io.vertx</groupId> |
20 | 31 | <artifactId>vertx-core</artifactId> |
21 | | - <version>${vertx.version}</version> |
22 | 32 | </dependency> |
23 | 33 | <dependency> |
24 | 34 | <groupId>io.vertx</groupId> |
25 | 35 | <artifactId>vertx-web</artifactId> |
26 | | - <version>${vertx.version}</version> |
27 | 36 | </dependency> |
28 | 37 | <dependency> |
29 | 38 | <groupId>io.vertx</groupId> |
30 | 39 | <artifactId>vertx-kafka-client</artifactId> |
31 | | - <version>${vertx.version}</version> |
32 | 40 | </dependency> |
33 | 41 | <dependency> |
34 | 42 | <groupId>io.vertx</groupId> |
35 | 43 | <artifactId>vertx-service-proxy</artifactId> |
36 | | - <version>${vertx.version}</version> |
37 | 44 | </dependency> |
38 | 45 | <dependency> |
39 | 46 | <groupId>io.vertx</groupId> |
40 | 47 | <artifactId>vertx-codegen</artifactId> |
41 | | - <version>${vertx.version}</version> |
42 | 48 | <scope>provided</scope> |
43 | 49 | </dependency> |
44 | 50 | <dependency> |
45 | 51 | <groupId>io.vertx</groupId> |
46 | 52 | <artifactId>vertx-codegen</artifactId> |
47 | | - <version>${vertx.version}</version> |
48 | 53 | <classifier>processor</classifier> |
49 | 54 | </dependency> |
50 | 55 | <dependency> |
51 | 56 | <groupId>io.vertx</groupId> |
52 | 57 | <artifactId>vertx-config</artifactId> |
53 | | - <version>${vertx.version}</version> |
54 | 58 | </dependency> |
55 | 59 | </dependencies> |
56 | 60 |
|
|
59 | 63 | <plugins> |
60 | 64 | <plugin> |
61 | 65 | <artifactId>maven-compiler-plugin</artifactId> |
62 | | - <version>3.1</version> |
| 66 | + <version>3.8.1</version> |
63 | 67 | <configuration> |
64 | 68 | <source>1.8</source> |
65 | 69 | <target>1.8</target> |
|
71 | 75 | <plugin> |
72 | 76 | <groupId>org.apache.maven.plugins</groupId> |
73 | 77 | <artifactId>maven-shade-plugin</artifactId> |
74 | | - <version>2.3</version> |
| 78 | + <version>3.2.2</version> |
75 | 79 | <executions> |
76 | 80 | <execution> |
77 | 81 | <phase>package</phase> |
|
91 | 95 | </transformers> |
92 | 96 | <artifactSet> |
93 | 97 | </artifactSet> |
94 | | - <outputFile>${project.build.directory}/${project.artifactId}-${project.version}-fat.jar</outputFile> |
| 98 | + <outputFile>${project.build.directory}/${project.artifactId}-${project.version}-all.jar</outputFile> |
95 | 99 | </configuration> |
96 | 100 | </execution> |
97 | 101 | </executions> |
|
0 commit comments