mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-14 15:53:36 +01:00
108 lines
4.7 KiB
XML
108 lines
4.7 KiB
XML
<!--
|
|
This file is part of dependency-check build-reporting.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
Copyright (c) 2017 - Jeremy Long. All Rights Reserved.
|
|
-->
|
|
<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>
|
|
<parent>
|
|
<groupId>org.owasp</groupId>
|
|
<artifactId>dependency-check-parent</artifactId>
|
|
<version>3.0.3-SNAPSHOT</version>
|
|
</parent>
|
|
<name>Dependency-Check Build-Reporting</name>
|
|
<artifactId>build-reporting</artifactId>
|
|
<packaging>pom</packaging>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.owasp</groupId>
|
|
<artifactId>dependency-check-utils</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.owasp</groupId>
|
|
<artifactId>dependency-check-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.owasp</groupId>
|
|
<artifactId>dependency-check-ant</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.owasp</groupId>
|
|
<artifactId>dependency-check-cli</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.owasp</groupId>
|
|
<artifactId>dependency-check-maven</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>report-merge</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>merge</goal>
|
|
</goals>
|
|
<configuration>
|
|
<fileSets>
|
|
<fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
|
|
<directory>${project.basedir}/../</directory>
|
|
<includes>
|
|
<include>dependency-check-utils/target/coverage-reports/*.exec</include>
|
|
<include>dependency-check-core/target/coverage-reports/*.exec</include>
|
|
<include>dependency-check-cli/target/coverage-reports/*.exec</include>
|
|
<include>dependency-check-ant/target/coverage-reports/*.exec</include>
|
|
<include>dependency-check-maven/target/coverage-reports/*.exec</include>
|
|
</includes>
|
|
</fileSet>
|
|
</fileSets>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>report-aggregate</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>report-aggregate</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>target/coverage-reports/</outputDirectory>
|
|
<dataFileIncludes>
|
|
<dataFileInclude>target/coverage-reports/jacoco-ut.exec</dataFileInclude>
|
|
<dataFileInclude>target/coverage-reports/jacoco-it.exec</dataFileInclude>
|
|
</dataFileIncludes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|