testcontainers-concord-shaded
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.ibodrov.concord</groupId> <artifactId>testcontainers-concord-shaded</artifactId> <version>2.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>testcontainers-concord</artifactId> <groupId>ca.ibodrov.concord</groupId> <version>2.0.3</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>testcontainers-concord-shaded</artifactId> <version>2.0.3</version> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer /> </transformers> <createDependencyReducedPom>true</createDependencyReducedPom> <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/NOTICE*</exclude> <exclude>META-INF/LICENSE*</exclude> <exclude>META-INF/AL2.0</exclude> <exclude>META-INF/LGPL2.1</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>com.walmartlabs</pattern> <shadedPattern>shaded.com.walmartlabs</shadedPattern> </relocation> <relocation> <pattern>com.google</pattern> <shadedPattern>shaded.com.google</shadedPattern> </relocation> <relocation> <pattern>io.gsonfire</pattern> <shadedPattern>shaded.io.gsonfire</shadedPattern> </relocation> <relocation> <pattern>com.squareup</pattern> <shadedPattern>shaded.com.squareup</shadedPattern> </relocation> <relocation> <pattern>com.fasterxml</pattern> <shadedPattern>shaded.com.fasterxml</shadedPattern> </relocation> <relocation> <pattern>org.immutables</pattern> <shadedPattern>shaded.org.immutables</shadedPattern> </relocation> <relocation> <pattern>org.apache.commons</pattern> <shadedPattern>shaded.org.apache.commons</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>attach</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>../../testcontainers-concord-core/target/testcontainers-concord-core-${project.version}-javadoc.jar</file> <type>jar</type> <classifier>javadoc</classifier> </artifact> <artifact> <file>../../testcontainers-concord-core/target/testcontainers-concord-core-${project.version}-sources.jar</file> <type>jar</type> <classifier>sources</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>