Files
aquasecurity-trivy/pkg/dependency/parser/java/pom/testdata/inherit-scopes-in-parents-from-root/pom.xml

40 lines
1.4 KiB
XML

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>inherit-scopes-in-parents-from-root</artifactId>
<version>0.1.0</version>
<parent>
<groupId>com.example</groupId>
<artifactId>inherit-scopes-in-parents-from-root-parent</artifactId>
<version>0.0.1</version>
<relativePath>./parent</relativePath>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.example</groupId>
<artifactId>example-nested-scope-runtime</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.example</groupId>
<artifactId>example-nested-scope-compile</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.example</groupId>
<artifactId>example-nested-scope-empty</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>