Add pom-teamplate01.xml
This commit is contained in:
parent
ec6f250bd8
commit
f417a505d8
45
pom-teamplate01.xml
Normal file
45
pom-teamplate01.xml
Normal file
@ -0,0 +1,45 @@
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.liquibase</groupId>
|
||||
<artifactId>liquibase-maven-plugin</artifactId>
|
||||
<version>4.8.0</version>
|
||||
<configuration>
|
||||
<propertyFile>src/main/resources/application.properties</propertyFile>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>project_name.environment_name.updateSql</id>
|
||||
<goals>
|
||||
<goal>updateSQL</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<changeLogFile>src/main/resources/environment_name_mt_db.changelog-master.xml</changeLogFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>project_name.environment_name.update</id>
|
||||
<goals>
|
||||
<goal>update</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<changeLogFile>src/main/resources/environment_name_mt_db.changelog-master.xml</changeLogFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>project_name.environment_name.rollback</id>
|
||||
<goals>
|
||||
<goal>rollback</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<changeLogFile>src/main/resources/environment_name_mt_db.changelog-master.xml</changeLogFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
Loading…
x
Reference in New Issue
Block a user