Versions Compared

Key

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

...

Code Block
languagehtml/xml
<cargo containerId="@{containerId}" action="@{action}">
  <configuration home="${configuration.home}">
    <xmlreplacement file="conf/server.xml" xpathexpression="//Server/Engine" attributename="defaultHost" value="myhost"/>
  </configuration>
</cargo>

Example using

...

the Maven 3 plugin

Code Block
languagehtml/xml
<plugin>
  <groupId>org.codehaus.cargo</groupId>
  <artifactId>cargo-maven2maven3-plugin</artifactId>
  <configuration>
    <container>
      [...]
    </container>
    <configuration>
      <type>standalone</type>
      [...]
      <xmlReplacements>
        <xmlReplacement>
          <file>conf/server.xml</file>
          <xpathExpression>//Server/Engine</xpathExpression>
          <attributeName>defaultHost</attributeName>
          <value>myhost</value>
        </xmlReplacement>
      </xmlReplacements>
    </configuration>
  </configuration>
</plugin>

...