gatling-recorder-bc-shaded
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.gatling</groupId> <artifactId>gatling-recorder-bc-shaded</artifactId> <version>1.81.0</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>oss-parent</artifactId> <groupId>org.sonatype.oss</groupId> <version>9</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>io.gatling</groupId> <artifactId>gatling-recorder-bc-shaded</artifactId> <name>gatling-recorder-bc-shaded</name> <version>1.81.0</version> <description>Shaded BouncyCastle for Gatling Recorder</description> <url>https://github.com/bcgit/bc-java</url> <inceptionYear>2022</inceptionYear> <developers> <developer> <id>feedback-crypto</id> <name>The Legion of the Bouncy Castle Inc.</name> <email>feedback-crypto@bouncycastle.org</email> </developer> </developers> <licenses> <license> <name>Bouncy Castle Licence</name> <url>https://www.bouncycastle.org/licence.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git:@github.com:gatling/gatling-recorder-bc-shaded.git</connection> <developerConnection>scm:git:git:@github.com:gatling/gatling-recorder-bc-shaded.git</developerConnection> <tag>8c8a28005768b5e9a7791c23979faf23995b6ed5</tag> <url>https://github.com/gatling/gatling-recorder-bc-shaded</url> </scm> <build> <plugins> <plugin> <groupId>fr.brouillard.oss</groupId> <artifactId>jgitver-maven-plugin</artifactId> <version>1.9.0</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>attach-modified-poms</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>fr.brouillard.oss</groupId> <artifactId>jgitver-maven-plugin</artifactId> <version>1.9.0</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven-shade-plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>false</minimizeJar> <shadeSourcesContent>true</shadeSourcesContent> <createSourcesJar>true</createSourcesJar> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/versions/**</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>org.bouncycastle</pattern> <shadedPattern>io.gatling.recorder.internal.bouncycastle</shadedPattern> </relocation> </relocations> <transformers> <transformer /> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <deploymentName>${project.groupId}.${project.artifactId}-${project.version}</deploymentName> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <executions> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>Release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> <properties> <maven.compiler.release>11</maven.compiler.release> <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version> <maven-jar-plugin.version>3.4.2</maven-jar-plugin.version> <maven-shade-plugin.version>3.6.0</maven-shade-plugin.version> <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> <encoding>UTF-8</encoding> <bc.version>1.81</bc.version> </properties> </project>