为maven diff目标指定变更集作者

时间:2015-01-13 08:42:32

标签: liquibase

使用maven liquibase“diff”目标时,是否可以定义变更集作者?

现在它使用您登录的工作站帐户。

1 个答案:

答案 0 :(得分:2)

nevermind - 我查看了插件的源代码,这就是我“修复”它的方式:

 <executions>
    <execution>                                   
       <phase>compile</phase>
        <goals>
          <goal>diff</goal>
        </goals>
        <configuration>
           <systemProperties>
               <user.name>someUserName</user.name>
           </systemProperties>
         </configuration>
     </execution>
 </executions>