github.com/anchore/syft@v1.38.2/syft/pkg/cataloger/java/test-fixtures/pom/transitive-top-level/pom.xml (about) 1 <?xml version="1.0" encoding="ISO-8859-1"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4 <modelVersion>4.0.0</modelVersion> 5 6 <groupId>my.other.group</groupId> 7 <artifactId>transitive-top-level</artifactId> 8 <version>99</version> 9 <packaging>jar</packaging> 10 11 <dependencyManagement> 12 <dependencies> 13 <dependency> 14 <groupId>my.org</groupId> 15 <artifactId>child-one</artifactId> 16 <version>1.3.6</version> 17 </dependency> 18 </dependencies> 19 </dependencyManagement> 20 21 <dependencies> 22 <dependency> 23 <groupId>my.org</groupId> 24 <artifactId>child-one</artifactId> 25 </dependency> 26 <dependency> 27 <groupId>my.org</groupId> 28 <artifactId>child-two</artifactId> 29 <version>2.1.90</version> 30 <scope>test</scope> 31 </dependency> 32 </dependencies> 33 34 </project>