Maven konfigurieren bestimmtes Ziel

Möchte ich konfigurieren "explodierte" Ziel der maven-war-plugin:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-war-plugin</artifactId>
  <executions>
    <execution>
      <goals>
        <goal>exploded</goal>
      </goals>
      <configuration>
        <webappDirectory>war</webappDirectory>
      </configuration>
    </execution>
  </executions>
</plugin>

Muss ich laufen, "explodierte" Ziel manuell und nicht möchten, fügen Sie die Ausführung beliebigen lifycycle phase. Aber wenn ich execute "mvn war:explodiert", maven ignoriert meine Konfiguration. Sagen Sie mir bitte, wie man das macht 🙂

InformationsquelleAutor | 2010-09-20
Schreibe einen Kommentar