|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 |
|
5 | 7 | <parent> |
6 | 8 | <groupId>io.scalecube</groupId> |
7 | 9 | <artifactId>scalecube-parent</artifactId> |
8 | | - <version>0.3.12</version> |
| 10 | + <version>0.3.14</version> |
9 | 11 | </parent> |
10 | 12 |
|
11 | 13 | <artifactId>scalecube-services-parent</artifactId> |
|
59 | 61 | <properties> |
60 | 62 | <scalecube-cluster.version>2.7.4</scalecube-cluster.version> |
61 | 63 | <scalecube-security.version>1.1.8</scalecube-security.version> |
62 | | - |
63 | | - <reactor.version>2024.0.8</reactor.version> |
64 | | - <netty.version>4.2.6.Final</netty.version> |
65 | | - <jackson.version>2.19.2</jackson.version> |
66 | | - <rsocket.version>1.1.5</rsocket.version> |
67 | | - <jsr305.version>3.0.2</jsr305.version> |
68 | | - <slf4j.version>1.7.36</slf4j.version> |
69 | | - |
70 | | - <mockito-junit.version>4.6.1</mockito-junit.version> |
71 | | - <junit-jupiter.version>5.8.2</junit-jupiter.version> |
72 | | - <hamcrest.version>1.3</hamcrest.version> |
73 | | - <log4j.version>2.17.2</log4j.version> |
74 | | - <vault-java-driver.version>5.1.0</vault-java-driver.version> |
75 | | - <testcontainers.version>1.20.4</testcontainers.version> |
| 64 | + <scalecube-test-support.version>0.1.0</scalecube-test-support.version> |
76 | 65 |
|
77 | 66 | <distributionManagement.url>https://maven.pkg.github.com/scalecube/scalecube-services |
78 | 67 | </distributionManagement.url> |
|
87 | 76 | <module>services-discovery</module> |
88 | 77 | <module>services-security</module> |
89 | 78 | <module>services-examples</module> |
90 | | - <module>services-testlib</module> |
91 | 79 | </modules> |
92 | 80 |
|
93 | 81 | <dependencyManagement> |
|
120 | 108 | <artifactId>scalecube-transport-netty</artifactId> |
121 | 109 | <version>${scalecube-cluster.version}</version> |
122 | 110 | </dependency> |
123 | | - |
124 | | - <!-- Reactor --> |
125 | | - <dependency> |
126 | | - <groupId>io.projectreactor</groupId> |
127 | | - <artifactId>reactor-bom</artifactId> |
128 | | - <version>${reactor.version}</version> |
129 | | - <type>pom</type> |
130 | | - <scope>import</scope> |
131 | | - </dependency> |
132 | | - |
133 | | - <!-- Netty --> |
134 | | - <dependency> |
135 | | - <groupId>io.netty</groupId> |
136 | | - <artifactId>netty-bom</artifactId> |
137 | | - <version>${netty.version}</version> |
138 | | - <type>pom</type> |
139 | | - <scope>import</scope> |
140 | | - </dependency> |
141 | | - |
142 | | - <!-- Logging --> |
143 | | - <dependency> |
144 | | - <groupId>org.slf4j</groupId> |
145 | | - <artifactId>slf4j-api</artifactId> |
146 | | - <version>${slf4j.version}</version> |
147 | | - </dependency> |
148 | | - <dependency> |
149 | | - <groupId>org.apache.logging.log4j</groupId> |
150 | | - <artifactId>log4j-bom</artifactId> |
151 | | - <version>${log4j.version}</version> |
152 | | - <type>pom</type> |
153 | | - <scope>import</scope> |
154 | | - </dependency> |
155 | | - |
156 | | - <!-- RSocket --> |
157 | | - <dependency> |
158 | | - <groupId>io.rsocket</groupId> |
159 | | - <artifactId>rsocket-bom</artifactId> |
160 | | - <version>${rsocket.version}</version> |
161 | | - <type>pom</type> |
162 | | - <scope>import</scope> |
163 | | - </dependency> |
164 | | - |
165 | | - <!-- Jackson --> |
166 | | - <dependency> |
167 | | - <groupId>com.fasterxml.jackson</groupId> |
168 | | - <artifactId>jackson-bom</artifactId> |
169 | | - <version>${jackson.version}</version> |
170 | | - <type>pom</type> |
171 | | - <scope>import</scope> |
172 | | - </dependency> |
173 | 111 | </dependencies> |
174 | 112 | </dependencyManagement> |
175 | 113 |
|
176 | 114 | <dependencies> |
177 | | - <!-- Test scope --> |
178 | | - <dependency> |
179 | | - <groupId>org.junit.jupiter</groupId> |
180 | | - <artifactId>junit-jupiter-engine</artifactId> |
181 | | - <version>${junit-jupiter.version}</version> |
182 | | - <scope>test</scope> |
183 | | - </dependency> |
184 | | - <dependency> |
185 | | - <groupId>org.junit.jupiter</groupId> |
186 | | - <artifactId>junit-jupiter-params</artifactId> |
187 | | - <version>${junit-jupiter.version}</version> |
188 | | - <scope>test</scope> |
189 | | - </dependency> |
190 | | - <dependency> |
191 | | - <groupId>org.mockito</groupId> |
192 | | - <artifactId>mockito-junit-jupiter</artifactId> |
193 | | - <version>${mockito-junit.version}</version> |
194 | | - <scope>test</scope> |
195 | | - </dependency> |
196 | | - <dependency> |
197 | | - <groupId>org.hamcrest</groupId> |
198 | | - <artifactId>hamcrest-all</artifactId> |
199 | | - <version>${hamcrest.version}</version> |
200 | | - <scope>test</scope> |
201 | | - </dependency> |
| 115 | + <!-- Tests --> |
202 | 116 | <dependency> |
203 | | - <groupId>io.projectreactor</groupId> |
204 | | - <artifactId>reactor-test</artifactId> |
| 117 | + <groupId>io.scalecube</groupId> |
| 118 | + <artifactId>scalecube-test-support</artifactId> |
| 119 | + <version>${scalecube-test-support.version}</version> |
205 | 120 | <scope>test</scope> |
206 | 121 | </dependency> |
207 | 122 | </dependencies> |
|
0 commit comments