/
githubmirror
/
trivy
Обзор
Документация
Войти
/
githubmirror
/
trivy
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
pkg/dependency/parser/java/pom/testdata/happy/pom.xml
50 строк
1 KB
DmitriyLewen
revert(java): stop supporting of `test` scope for `pom.xml` files (#7488)
12 сен 2024, 08:10
Не верифицирован
12 сен 2024, 08:10
b0222fe
Код
Авторство
О чём код?
<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>happy</artifactId> <version>1.0.0</version> <name>happy</name> <description>Example</description> <licenses> <license> <name>BSD-3-Clause</name> <url>https://opensource.org/licenses/BSD-3-Clause</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>knqyf263</id> <url>https://github.com/knqyf263</url> </developer> </developers> <properties> <api.version>1.7.30</api.version> </properties> <dependencies> <dependency> <groupId>org.example</groupId> <artifactId>example-api</artifactId> <version>${api.version}</version> </dependency> <dependency> <groupId>org.example</groupId> <artifactId>example-runtime</artifactId> <version>1.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.example</groupId> <artifactId>example-provided</artifactId> <version>999</version> <scope>provided</scope> </dependency> </dependencies> </project>