tet123/debezium-assembly-descriptors/src/main/resources/assemblies/connector-distribution-no-drivers.xml
2019-05-30 14:32:47 +02:00

57 lines
2.3 KiB
XML

<?xml version="1.0"?>
<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">
<id>plugin</id>
<formats>
<format>tar.gz</format>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory>${project.artifactId}</outputDirectory>
<unpack>false</unpack>
<scope>runtime</scope>
<useProjectArtifact>false</useProjectArtifact>
<excludes>
<!-- Exclude dependencies of Kafka APIs, since they will be available in the runtime -->
<exclude>com.fasterxml.jackson.core:jackson-core:*</exclude>
<!-- Exclude connection drivers -->
<exclude>mysql:mysql-connector-java:*</exclude>
<exclude>org.postgresql:postgresql:*</exclude>
<exclude>org.mongodb:mongodb-driver:*</exclude>
<exclude>org.mongodb:bson:*</exclude>
<exclude>org.mongodb:mongodb-driver-core:*</exclude>
<exclude>com.microsoft.sqlserver:mssql-jdbc:*</exclude>
<exclude>${assembly.exclude.1}</exclude>
<exclude>${assembly.exclude.2}</exclude>
<exclude>${assembly.exclude.3}</exclude>
</excludes>
</dependencySet>
<dependencySet>
<outputDirectory>${project.artifactId}</outputDirectory>
<unpack>false</unpack>
<includes>
<include>${project.groupId}:${project.artifactId}:*</include>
</includes>
</dependencySet>
</dependencySets>
<fileSets>
<fileSet>
<!-- Get the files from the top-level directory, which should be above the connectors -->
<directory>${project.basedir}/..</directory>
<outputDirectory>${project.artifactId}</outputDirectory>
<includes>
<include>README*</include>
<include>CHANGELOG*</include>
<include>CONTRIBUTE*</include>
<include>COPYRIGHT*</include>
<include>LICENSE*</include>
</includes>
<useDefaultExcludes>true</useDefaultExcludes>
</fileSet>
</fileSets>
</assembly>