mirror of https://github.com/apache/maven.git
30 lines
731 B
XML
30 lines
731 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven.it</groupId>
|
|
<artifactId>maven-core-it0076</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<executions>
|
|
<execution>
|
|
<id>exec1</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>war</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|