forked from debezium/debezium
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DBZ-5959 Add distribution with JSR-310
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
...assembly-descriptors/src/main/resources/assemblies/connector-distribution-with-jsr310.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?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> | ||
<useTransitiveFiltering>true</useTransitiveFiltering> | ||
<excludes> | ||
<!-- Exclude dependencies of Kafka APIs, since they will be available in the runtime --> | ||
<exclude>com.fasterxml.jackson.core:jackson-core:*</exclude> | ||
<exclude>com.fasterxml.jackson.core:jackson-databind:*</exclude> | ||
<exclude>com.fasterxml.jackson.core:jackson-annotations:*</exclude> | ||
|
||
<!-- Exclude guava dependencies --> | ||
<exclude>com.google.guava:listenablefuture:*</exclude> | ||
|
||
<!-- Exclude dependencies with incorrect scope --> | ||
<exclude>org.checkerframework:checker-qual:*</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> | ||
<fileSet> | ||
<directory>${project.build.directory}/generated-sources</directory> | ||
<outputDirectory>${project.artifactId}</outputDirectory> | ||
<includes> | ||
<include>*.json</include> | ||
</includes> | ||
<useDefaultExcludes>true</useDefaultExcludes> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |