mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-16 08:36:55 +01:00
30 lines
952 B
XML
30 lines
952 B
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>/</outputDirectory>
|
|
<directory>${project.build.directory}</directory>
|
|
<includes>
|
|
<include>dependency-check*.jar</include>
|
|
</includes>
|
|
</fileSet>
|
|
</fileSets>
|
|
<dependencySets>
|
|
<dependencySet>
|
|
<outputDirectory>/lib</outputDirectory>
|
|
<scope>runtime</scope>
|
|
</dependencySet>
|
|
</dependencySets>
|
|
</assembly> |