bctls-jdk18on-ja3-shade
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.leeyazhou</groupId> <artifactId>bctls-jdk18on-ja3-shade</artifactId> <version>1.78.1.4</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.leeyazhou</groupId> <artifactId>bctls-jdk18on-ja3-parent</artifactId> <version>1.78.1.4</version> </parent> <artifactId>bctls-jdk18on-ja3-shade</artifactId> <version>1.78.1.4</version> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <dependencies> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>1.78.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcutil-jdk18on</artifactId> <version>1.78.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.leeyazhou</groupId> <artifactId>bctls-jdk18on-ja3</artifactId> <version>1.78.1.4</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <goals> <goal>shade</goal> </goals> <phase>package</phase> <configuration> <artifactSet> <includes> <include>com.github.leeyazhou:bctls-jdk18on-ja3</include> </includes> <excludes> <exclude>org.bouncycastle:bcutil-jdk18on</exclude> <exclude>org.bouncycastle:bcprov-jdk18on</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/*.MF</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>org.bouncycastle.jsse</pattern> <shadedPattern>com.github.leeyazhou.org.bouncycastle.jsse</shadedPattern> </relocation> <relocation> <pattern>org.bouncycastle.tls</pattern> <shadedPattern>com.github.leeyazhou.org.bouncycastle.tls</shadedPattern> </relocation> </relocations> <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope> <promoteTransitiveDependencies>true</promoteTransitiveDependencies> <createSourcesJar>false</createSourcesJar> <shadeSourcesContent>false</shadeSourcesContent> <shadedArtifactAttached>false</shadedArtifactAttached> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>