Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Please note that this method does not guarantee reproducibility, as the configuration is not "cleaned" at any point. If you want to keep a generated configuration you can ask Cargo to generate a standalone configuration once and then consider it an existing configuration.

Support Matrix

Java

AntMaven2

Maven 3

(tick)

(tick)

(tick)

Java API

There are different ways of using an existing configuration:

...

Code Block
xml
xml
<cargo containerId="resin3x" [...]>
  <configuration type="existing" home="c:/apps/resin-3.0.9"/>
  [...]
</cargo>

...

Maven 3 Plugin

Code Block
xml
xml
[...]
<container>
  <containerId>resin3x</containerId>
  [...]
</container>
<configuration>
  <type>existing</type>
  <home>c:/apps/resin-3.0.9</home>
</configuration>
[...]

...