mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-14 06:06:04 +01:00
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<assembly
|
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="
|
|
http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
|
|
http://maven.apache.org/xsd/assembly-1.1.2.xsd
|
|
"
|
|
>
|
|
<id>release</id>
|
|
<formats>
|
|
<format>zip</format>
|
|
</formats>
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
|
<!--fileSets>
|
|
<fileSet>
|
|
<outputDirectory>dependency-check</outputDirectory>
|
|
<directory>${project.build.directory}</directory>
|
|
<includes>
|
|
<include>dependency-check*.jar</include>
|
|
</includes>
|
|
</fileSet>
|
|
</fileSets-->
|
|
<files>
|
|
<file>
|
|
<source>${project.build.directory}/${project.artifactId}-${project.version}.jar</source>
|
|
<outputDirectory>dependency-check-ant</outputDirectory>
|
|
<destName>dependency-check-ant.jar</destName>
|
|
</file>
|
|
</files>
|
|
<dependencySets>
|
|
<dependencySet>
|
|
<outputDirectory>dependency-check-ant/lib</outputDirectory>
|
|
<scope>runtime</scope>
|
|
</dependencySet>
|
|
</dependencySets>
|
|
</assembly> |