Maven相当于Ant的propertyfile选项

发布于 2024-10-18 23:23:28 字数 118 浏览 0 评论 0原文

抱歉拉默的问题,但我真的找不到主题。 我有一个 pom.xml 文件的外部文件,例如 backup.properties,并且希望它在下次 mvn 运行时加载。

任何方向将不胜感激

奥列格

sorry for lamer question, but I really could not found subject.
I have a external to the pom.xml file, say backup.properties, and would like it load by next mvn run.

Any direction would be greatly appreciated

Oleg

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

数理化全能战士 2024-10-25 23:23:28

看一下 Properties Maven 插件

Properties Maven 插件的目的是
让交易时的生活变得更轻松
具有属性。它提供了目标
读取和写入属性
文件,也可以设置系统
属性。

它的主要用例是加载
来自文件的属性而不是
在 pom.xml 中声明它们
在处理问题时会派上用场
不同的环境。

用法:

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>properties-maven-plugin</artifactId>
  <version>1.0-alpha-2</version>
  <executions>
     <execution>
        <phase>initialize</phase>
        <goals>
          <goal>read-project-properties</goal>
        </goals>
        <configuration>
          <files>
            <file>etc/config/dev.properties</file>
          </files>
        </configuration>
       </execution>
  </executions>
</plugin>

Take a look at the Properties Maven Plugin:

The Properties Maven Plugin is here to
make life a little easier when dealing
with properties. It provides goals to
read and write properties from and to
files, and also to set system
properties.

It's main use-case is loading
properties from files instead of
declaring them in pom.xml, something
that comes in handy when dealing with
different environments.

Usage:

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>properties-maven-plugin</artifactId>
  <version>1.0-alpha-2</version>
  <executions>
     <execution>
        <phase>initialize</phase>
        <goals>
          <goal>read-project-properties</goal>
        </goals>
        <configuration>
          <files>
            <file>etc/config/dev.properties</file>
          </files>
        </configuration>
       </execution>
  </executions>
</plugin>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文