Ai
1 Star 1 Fork 1

一叶浮尘/kafka-streams-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
development.xml 1.71 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 all dependencies in target/ directory so scripts can easily run in a development
environment -->
<id>development</id>
<formats>
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.parent.basedir}</directory>
<outputDirectory>share/doc/${project.artifactId}/</outputDirectory>
<includes>
<include>README*</include>
<include>LICENSE*</include>
<include>NOTICE*</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>org.slf4j:slf4j-log4j12</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

搜索帮助