|
6 | 6 | <parent> |
7 | 7 | <groupId>io.scalecube</groupId> |
8 | 8 | <artifactId>scalecube-parent</artifactId> |
9 | | - <version>0.3.12</version> |
| 9 | + <version>0.3.14</version> |
10 | 10 | </parent> |
11 | 11 |
|
12 | 12 | <artifactId>scalecube-test-support</artifactId> |
|
57 | 57 | </scm> |
58 | 58 |
|
59 | 59 | <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 | | - |
65 | 60 | <distributionManagement.url>https://maven.pkg.github.com/scalecube/scalecube-test-support |
66 | 61 | </distributionManagement.url> |
67 | 62 | <checkstyle.suppressions.location>checkstyle-suppressions.xml</checkstyle.suppressions.location> |
68 | 63 | </properties> |
69 | 64 |
|
70 | 65 | <dependencyManagement> |
71 | 66 | <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> |
72 | 110 | <!-- Logging --> |
73 | 111 | <dependency> |
74 | 112 | <groupId>org.slf4j</groupId> |
|
82 | 120 | <type>pom</type> |
83 | 121 | <scope>import</scope> |
84 | 122 | </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> |
93 | 123 | </dependencies> |
94 | 124 | </dependencyManagement> |
95 | 125 |
|
96 | 126 | <dependencies> |
| 127 | + <!-- Tests --> |
97 | 128 | <dependency> |
98 | 129 | <groupId>org.slf4j</groupId> |
99 | 130 | <artifactId>slf4j-api</artifactId> |
100 | | - <scope>provided</scope> |
101 | 131 | </dependency> |
| 132 | + <!-- JUnit --> |
102 | 133 | <dependency> |
103 | 134 | <groupId>org.junit.jupiter</groupId> |
104 | 135 | <artifactId>junit-jupiter-api</artifactId> |
105 | | - <scope>provided</scope> |
106 | 136 | </dependency> |
107 | 137 | <dependency> |
108 | 138 | <groupId>org.junit.jupiter</groupId> |
109 | 139 | <artifactId>junit-jupiter-engine</artifactId> |
110 | | - <scope>provided</scope> |
111 | 140 | </dependency> |
112 | 141 | <dependency> |
113 | 142 | <groupId>org.junit.jupiter</groupId> |
114 | 143 | <artifactId>junit-jupiter-params</artifactId> |
115 | | - <scope>provided</scope> |
116 | 144 | </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 --> |
118 | 169 | <dependency> |
119 | 170 | <groupId>org.apache.logging.log4j</groupId> |
120 | 171 | <artifactId>log4j-slf4j-impl</artifactId> |
121 | | - <scope>test</scope> |
122 | 172 | </dependency> |
123 | 173 | <dependency> |
124 | 174 | <groupId>org.apache.logging.log4j</groupId> |
125 | 175 | <artifactId>log4j-core</artifactId> |
126 | | - <scope>test</scope> |
127 | 176 | </dependency> |
128 | 177 | </dependencies> |
129 | 178 |
|
|
0 commit comments