mirror of
https://github.com/apache/maven.git
synced 2025-02-13 13:35:49 +00:00
integration test for scope handling git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@326365 13f79535-47bb-0310-9956-ffa450edef68
30 lines
650 B
XML
30 lines
650 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>test-components</artifactId>
|
|
<groupId>test</groupId>
|
|
<version>0.1</version>
|
|
</parent>
|
|
|
|
<groupId>test</groupId>
|
|
<artifactId>test-component-c</artifactId>
|
|
<version>0.1</version>
|
|
<name>Test Component C</name>
|
|
<packaging>war</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>test</groupId>
|
|
<artifactId>test-component-b</artifactId>
|
|
<version>0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>test</groupId>
|
|
<artifactId>test-component-a</artifactId>
|
|
<version>0.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|