Ai
1 Star 1 Fork 1

一叶浮尘/kafka-streams-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.xml 2.22 KB
一键复制 编辑 原始数据 按行查看 历史
<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">
<!-- Assembles a package that can run the given dependency packages. This is used to
construct packages OS packages where underlying libraries, like rest-utils, can be shared
-->
<id>package</id>
<formats>
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.parent.basedir}</directory>
<outputDirectory>share/doc/${project.artifactId}/</outputDirectory>
<includes>
<include>version.txt</include>
<include>COPYRIGHT*</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.parent.basedir}</directory>
<outputDirectory></outputDirectory>
<includes>
<include>bin/*</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.parent.basedir}/config</directory>
<outputDirectory>etc/${project.artifactId}</outputDirectory>
<includes>
<include>*</include>
</includes>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>share/java/${project.artifactId}</outputDirectory>
<useProjectArtifact>true</useProjectArtifact>
<!-- Warning: Enabling useTransitiveFiltering is potentially unsafe,
cf. https://github.com/miguno/maven-assembly-transitive-deps-woes
and https://issues.apache.org/jira/browse/MASSEMBLY-504. If
dependencies happen to be missing in the assembly you may want to
disable transitive filtering. -->
<useTransitiveFiltering>true</useTransitiveFiltering>
<excludes>
<exclude>io.confluent:common-*</exclude>
</excludes>
</dependencySet>
</dependencySets>
</assembly>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/thomas9696/kafka-streams-examples.git
git@gitee.com:thomas9696/kafka-streams-examples.git
thomas9696
kafka-streams-examples
kafka-streams-examples
master

搜索帮助