shaded-jackson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.jcustenborder.kafka.connect</groupId> <artifactId>shaded-jackson</artifactId> <version>2.7.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <artifactId>kafka-connect-shaded-parent</artifactId> <groupId>com.github.jcustenborder.kafka.connect</groupId> <version>2.7.0.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>shaded-jackson</artifactId> <name>shaded-jackson</name> <description>A helper library for building Kafka Connect Connectors.</description> <url>https://github.com/jcustenborder/kafka-connect-shaded</url> <issueManagement> <system>github</system> <url>https://github.com/jcustenborder/kafka-connect-shaded/issues</url> </issueManagement> <inceptionYear>2016</inceptionYear> <developers> <developer> <id>jcustenborder</id> <name>Jeremy Custenborder</name> <email>jcustenborder@gmail.com</email> <timezone>America/Chicago</timezone> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/jcustenborder/kafka-connect-shaded.git</connection> <developerConnection>scm:git:git@github.com:jcustenborder/kafka-connect-shaded.git</developerConnection> <url>https://github.com/jcustenborder/kafka-connect-shaded</url> </scm> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>com.google.common</pattern> <shadedPattern>shaded.com.google.common</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>confluent</id> <url>http://packages.confluent.io/maven/</url> </repository> </repositories> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>