mirror of
https://github.com/aquasecurity/trivy.git
synced 2026-02-11 03:03:29 +08:00
Signed-off-by: knqyf263 <knqyf263@gmail.com> Co-authored-by: knqyf263 <knqyf263@gmail.com>
40 lines
1.4 KiB
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>
|