|
23 | 23 | <project.root>${basedir}/..</project.root>
|
24 | 24 | </properties>
|
25 | 25 |
|
26 |
| - <inceptionYear>2017</inceptionYear> |
27 |
| - |
28 | 26 | <dependencyManagement>
|
29 | 27 | <dependencies>
|
30 | 28 | <dependency>
|
|
90 | 88 | <optional>true</optional>
|
91 | 89 | </dependency>
|
92 | 90 |
|
| 91 | + <dependency> |
| 92 | + <groupId>org.liquibase</groupId> |
| 93 | + <artifactId>liquibase-core</artifactId> |
| 94 | + <version>${liquibase.version}</version> |
| 95 | + <optional>true</optional> |
| 96 | + </dependency> |
| 97 | + |
| 98 | + <!-- JDBC Drivers --> |
| 99 | + |
93 | 100 | <dependency>
|
94 | 101 | <groupId>com.h2database</groupId>
|
95 | 102 | <artifactId>h2</artifactId>
|
|
104 | 111 | <scope>test</scope>
|
105 | 112 | </dependency>
|
106 | 113 |
|
107 |
| - <dependency> |
108 |
| - <groupId>org.awaitility</groupId> |
109 |
| - <artifactId>awaitility</artifactId> |
110 |
| - <version>${awaitility.version}</version> |
111 |
| - <scope>test</scope> |
112 |
| - </dependency> |
113 |
| - |
114 |
| - <dependency> |
115 |
| - <groupId>org.assertj</groupId> |
116 |
| - <artifactId>assertj-core</artifactId> |
117 |
| - <version>${assertj}</version> |
118 |
| - <scope>test</scope> |
119 |
| - <exclusions> |
120 |
| - <exclusion> |
121 |
| - <groupId>net.bytebuddy</groupId> |
122 |
| - <artifactId>byte-buddy</artifactId> |
123 |
| - </exclusion> |
124 |
| - </exclusions> |
125 |
| - </dependency> |
126 |
| - |
127 | 114 | <dependency>
|
128 | 115 | <groupId>mysql</groupId>
|
129 | 116 | <artifactId>mysql-connector-java</artifactId>
|
|
166 | 153 | <scope>test</scope>
|
167 | 154 | </dependency>
|
168 | 155 |
|
| 156 | + <!-- Test dependencies --> |
| 157 | + |
169 | 158 | <dependency>
|
170 |
| - <groupId>org.testcontainers</groupId> |
171 |
| - <artifactId>mysql</artifactId> |
| 159 | + <groupId>org.awaitility</groupId> |
| 160 | + <artifactId>awaitility</artifactId> |
| 161 | + <version>${awaitility.version}</version> |
| 162 | + <scope>test</scope> |
| 163 | + </dependency> |
| 164 | + |
| 165 | + <dependency> |
| 166 | + <groupId>org.assertj</groupId> |
| 167 | + <artifactId>assertj-core</artifactId> |
| 168 | + <version>${assertj}</version> |
172 | 169 | <scope>test</scope>
|
173 | 170 | <exclusions>
|
174 | 171 | <exclusion>
|
175 |
| - <groupId>org.slf4j</groupId> |
176 |
| - <artifactId>jcl-over-slf4j</artifactId> |
| 172 | + <groupId>net.bytebuddy</groupId> |
| 173 | + <artifactId>byte-buddy</artifactId> |
177 | 174 | </exclusion>
|
178 | 175 | </exclusions>
|
179 | 176 | </dependency>
|
180 | 177 |
|
181 | 178 | <dependency>
|
182 |
| - <groupId>org.testcontainers</groupId> |
183 |
| - <artifactId>postgresql</artifactId> |
| 179 | + <groupId>org.jmolecules.integrations</groupId> |
| 180 | + <artifactId>jmolecules-spring</artifactId> |
| 181 | + <version>${jmolecules-integration}</version> |
184 | 182 | <scope>test</scope>
|
185 | 183 | </dependency>
|
186 | 184 |
|
187 | 185 | <dependency>
|
188 |
| - <groupId>org.testcontainers</groupId> |
189 |
| - <artifactId>mariadb</artifactId> |
| 186 | + <groupId>com.tngtech.archunit</groupId> |
| 187 | + <artifactId>archunit</artifactId> |
| 188 | + <version>${archunit.version}</version> |
190 | 189 | <scope>test</scope>
|
191 | 190 | </dependency>
|
192 | 191 |
|
| 192 | + <!-- Testcontainers --> |
| 193 | + |
193 | 194 | <dependency>
|
194 | 195 | <groupId>org.testcontainers</groupId>
|
195 |
| - <artifactId>mssqlserver</artifactId> |
| 196 | + <artifactId>mysql</artifactId> |
196 | 197 | <scope>test</scope>
|
| 198 | + <exclusions> |
| 199 | + <exclusion> |
| 200 | + <groupId>org.slf4j</groupId> |
| 201 | + <artifactId>jcl-over-slf4j</artifactId> |
| 202 | + </exclusion> |
| 203 | + </exclusions> |
197 | 204 | </dependency>
|
198 | 205 |
|
199 | 206 | <dependency>
|
200 | 207 | <groupId>org.testcontainers</groupId>
|
201 |
| - <artifactId>db2</artifactId> |
| 208 | + <artifactId>postgresql</artifactId> |
202 | 209 | <scope>test</scope>
|
203 | 210 | </dependency>
|
204 | 211 |
|
205 | 212 | <dependency>
|
206 | 213 | <groupId>org.testcontainers</groupId>
|
207 |
| - <artifactId>oracle-xe</artifactId> |
| 214 | + <artifactId>mariadb</artifactId> |
208 | 215 | <scope>test</scope>
|
209 | 216 | </dependency>
|
210 | 217 |
|
211 | 218 | <dependency>
|
212 |
| - <groupId>org.jmolecules.integrations</groupId> |
213 |
| - <artifactId>jmolecules-spring</artifactId> |
214 |
| - <version>${jmolecules-integration}</version> |
| 219 | + <groupId>org.testcontainers</groupId> |
| 220 | + <artifactId>mssqlserver</artifactId> |
215 | 221 | <scope>test</scope>
|
216 | 222 | </dependency>
|
217 | 223 |
|
218 | 224 | <dependency>
|
219 |
| - <groupId>com.tngtech.archunit</groupId> |
220 |
| - <artifactId>archunit</artifactId> |
221 |
| - <version>${archunit.version}</version> |
| 225 | + <groupId>org.testcontainers</groupId> |
| 226 | + <artifactId>db2</artifactId> |
222 | 227 | <scope>test</scope>
|
223 | 228 | </dependency>
|
224 | 229 |
|
225 | 230 | <dependency>
|
226 |
| - <groupId>org.liquibase</groupId> |
227 |
| - <artifactId>liquibase-core</artifactId> |
228 |
| - <version>${liquibase.version}</version> |
229 |
| - <optional>true</optional> |
| 231 | + <groupId>org.testcontainers</groupId> |
| 232 | + <artifactId>oracle-xe</artifactId> |
| 233 | + <scope>test</scope> |
230 | 234 | </dependency>
|
231 | 235 |
|
232 | 236 | </dependencies>
|
|
0 commit comments