Passing custom environment variables to maven cargo

Viewed 4017

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>
      ...
1 Answers
Related