| Group ID: |
com.github.monkeywie |
| Artifact ID: |
proxyee |
| Version: |
1.7.6 |
| Last modified: |
24.06.2023 06:09 |
| Packaging: |
jar |
| Name: |
proxyee |
| Description: |
HTTP proxy server,support HTTPS and websocket.MITM impl,intercept and tamper HTTPS traffic. |
| URL: |
https://github.com/monkeyWie/proxyee |
| License: |
The MIT License (MIT) |
| Source: |
https://github.com/monkeyWie/proxyee |
| Developers: |
monkeyWie |
|
|
| Size: |
72.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/com/github/monkeywie/proxyee/1.7.6/proxyee-1.7.6.jar |
| POM: |
Show
hide
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.monkeywie</groupId>
<artifactId>proxyee</artifactId>
<version>1.7.6</version>
<packaging>jar</packaging>
<name>proxyee</name>
<description>HTTP proxy server,support HTTPS and websocket.MITM impl,intercept and tamper HTTPS traffic.
</description>
<url>https://github.com/monkeyWie/proxyee</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>monkeyWie</name>
<email>liwei-8466@qq.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/monkeyWie/proxyee.git</connection>
<developerConnection>scm:git:https://github.com/monkeyWie/proxyee.git</developerConnection>
<url>https://github.com/monkeyWie/proxyee</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<netty.version>4.1.94.Final</netty.version>
</properties>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler-proxy</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.60</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- mvn clean deploy -P release -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</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>
<!-- auto close and release on nexus -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>releases</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<stagingProgressTimeoutMinutes>60</stagingProgressTimeoutMinutes>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>releases</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</profile>
<profile>
<id>exec</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.5</version>
<configuration>
<archive>
<manifest>
<mainClass>com.github.monkeywie.proxyee.HttpProxyServerApp</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Maven: |
<dependency>
<groupId>com.github.monkeywie</groupId>
<artifactId>proxyee</artifactId>
<version>1.7.6</version>
</dependency>
|
| Gradle: |
com.github.monkeywie:proxyee:1.7.6 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
JAR
bcpkix-jdk15on-1.60.jar
in org/bouncycastle/bcpkix-jdk15on/1.60
-
[JAR]
netty-buffer-4.1.94.Final.jar
in io/netty/netty-buffer/4.1.94.Final
-
[JAR]
netty-codec-4.1.94.Final.jar
in io/netty/netty-codec/4.1.94.Final
-
[JAR]
netty-codec-http-4.1.94.Final.jar
in io/netty/netty-codec-http/4.1.94.Final
-
[JAR]
netty-handler-4.1.94.Final.jar
in io/netty/netty-handler/4.1.94.Final
-
[JAR]
netty-handler-proxy-4.1.94.Final.jar
in io/netty/netty-handler-proxy/4.1.94.Final
|
| Used by: iArtifacts that declare a dependency on this library - on any version, not necessarily this exact one. |
|
| Dependency Graph: |
Show
Less
More
|