我的项目目前正在利用Ant构建,构建我使用下面目标的SQL:
<target name="build.update_database">
<artifact:mvn pom="${basedir}/../module-database/pom.xml">
<arg value="clean"/>
<arg value="compile"/>
<arg value="liquibase:updateSQL"/>
</artifact:mvn>
</target>
现在我想移动Maven,如何在pom.xml中配置'clean','compile','liquibase:updateSQL'步骤。
pom.xml是:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<debug>true</debug>
<encoding>UTF-8</encoding>
<optimize>true</optimize>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>2.0.5</version>
<configuration>
<promptOnNonLocalDatabase>false</promptOnNonLocalDatabase>
<propertyFile>src/main/resources/liquibase.properties</propertyFile>
<verbose>true</verbose>
</configuration>
</plugin>
</plugins>
</build>
答案 0 :(得分:0)
你不需要任何其他东西。您已经拥有了pom.xml文件。 Ant Mvn Task执行Maven命令。这就像在命令行中执行mvn clean compile liquidbase:updateSQL
。