Skip to content

Commit 5aab718

Browse files
committed
work
1 parent 15bb543 commit 5aab718

File tree

3 files changed

+28
-184
lines changed

3 files changed

+28
-184
lines changed

pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@
113113
<version.maven-release-plugin>3.0.0-M7</version.maven-release-plugin>
114114
<version.maven-release-plugin.scm>1.13.0</version.maven-release-plugin.scm>
115115

116+
<!-- Database Evolution -->
117+
<version.org.postgresql>42.5.1</version.org.postgresql>
118+
<version.liquibase-maven-plugin>4.16.1</version.liquibase-maven-plugin>
119+
<liquibase.propertyFile>${project.basedir}/liquibase.properties</liquibase.propertyFile>
120+
116121
<!-- UML -->
117122
<version.plantuml-maven-plugin>1.5.2</version.plantuml-maven-plugin>
118123
<version.plantuml-maven-plugin.plantuml>1.2022.6</version.plantuml-maven-plugin.plantuml>
@@ -1047,6 +1052,11 @@
10471052
<artifactId>maven-failsafe-plugin</artifactId>
10481053
<version>${version.maven-failsafe-plugin}</version>
10491054
</plugin>
1055+
<plugin>
1056+
<groupId>org.liquibase</groupId>
1057+
<artifactId>liquibase-maven-plugin</artifactId>
1058+
<version>${version.liquibase-maven-plugin}</version>
1059+
</plugin>
10501060
</plugins>
10511061
</pluginManagement>
10521062
<plugins>
@@ -1331,6 +1341,20 @@
13311341
<groupId>org.apache.maven.plugins</groupId>
13321342
<artifactId>maven-pmd-plugin</artifactId>
13331343
</plugin>
1344+
<plugin>
1345+
<groupId>org.liquibase</groupId>
1346+
<artifactId>liquibase-maven-plugin</artifactId>
1347+
<configuration>
1348+
<propertyFile>liquibase.properties</propertyFile>
1349+
</configuration>
1350+
<dependencies>
1351+
<dependency>
1352+
<groupId>org.postgresql</groupId>
1353+
<artifactId>postgresql</artifactId>
1354+
<version>${version.org.postgresql}</version>
1355+
</dependency>
1356+
</dependencies>
1357+
</plugin>
13341358
</plugins>
13351359
</build>
13361360

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
spring:
2+
config:
3+
activate:
4+
on-profile: default

src/test/resources/application.yml

Lines changed: 0 additions & 184 deletions
This file was deleted.

0 commit comments

Comments
 (0)