将自定义环境变量传递给 Maven 货物

发布于 2024-11-15 22:09:33 字数 346 浏览 2 评论 0原文

我正在寻找一种将环境变量传递到货物容器中的方法。像这样的东西:

<plugin>
  <groupId>org.codehaus.cargo>
  <artifactId>cargo-maven2-plugin</artifactId>
  <configuration>
    <environmentVariables>
      <myCustomVariable>value</myCustomVariable>
      ...

I'm looking for a way to pass environment variables into a cargo container. Something like this:

<plugin>
  <groupId>org.codehaus.cargo>
  <artifactId>cargo-maven2-plugin</artifactId>
  <configuration>
    <environmentVariables>
      <myCustomVariable>value</myCustomVariable>
      ...

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

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

发布评论

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

评论(1

酒废 2024-11-22 22:09:33

AFAIK,货物只允许传递系统属性,如 传递系统属性 中提到的Maven Tips 如下例: -

<container>
  [...]
  <systemProperties>
    <myproperty>myvalue</myproperty>
  </systemProperties>
</container>

解决方法可能是链接系统属性环境变量如下例: -

<container>
  [...]
  <systemProperties>
    <myproperty>${env.MY_ENV_VAR}</myproperty>
  </systemProperties>
</container>

通常我们只能使用操作系统的方式设置环境变量。无论如何,还有一种使用 Java 设置它的解决方法,如 How我如何从 Java 设置环境变量?

我总是使用此技巧在单元测试期间设置环境变量,方法是使用 @BeforeClass 将它们放入 JUnit 测试套件,并使用 @AfterClass 将它们设置为空字符串。

请注意,正式的 Java 教程还提到了环境变量将环境变量传递给 New流程

我希望这会有所帮助。

AFAIK, The cargo only allow to pass the system properties as mentioning at Passing system properties and Maven Tips as the following example: -

<container>
  [...]
  <systemProperties>
    <myproperty>myvalue</myproperty>
  </systemProperties>
</container>

The workaround may be link that system properties to the environment variable as the following example:-

<container>
  [...]
  <systemProperties>
    <myproperty>${env.MY_ENV_VAR}</myproperty>
  </systemProperties>
</container>

Normally we are only able to set the environment variable by using the OS way. Anyhow there also is a workaround for setting it by using Java as mentioning at How do I set environment variables from Java?.

I always use this tip for setting up the environment variables during unit testing by putting them to the JUnit test suit with @BeforeClass and set them to be empty String with @AfterClass.

Please note that the formal Java Tutorial also mentions about Environment Variables and Passing Environment Variables to New Processes.

I hope this may help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文