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

specify changeset author for maven diff goal

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

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

没关系 - 我查看了插件的源代码,这就是我 "fixed" 它的方式:

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