Skip to content

Commit 2b00240

Browse files
committed
Bump parent, added tests dependencies
1 parent 0047290 commit 2b00240

File tree

1 file changed

+70
-21
lines changed

1 file changed

+70
-21
lines changed

pom.xml

Lines changed: 70 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.scalecube</groupId>
88
<artifactId>scalecube-parent</artifactId>
9-
<version>0.3.12</version>
9+
<version>0.3.14</version>
1010
</parent>
1111

1212
<artifactId>scalecube-test-support</artifactId>
@@ -57,18 +57,56 @@
5757
</scm>
5858

5959
<properties>
60-
<junit.version>5.13.4</junit.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>
64-
6560
<distributionManagement.url>https://maven.pkg.github.com/scalecube/scalecube-test-support
6661
</distributionManagement.url>
6762
<checkstyle.suppressions.location>checkstyle-suppressions.xml</checkstyle.suppressions.location>
6863
</properties>
6964

7065
<dependencyManagement>
7166
<dependencies>
67+
<!-- Reactor -->
68+
<dependency>
69+
<groupId>io.projectreactor</groupId>
70+
<artifactId>reactor-bom</artifactId>
71+
<version>${reactor.version}</version>
72+
<type>pom</type>
73+
<scope>import</scope>
74+
</dependency>
75+
<!-- JUnit -->
76+
<dependency>
77+
<groupId>org.junit</groupId>
78+
<artifactId>junit-bom</artifactId>
79+
<version>${junit.version}</version>
80+
<type>pom</type>
81+
<scope>import</scope>
82+
</dependency>
83+
<!-- Mockito -->
84+
<dependency>
85+
<groupId>org.mockito</groupId>
86+
<artifactId>mockito-bom</artifactId>
87+
<version>${mockito.version}</version>
88+
<type>pom</type>
89+
<scope>import</scope>
90+
</dependency>
91+
<dependency>
92+
<groupId>org.mockito</groupId>
93+
<artifactId>mockito-inline</artifactId>
94+
<version>${mockito-inline.version}</version>
95+
</dependency>
96+
<!-- Hamcrest -->
97+
<dependency>
98+
<groupId>org.hamcrest</groupId>
99+
<artifactId>hamcrest-all</artifactId>
100+
<version>${hamcrest.version}</version>
101+
</dependency>
102+
<!-- AssertJ -->
103+
<dependency>
104+
<groupId>org.assertj</groupId>
105+
<artifactId>assertj-bom</artifactId>
106+
<version>${assertj.version}</version>
107+
<type>pom</type>
108+
<scope>import</scope>
109+
</dependency>
72110
<!-- Logging -->
73111
<dependency>
74112
<groupId>org.slf4j</groupId>
@@ -82,48 +120,59 @@
82120
<type>pom</type>
83121
<scope>import</scope>
84122
</dependency>
85-
<!-- Tests -->
86-
<dependency>
87-
<groupId>org.junit</groupId>
88-
<artifactId>junit-bom</artifactId>
89-
<version>${junit.version}</version>
90-
<type>pom</type>
91-
<scope>import</scope>
92-
</dependency>
93123
</dependencies>
94124
</dependencyManagement>
95125

96126
<dependencies>
127+
<!-- Tests -->
97128
<dependency>
98129
<groupId>org.slf4j</groupId>
99130
<artifactId>slf4j-api</artifactId>
100-
<scope>provided</scope>
101131
</dependency>
132+
<!-- JUnit -->
102133
<dependency>
103134
<groupId>org.junit.jupiter</groupId>
104135
<artifactId>junit-jupiter-api</artifactId>
105-
<scope>provided</scope>
106136
</dependency>
107137
<dependency>
108138
<groupId>org.junit.jupiter</groupId>
109139
<artifactId>junit-jupiter-engine</artifactId>
110-
<scope>provided</scope>
111140
</dependency>
112141
<dependency>
113142
<groupId>org.junit.jupiter</groupId>
114143
<artifactId>junit-jupiter-params</artifactId>
115-
<scope>provided</scope>
116144
</dependency>
117-
<!-- Tests -->
145+
<!-- Mockito -->
146+
<dependency>
147+
<groupId>org.mockito</groupId>
148+
<artifactId>mockito-junit-jupiter</artifactId>
149+
</dependency>
150+
<dependency>
151+
<groupId>org.mockito</groupId>
152+
<artifactId>mockito-inline</artifactId>
153+
</dependency>
154+
<!-- Hamcrest -->
155+
<dependency>
156+
<groupId>org.hamcrest</groupId>
157+
<artifactId>hamcrest-all</artifactId>
158+
</dependency>
159+
<dependency>
160+
<groupId>io.projectreactor</groupId>
161+
<artifactId>reactor-test</artifactId>
162+
</dependency>
163+
<!-- AssertJ -->
164+
<dependency>
165+
<groupId>org.assertj</groupId>
166+
<artifactId>assertj-core</artifactId>
167+
</dependency>
168+
<!-- Logging -->
118169
<dependency>
119170
<groupId>org.apache.logging.log4j</groupId>
120171
<artifactId>log4j-slf4j-impl</artifactId>
121-
<scope>test</scope>
122172
</dependency>
123173
<dependency>
124174
<groupId>org.apache.logging.log4j</groupId>
125175
<artifactId>log4j-core</artifactId>
126-
<scope>test</scope>
127176
</dependency>
128177
</dependencies>
129178

0 commit comments

Comments
 (0)