/
githubmirror
/
trivy
Обзор
Документация
Войти
/
githubmirror
/
trivy
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
pkg/dependency/parser/java/pom/testdata/exclusions-parent-dependency-management/pom.xml
48 строк
2 KB
Cameron
fix(java): Disable overwriting exclusions (#10088)
30 янв 2026, 16:15
Не верифицирован
30 янв 2026, 16:15
9a3e0a8
Код
Авторство
О чём код?
<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>parent</artifactId> <version>2.0.0</version> <packaging>pom</packaging> <name>parent</name> <description>Parent</description> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <dependencyManagement> <dependencies> <dependency> <groupId>org.example</groupId> <artifactId>example-exclusions</artifactId> <version>3.0.0</version> <exclusions> <exclusion> <groupId>org.example</groupId> <artifactId>example-dependency2</artifactId> </exclusion> </exclusions> </dependency> <dependency> <artifactId>example-nested</artifactId> <groupId>org.example</groupId> <version>3.3.5</version> <exclusions> <exclusion> <groupId>org.example</groupId> <artifactId>example-api3</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </dependencyManagement> </project>