pangolin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.nomou.pangolin</groupId>
<artifactId>pangolin</artifactId>
<version>0.0.1-BETA</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.nomou.pangolin</groupId>
<artifactId>pangolin</artifactId>
<packaging>pom</packaging>
<version>0.0.1-BETA</version>
<name>Pangolin</name>
<url>https://github.com/nomou/pangolin/</url>
<description>Pangolin - a light java tunnel</description>
<modules>
<module>pangolin-common</module>
<module>pangolin-client</module>
<!--
<module>pangolin-server</module>
-->
</modules>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>actable</distribution>
</license>
</licenses>
<organization>
<name>nomou</name>
<url>https://github.com/nomou/</url>
</organization>
<developers>
<developer>
<name>vacoor</name>
<email>vacoor@qq.com</email>
</developer>
</developers>
<scm>
<url>https://github.com/nomou/pangolin</url>
<connection>scm:git:git@github.com:nomou/pangolin.git</connection>
<developerConnection>scm:git:git@github.com:nomou/pangolin.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>git@gitee Issue Management</system>
<url>https://github.com/nomou/pangolin/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/nougat/</url>
</ciManagement>
<distributionManagement>
<snapshotRepository>
<id>${dist.mgt.snap-repo.id}</id>
<url>${dist.mgt.snap-repo.url}</url>
</snapshotRepository>
<repository>
<id>${dist.mgt.repo.id}</id>
<url>${dist.mgt.repo.url}</url>
</repository>
</distributionManagement>
<properties>
<project.encoding>UTF-8</project.encoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<tube.version>0.0.1-BETA</tube.version>
<nougat.version>1.0.12</nougat.version>
<lombok.version>1.18.20</lombok.version>
<slf4j.version>1.7.6</slf4j.version>
<log4j.version>1.2.17</log4j.version>
<!--
<netty.version>4.1.59.Final</netty.version>
-->
<netty.version>4.1.25.Final</netty.version>
<spring-boot.version>1.5.9.RELEASE</spring-boot.version>
<!-- distributionManagement [[ -->
<!--
| download:
| snapshot: https://oss.sonatype.org/content/groups/public
| release: https://oss.sonatype.org/content/groups/staging
-->
<dist.mgt.snap-repo.id>ossrh</dist.mgt.snap-repo.id>
<dist.mgt.snap-repo.url>https://oss.sonatype.org/content/repositories/snapshots/</dist.mgt.snap-repo.url>
<dist.mgt.repo.id>ossrh</dist.mgt.repo.id>
<dist.mgt.repo.url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</dist.mgt.repo.url>
<!-- ]] distributionManagement -->
<gpg.executable>C:/Program Files (x86)/GnuPG/bin/gpg.exe</gpg.executable>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>com.github.nomou.pangolin</groupId>
<artifactId>pangolin-common</artifactId>
<version>${tube.version}</version>
</dependency>
<dependency>
<groupId>com.github.nomou.pangolin</groupId>
<artifactId>pangolin-client-core</artifactId>
<version>${tube.version}</version>
</dependency>
<dependency>
<groupId>com.github.nomou.pangolin</groupId>
<artifactId>pangolin-client-servlet</artifactId>
<version>${tube.version}</version>
</dependency>
<dependency>
<groupId>com.github.nomou.pangolin</groupId>
<artifactId>pangolin-client-spring-boot-starter</artifactId>
<version>${tube.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</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-transport</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>2.14.6</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<!-- java source & javadoc plugin [[ -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<quiet>true</quiet>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<doclint>none</doclint>
<failOnWarnings>false</failOnWarnings>
<failOnError>false</failOnError>
<!--<additionalparam>-Xdoclint:none</additionalparam>-->
</configuration>
</plugin>
<!-- ]] java source & javadoc plugin -->
<!-- GPG plugin [[ -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- ]] GPG -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<!--
<executions>
<execution>
<groupId>org.springframework.boot</groupId>
<artifactId>log4web-sample</artifactId>
</execution>
</executions>
-->
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<!--<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>-->
</configuration>
</plugin>
</plugins>
</build>
</project>