1

我不太明白如何使用它。文件中定义了一个属性。我尝试使用 maven 属性插件来读取并保存。该属性用于 liquibase 插件:

<plugin>
<groupId>org.codehaus.mojo</groupId>
  <artifactId>properties-maven-plugin</artifactId>
  <version>1.0-alpha-1</version>
  <executions>
    <execution>
      <phase>initialize</phase>
      <goals>
        <goal>read-project-properties</goal>
      </goals>
      <configuration>
       <files>
          <file>src/main/resources/properties/app.properties</file>
        </files>
      </configuration>
    </execution>
  </executions>
</plugin>
<plugin>
    <groupId>org.liquibase</groupId>
    <artifactId>liquibase-maven-plugin</artifactId>
    <version>2.0.5</version>
    <configuration>
        <propertyFile>src/main/resources/db/config/${env}-data-access.properties</propertyFile>
        <changeLogFile>src/main/resources/db/changelog/db.changelog-master.xml</changeLogFile>
        <migrationSqlOutputFile>src/main/resources/db/gen/migrate.sql</migrationSqlOutputFile>
        <!--<logging>debug</logging>-->
        <logging>info</logging>
        <promptOnNonLocalDatabase>false</promptOnNonLocalDatabase>
        <!--<verbose>false</verbose>-->
        <dropFirst>true</dropFirst>
    </configuration>
</plugin>
  1. 根据文档,为了读取属性并保存它,我必须运行:mvn properties:read-project-properties. 但在这种情况下,我收到以下错误:

    [错误] 无法在项目 SpringWebFlow 上执行目标 org.codehaus.mojo:properties-maven-plugin:1.0-alpha-2:read-project-properties (default-cli):目标 org.codehaus 的参数“文件”。 mojo:properties-maven-plugin:1.0-alpha-2:read-project-properties 丢失或无效 -> [帮助 1]

我更改了 pom.xml,删除了该<execution>部分并移动了该<configuration>部分:

<groupId>org.codehaus.mojo</groupId>
  <artifactId>properties-maven-plugin</artifactId>
  <version>1.0-alpha-1</version>
  <configuration>
    <files>
        <file>src/main/resources/properties/app.properties</file>
    </files>
  </configuration>

好的。现在,当我运行 mvn properties:read-project-properties 时,错误消失了。但是在这种情况下,属性保存在哪里?因为当我开始以下 Maven 目标时:

mvn liquibase:update

我可以看到 ${env} 属性没有定义。Liquibase 尝试使用该src/main/resources/db/config/${env}-data-access.properties文件。

我究竟做错了什么?如何从文件中读取属性,以便可以从不同的 Maven 插件访问?

4

1 回答 1

1

问题是“mvn liquibase:update”是一个特殊的插件目标,不是 maven 生命周期的一部分。因此它永远不会通过初始化阶段,因此不会执行属性插件。

以下将起作用

mvn initialize liquibase:update

一种解决方案是在 maven lifecylce 阶段之一(如编译、打包 ...)中调用 liquibase:update,但随后它将在每次构建时执行。

或者您使用 maven-exec 插件从 maven 调用“initialize liquibase:update”。或者,如果您将 liquibase:update 绑定到 lifecylce 阶段初始化并创建配置文件,并且在您调用时执行 udate

mvn initialize -Pliquibase

我不知道这个问题的更好解决方案,也找不到合适的解决方案。

供参考: Maven生命周期

于 2013-05-10T08:48:16.073 回答