Skip to content

Commit b2f6a05

Browse files
committed
chore: fix dependencies order
Correction for 3c9c6a7 commit.
1 parent 4c8b5fa commit b2f6a05

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

pom.xml

+13-13
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,19 @@
6060
<version>${jsoup.version}</version>
6161
</dependency>
6262

63+
<!-- For running database migration during application's startup time -->
64+
<dependency>
65+
<groupId>org.liquibase</groupId>
66+
<artifactId>liquibase-core</artifactId>
67+
<version>${liquibase.version}</version>
68+
<exclusions>
69+
<exclusion>
70+
<groupId>org.yaml</groupId>
71+
<artifactId>snakeyaml</artifactId>
72+
</exclusion>
73+
</exclusions>
74+
</dependency>
75+
6376
<dependency>
6477
<groupId>org.slf4j</groupId>
6578
<artifactId>slf4j-api</artifactId>
@@ -215,19 +228,6 @@
215228
<scope>runtime</scope>
216229
</dependency>
217230

218-
<!-- For running database migration during application's startup time -->
219-
<dependency>
220-
<groupId>org.liquibase</groupId>
221-
<artifactId>liquibase-core</artifactId>
222-
<version>${liquibase.version}</version>
223-
<exclusions>
224-
<exclusion>
225-
<groupId>org.yaml</groupId>
226-
<artifactId>snakeyaml</artifactId>
227-
</exclusion>
228-
</exclusions>
229-
</dependency>
230-
231231
<!--
232232
Required for "postgres" profile (see src/main/resources/application-postgres.properties).
233233
Perhaps, you would need to override the following properties as by default it's

0 commit comments

Comments
 (0)