mirror of
https://github.com/apache/maven.git
synced 2025-02-07 02:29:10 +00:00
implement provided scope git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@190930 13f79535-47bb-0310-9956-ffa450edef68
31 lines
748 B
XML
31 lines
748 B
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core-it0016</artifactId>
|
|
<packaging>war</packaging>
|
|
<version>1.0</version>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>servletapi</groupId>
|
|
<artifactId>servletapi</artifactId>
|
|
<version>2.4-20040521</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.0.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</model>
|