使用maven liquibase“diff”目标时,是否可以定义变更集作者?
现在它使用您登录的工作站帐户。
答案 0 :(得分:2)
nevermind - 我查看了插件的源代码,这就是我“修复”它的方式:
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>diff</goal>
</goals>
<configuration>
<systemProperties>
<user.name>someUserName</user.name>
</systemProperties>
</configuration>
</execution>
</executions>