pushy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.123avi</groupId> <artifactId>pushy</artifactId> <version>0.8.1</version> </dependency>
<?xml version="1.0"?> <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> <artifactId>pushy</artifactId> <name>Pushy</name> <parent> <groupId>com.github.123avi</groupId> <artifactId>pushy-parent</artifactId> <version>0.8.1</version> </parent> <dependencies> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-http2</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler-proxy</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.6.2</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.6</version> </dependency> <dependency> <groupId>org.eclipse.jetty.alpn</groupId> <artifactId>alpn-api</artifactId> <version>1.1.2.v20150522</version> <!-- Provided by alpn-boot; see http://www.eclipse.org/jetty/documentation/current/alpn-chapter.html#alpn-understanding --> <scope>provided</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <version>1.53</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <overview>${basedir}/src/main/java/overview.html</overview> <show>public</show> <links> <link>http://netty.io/4.1/api/</link> </links> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>test-with-alpn-boot</id> <activation> <activeByDefault>true</activeByDefault> <property> <name>env.PUSHY_SSL_PROVIDER</name> <value>jdk</value> </property> </activation> <properties> <jetty.alpnAgent.version>2.0.0</jetty.alpnAgent.version> <jetty.alpnAgent.path>${settings.localRepository}/org/mortbay/jetty/alpn/jetty-alpn-agent/${jetty.alpnAgent.version}/jetty-alpn-agent-${jetty.alpnAgent.version}.jar</jetty.alpnAgent.path> <jetty.alpnAgent.option>forceNpn=false</jetty.alpnAgent.option> <argLine.alpnAgent>-javaagent:${jetty.alpnAgent.path}=${jetty.alpnAgent.option}</argLine.alpnAgent> </properties> <build> <plugins> <!-- Download the alpn-boot.jar in advance to add it to the boot classpath. --> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>get-alpn-boot</id> <phase>validate</phase> <goals> <goal>get</goal> </goals> <configuration> <groupId>org.mortbay.jetty.alpn</groupId> <artifactId>jetty-alpn-agent</artifactId> <version>${jetty.alpnAgent.version}</version> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> <configuration> <argLine>${argLine.alpnAgent} -Dorg.slf4j.simpleLogger.defaultLogLevel=warn -Dio.netty.leakDetectionLevel=PARANOID -ea</argLine> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>test-with-netty-tcnative</id> <activation> <property> <name>env.PUSHY_SSL_PROVIDER</name> <value>native</value> </property> </activation> <dependencies> <dependency> <groupId>io.netty</groupId> <artifactId>netty-tcnative-boringssl-static</artifactId> <version>1.1.33.Fork17</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> <configuration> <argLine>-Dorg.slf4j.simpleLogger.defaultLogLevel=warn</argLine> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>