|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | 5 | <artifactId>scalecube-services-parent</artifactId> |
6 | | - <version>2.8.11-SNAPSHOT</version> |
| 6 | + <version>2.9.0-SNAPSHOT</version> |
7 | 7 |
|
8 | 8 | <parent> |
9 | 9 | <groupId>io.scalecube</groupId> |
10 | 10 | <artifactId>scalecube-parent-pom</artifactId> |
11 | | - <version>0.0.19</version> |
| 11 | + <version>0.1.0-RC1</version> |
12 | 12 | </parent> |
13 | 13 | <packaging>pom</packaging> |
14 | 14 |
|
|
23 | 23 |
|
24 | 24 | <properties> |
25 | 25 | <jackson.version>2.10.0.pr1</jackson.version> |
26 | | - <scalecube-cluster.version>2.4.9</scalecube-cluster.version> |
27 | | - <scalecube-commons.version>1.0.1</scalecube-commons.version> |
| 26 | + <scalecube-cluster.version>2.4.10</scalecube-cluster.version> |
| 27 | + <scalecube-commons.version>1.0.2</scalecube-commons.version> |
28 | 28 | <scalecube-benchmarks.version>1.2.2</scalecube-benchmarks.version> |
29 | | - <scalecube-config.version>0.3.11</scalecube-config.version> |
30 | | - <reactor.version>Californium-SR8</reactor.version> |
31 | | - <rsocket.version>0.11.21</rsocket.version> |
| 29 | + <scalecube-config.version>0.4.3</scalecube-config.version> |
| 30 | + <reactor.version>Dysprosium-RELEASE</reactor.version> |
| 31 | + <rsocket.version>1.0.0-RC5</rsocket.version> |
32 | 32 | <metrics.version>3.1.2</metrics.version> |
33 | 33 | <protostuff.version>1.6.0</protostuff.version> |
34 | | - <netty.version>4.1.36.Final</netty.version> |
35 | | - <reactor-netty.version>0.8.8.RELEASE</reactor-netty.version> |
36 | | - <slf4j.version>1.7.7</slf4j.version> |
| 34 | + <netty.version>4.1.37.Final</netty.version> |
| 35 | + <reactor-netty.version>0.9.0.RELEASE</reactor-netty.version> |
| 36 | + <slf4j.version>1.7.30</slf4j.version> |
37 | 37 | <log4j.version>2.11.0</log4j.version> |
38 | 38 | <disruptor.version>3.4.2</disruptor.version> |
39 | 39 | <jsr305.version>3.0.2</jsr305.version> |
|
69 | 69 | <artifactId>scalecube-cluster</artifactId> |
70 | 70 | <version>${scalecube-cluster.version}</version> |
71 | 71 | </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>io.scalecube</groupId> |
| 74 | + <artifactId>scalecube-codec-jackson</artifactId> |
| 75 | + <version>${scalecube-cluster.version}</version> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>io.scalecube</groupId> |
| 79 | + <artifactId>scalecube-codec-jackson-smile</artifactId> |
| 80 | + <version>${scalecube-cluster.version}</version> |
| 81 | + </dependency> |
72 | 82 |
|
73 | 83 | <!-- Scalecube Config --> |
74 | 84 | <dependency> |
|
112 | 122 | <!-- RSocket --> |
113 | 123 | <dependency> |
114 | 124 | <groupId>io.rsocket</groupId> |
115 | | - <artifactId>rsocket-core</artifactId> |
116 | | - <version>${rsocket.version}</version> |
117 | | - </dependency> |
118 | | - <dependency> |
119 | | - <groupId>io.rsocket</groupId> |
120 | | - <artifactId>rsocket-transport-netty</artifactId> |
| 125 | + <artifactId>rsocket-bom</artifactId> |
121 | 126 | <version>${rsocket.version}</version> |
| 127 | + <type>pom</type> |
| 128 | + <scope>import</scope> |
122 | 129 | </dependency> |
123 | 130 |
|
124 | 131 | <!-- Jackson --> |
125 | 132 | <dependency> |
126 | | - <groupId>com.fasterxml.jackson.core</groupId> |
127 | | - <artifactId>jackson-core</artifactId> |
128 | | - <version>${jackson.version}</version> |
129 | | - </dependency> |
130 | | - <dependency> |
131 | | - <groupId>com.fasterxml.jackson.core</groupId> |
132 | | - <artifactId>jackson-databind</artifactId> |
133 | | - <version>${jackson.version}</version> |
134 | | - </dependency> |
135 | | - <dependency> |
136 | | - <groupId>com.fasterxml.jackson.datatype</groupId> |
137 | | - <artifactId>jackson-datatype-jsr310</artifactId> |
| 133 | + <groupId>com.fasterxml.jackson</groupId> |
| 134 | + <artifactId>jackson-bom</artifactId> |
138 | 135 | <version>${jackson.version}</version> |
| 136 | + <type>pom</type> |
| 137 | + <scope>import</scope> |
139 | 138 | </dependency> |
140 | 139 |
|
141 | 140 | <!-- Protostuff/Protobuf --> |
|
161 | 160 | </dependency> |
162 | 161 |
|
163 | 162 | <!-- Netty --> |
164 | | - <dependency> |
165 | | - <groupId>io.projectreactor.netty</groupId> |
166 | | - <artifactId>reactor-netty</artifactId> |
167 | | - <version>${reactor-netty.version}</version> |
168 | | - </dependency> |
169 | 163 | <dependency> |
170 | 164 | <groupId>io.netty</groupId> |
171 | | - <artifactId>netty-common</artifactId> |
172 | | - <version>${netty.version}</version> |
173 | | - </dependency> |
174 | | - <dependency> |
175 | | - <groupId>io.netty</groupId> |
176 | | - <artifactId>netty-buffer</artifactId> |
| 165 | + <artifactId>netty-bom</artifactId> |
177 | 166 | <version>${netty.version}</version> |
| 167 | + <type>pom</type> |
| 168 | + <scope>import</scope> |
178 | 169 | </dependency> |
179 | 170 |
|
180 | 171 | <!-- Scalecube benchmarks --> |
|
259 | 250 | </snapshots> |
260 | 251 | <id>bintray</id> |
261 | 252 | <name>bintray</name> |
262 | | - <url>http://jcenter.bintray.com</url> |
| 253 | + <url>https://jcenter.bintray.com</url> |
263 | 254 | </repository> |
264 | 255 | <repository> |
265 | 256 | <snapshots> |
266 | 257 | <enabled>false</enabled> |
267 | 258 | </snapshots> |
268 | 259 | <id>central</id> |
269 | 260 | <name>central</name> |
270 | | - <url>http://repo1.maven.org</url> |
| 261 | + <url>https://repo1.maven.org</url> |
271 | 262 | </repository> |
272 | 263 | </repositories> |
273 | 264 |
|
|
286 | 277 | </snapshots> |
287 | 278 | <id>central</id> |
288 | 279 | <name>bintray-plugins</name> |
289 | | - <url>http://jcenter.bintray.com</url> |
| 280 | + <url>https://jcenter.bintray.com</url> |
290 | 281 | </pluginRepository> |
291 | 282 | </pluginRepositories> |
292 | 283 |
|
|
0 commit comments