mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-12-04 21:08:30 +08:00
34 lines
932 B
XML
34 lines
932 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
|
|
<id>release</id>
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
|
<formats>
|
|
<format>jar</format>
|
|
</formats>
|
|
|
|
<dependencySets>
|
|
<dependencySet>
|
|
<outputDirectory>/</outputDirectory>
|
|
<useProjectArtifact>false</useProjectArtifact>
|
|
<unpack>true</unpack>
|
|
<scope>runtime</scope>
|
|
|
|
<includes>
|
|
<include>com.github.docker-java:docker-java</include>
|
|
<include>com.github.docker-java:docker-java-transport-httpclient5</include>
|
|
</includes>
|
|
|
|
</dependencySet>
|
|
</dependencySets>
|
|
|
|
<fileSets>
|
|
<fileSet>
|
|
<directory>${project.build.directory}/classes</directory>
|
|
<outputDirectory>/</outputDirectory>
|
|
</fileSet>
|
|
</fileSets>
|
|
|
|
</assembly>
|