|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>io.netifi.proteus.quickstart</groupId> |
5 | 5 | <artifactId>proteus-quickstart</artifactId> |
6 | | - <version>1.6.0</version> |
| 6 | + <version>1.6.1</version> |
7 | 7 | <packaging>pom</packaging> |
8 | 8 | <name>multi</name> |
9 | 9 |
|
|
16 | 16 | <properties> |
17 | 17 | <maven.compiler.target>1.8</maven.compiler.target> |
18 | 18 | <maven.compiler.source>1.8</maven.compiler.source> |
19 | | - <protobufVersion>3.6.1</protobufVersion> |
20 | | - <rsocketRpcVersion>0.2.13.3</rsocketRpcVersion> |
| 19 | + <log4j2.version>2.11.2</log4j2.version> |
| 20 | + <proteus.bom.version>1.6.1</proteus.bom.version> |
| 21 | + <protobuf.version>3.6.1</protobuf.version> |
| 22 | + <rsocket.version>0.11.17.2</rsocket.version> |
| 23 | + <rsocket.rpc.version>0.2.13.3</rsocket.rpc.version> |
21 | 24 | </properties> |
22 | 25 |
|
23 | 26 | <dependencyManagement> |
24 | 27 | <dependencies> |
25 | 28 | <dependency> |
26 | 29 | <groupId>io.netifi.proteus</groupId> |
27 | | - <artifactId>proteus-rsocket-bom</artifactId> |
28 | | - <version>1.6.0</version> |
| 30 | + <artifactId>proteus-bom</artifactId> |
| 31 | + <version>${proteus.bom.version}</version> |
29 | 32 | <type>pom</type> |
30 | 33 | <scope>import</scope> |
31 | 34 | </dependency> |
32 | 35 | <dependency> |
33 | | - <groupId>io.netifi.proteus</groupId> |
34 | | - <artifactId>proteus-bom</artifactId> |
35 | | - <version>1.6.0</version> |
| 36 | + <groupId>org.apache.logging.log4j</groupId> |
| 37 | + <artifactId>log4j-bom</artifactId> |
| 38 | + <version>${log4j2.version}</version> |
36 | 39 | <type>pom</type> |
37 | 40 | <scope>import</scope> |
38 | 41 | </dependency> |
| 42 | + |
39 | 43 | <dependency> |
40 | | - <groupId>io.netifi.proteus</groupId> |
41 | | - <artifactId>proteus-common-dependencies</artifactId> |
42 | | - <version>1.6.0</version> |
43 | | - <type>pom</type> |
44 | | - <scope>import</scope> |
| 44 | + <groupId>com.google.protobuf</groupId> |
| 45 | + <artifactId>protobuf-java</artifactId> |
| 46 | + <version>${protobuf.version}</version> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>io.rsocket</groupId> |
| 50 | + <artifactId>rsocket-core</artifactId> |
| 51 | + <version>${rsocket.version}</version> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>io.rsocket</groupId> |
| 55 | + <artifactId>rsocket-transport-netty</artifactId> |
| 56 | + <version>${rsocket.version}</version> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>io.rsocket.rpc</groupId> |
| 60 | + <artifactId>rsocket-rpc-core</artifactId> |
| 61 | + <version>${rsocket.rpc.version}</version> |
45 | 62 | </dependency> |
46 | 63 | </dependencies> |
47 | 64 | </dependencyManagement> |
|
0 commit comments