|
1 | | -<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/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 4 | <modelVersion>4.0.0</modelVersion> |
3 | 5 |
|
4 | 6 | <parent> |
5 | 7 | <groupId>io.scalecube</groupId> |
6 | 8 | <artifactId>scalecube-parent</artifactId> |
7 | | - <version>0.3.12</version> |
| 9 | + <version>0.3.14</version> |
8 | 10 | </parent> |
9 | 11 |
|
10 | 12 | <artifactId>scalecube-reports</artifactId> |
|
55 | 57 | </scm> |
56 | 58 |
|
57 | 59 | <properties> |
58 | | - <junit.version>5.13.4</junit.version> |
59 | | - <mockito.version>5.19.0</mockito.version> |
60 | | - <hamcrest.version>1.3</hamcrest.version> |
61 | | - <reactor.version>2024.0.8</reactor.version> |
62 | | - <slf4j.version>1.7.36</slf4j.version> |
63 | | - <log4j.version>2.17.2</log4j.version> |
| 60 | + <scalecube-test-support.version>0.1.0</scalecube-test-support.version> |
64 | 61 |
|
65 | 62 | <distributionManagement.url>https://maven.pkg.github.com/scalecube/scalecube-reports |
66 | 63 | </distributionManagement.url> |
67 | 64 | <checkstyle.suppressions.location>checkstyle-suppressions.xml</checkstyle.suppressions.location> |
68 | 65 | </properties> |
69 | 66 |
|
70 | | - <dependencyManagement> |
71 | | - <dependencies> |
72 | | - <!-- Reactor --> |
73 | | - <dependency> |
74 | | - <groupId>io.projectreactor</groupId> |
75 | | - <artifactId>reactor-bom</artifactId> |
76 | | - <version>${reactor.version}</version> |
77 | | - <type>pom</type> |
78 | | - <scope>import</scope> |
79 | | - </dependency> |
80 | | - |
81 | | - <!-- Logging --> |
82 | | - <dependency> |
83 | | - <groupId>org.slf4j</groupId> |
84 | | - <artifactId>slf4j-api</artifactId> |
85 | | - <version>${slf4j.version}</version> |
86 | | - </dependency> |
87 | | - <dependency> |
88 | | - <groupId>org.apache.logging.log4j</groupId> |
89 | | - <artifactId>log4j-bom</artifactId> |
90 | | - <version>${log4j.version}</version> |
91 | | - <type>pom</type> |
92 | | - <scope>import</scope> |
93 | | - </dependency> |
94 | | - |
95 | | - <!-- Tests --> |
96 | | - <dependency> |
97 | | - <groupId>org.junit</groupId> |
98 | | - <artifactId>junit-bom</artifactId> |
99 | | - <version>${junit.version}</version> |
100 | | - <type>pom</type> |
101 | | - <scope>import</scope> |
102 | | - </dependency> |
103 | | - <dependency> |
104 | | - <groupId>org.mockito</groupId> |
105 | | - <artifactId>mockito-core</artifactId> |
106 | | - <version>${mockito.version}</version> |
107 | | - </dependency> |
108 | | - <dependency> |
109 | | - <groupId>org.mockito</groupId> |
110 | | - <artifactId>mockito-junit-jupiter</artifactId> |
111 | | - <version>${mockito.version}</version> |
112 | | - </dependency> |
113 | | - </dependencies> |
114 | | - </dependencyManagement> |
115 | | - |
116 | 67 | <dependencies> |
117 | 68 | <!-- Tests --> |
118 | 69 | <dependency> |
119 | | - <groupId>org.junit.jupiter</groupId> |
120 | | - <artifactId>junit-jupiter-api</artifactId> |
121 | | - <scope>test</scope> |
122 | | - </dependency> |
123 | | - <dependency> |
124 | | - <groupId>org.junit.jupiter</groupId> |
125 | | - <artifactId>junit-jupiter-engine</artifactId> |
126 | | - <scope>test</scope> |
127 | | - </dependency> |
128 | | - <dependency> |
129 | | - <groupId>org.junit.jupiter</groupId> |
130 | | - <artifactId>junit-jupiter-params</artifactId> |
131 | | - <scope>test</scope> |
132 | | - </dependency> |
133 | | - <dependency> |
134 | | - <groupId>io.projectreactor</groupId> |
135 | | - <artifactId>reactor-test</artifactId> |
136 | | - <scope>test</scope> |
137 | | - </dependency> |
138 | | - <dependency> |
139 | | - <groupId>org.assertj</groupId> |
140 | | - <artifactId>assertj-core</artifactId> |
141 | | - <version>3.25.3</version> |
| 70 | + <groupId>io.scalecube</groupId> |
| 71 | + <artifactId>scalecube-test-support</artifactId> |
| 72 | + <version>${scalecube-test-support.version}</version> |
142 | 73 | <scope>test</scope> |
143 | 74 | </dependency> |
144 | 75 | <dependency> |
|
147 | 78 | <version>5.9</version> |
148 | 79 | <scope>test</scope> |
149 | 80 | </dependency> |
150 | | - <dependency> |
151 | | - <groupId>org.slf4j</groupId> |
152 | | - <artifactId>slf4j-api</artifactId> |
153 | | - <scope>test</scope> |
154 | | - </dependency> |
155 | | - <dependency> |
156 | | - <groupId>org.apache.logging.log4j</groupId> |
157 | | - <artifactId>log4j-slf4j-impl</artifactId> |
158 | | - <scope>test</scope> |
159 | | - </dependency> |
160 | | - <dependency> |
161 | | - <groupId>org.apache.logging.log4j</groupId> |
162 | | - <artifactId>log4j-core</artifactId> |
163 | | - <scope>test</scope> |
164 | | - </dependency> |
165 | 81 | </dependencies> |
166 | 82 |
|
167 | 83 | </project> |
0 commit comments