25 lines
792 B
XML
25 lines
792 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<assembly
|
||
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
||
|
<id>publish</id>
|
||
|
<formats>
|
||
|
<format>tar.gz</format>
|
||
|
</formats>
|
||
|
<includeBaseDirectory>false</includeBaseDirectory>
|
||
|
<dependencySets>
|
||
|
<dependencySet>
|
||
|
<outputDirectory>lib</outputDirectory>
|
||
|
<useProjectArtifact>false</useProjectArtifact>
|
||
|
<unpack>false</unpack>
|
||
|
<scope>runtime</scope>
|
||
|
</dependencySet>
|
||
|
</dependencySets>
|
||
|
<files>
|
||
|
<file>
|
||
|
<source>target/bench4q-agent.jar</source>
|
||
|
<outputDirectory>/</outputDirectory>
|
||
|
</file>
|
||
|
</files>
|
||
|
</assembly>
|