shaft-capture-proxy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.shafthq</groupId>
<artifactId>shaft-capture-proxy</artifactId>
<version>10.3.20260722</version>
</dependency><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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.shafthq</groupId>
<artifactId>shaft-parent</artifactId>
<version>10.3.20260722</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>shaft-capture-proxy</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>
Embedded MITM HTTP(S) proxy for recording native mobile API traffic (Android/iOS
emulators, simulators, and real devices) into SHAFT Capture sessions. Kept as its own
module so the MITM/Netty/Bouncy Castle dependencies stay off the classpath of consumers
that never enable mobile API capture.
</description>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>shaft-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>shaft-capture</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.littleproxy</groupId>
<artifactId>littleproxy</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<surefire.failIfNoSpecifiedTests>false</surefire.failIfNoSpecifiedTests>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.6</version>
<configuration>
<excludedGroups>external-e2e</excludedGroups>
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
<argLine>@{argLine} ${surefireArgLine}</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>