littleproxy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.jockx</groupId> <artifactId>littleproxy</artifactId> <version>2.0.0-beta-1</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 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.jockx</groupId> <artifactId>littleproxy</artifactId> <packaging>pom</packaging> <version>2.0.0-beta-1</version> <name>LittleProxy</name> <description> LittleProxy is a high performance HTTP proxy written in Java and using the Netty networking framework. </description> <url>https://github.com/JockX/LittleProxy</url> <scm> <connection>scm:git:https://github.com/JockX/LittleProxy.git</connection> <developerConnection>scm:git:git@github.com:JockX/LittleProxy.git</developerConnection> <url>scm:git:https://github.com/JockX/LittleProxy</url> <tag>HEAD</tag> </scm> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <relocation> <groupId>xyz.rogfam</groupId> <artifactId>littleproxy</artifactId> <version>2.0.0-beta-1</version> <message>Project found new home on https://github.com/mrog/LittleProxy</message> </relocation> </distributionManagement> <!-- disable doclint, since Java 8 treats warnings as errors --> <profiles> <profile> <id>release</id> <build> <plugins> <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> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> </plugins> </pluginManagement> </build> <developers> <developer> <id>afisk</id> <name>Adam fisk</name> <email>a@littleshoot.org</email> <organization>LittleShoot</organization> <organizationUrl>http://www.littleshoot.org/</organizationUrl> <roles><role>Developer</role></roles> <timezone>-5</timezone> </developer> <developer> <id>ox.to.a.cart</id> <name>Ox Cart</name> <email>ox@getlantern.org</email> <organization>GetLantern</organization> <organizationUrl>https://www.getlantern.org/</organizationUrl> <roles><role>Developer</role></roles> <timezone>-5</timezone> </developer> </developers> </project>