0 Star 0 Fork 0

联客微妙 / imgservice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
package.xml 1.62 KB
一键复制 编辑 原始数据 按行查看 历史
金色海 提交于 2019-03-20 17:31 . 初始化
<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">
<!-- http://maven.apache.org/plugins/maven-assembly-plugin/assembly.html -->
<id>dist</id>
<!-- zip,tar.gz,tar.bz2,jar,dir,war -->
<formats>
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>src/main/resources/</directory>
<!-- 与 maven-jar-plugin 中的 Class-Path 值对应,否则 PathKit 无法工作 -->
<outputDirectory>resources/</outputDirectory>
</fileSet>
<fileSet>
<directory>src/main/webapp/</directory>
<outputDirectory>src/main/webapp/</outputDirectory>
</fileSet>
<fileSet>
<directory>bin/</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>lib</outputDirectory>
<scope>runtime</scope>
<excludes>
<exclude>${project.groupId}:${project.artifactId}</exclude>
</excludes>
</dependencySet>
<dependencySet>
<outputDirectory>/</outputDirectory>
<includes>
<include>${project.groupId}:${project.artifactId}</include>
</includes>
</dependencySet>
</dependencySets>
</assembly>
Java
1
https://gitee.com/linkwm/os.git
git@gitee.com:linkwm/os.git
linkwm
os
imgservice
master

搜索帮助