组织ID: |
org.rnorth |
项目ID: |
tcp-unix-socket-proxy |
版本: |
1.0.1 |
最后修改时间: |
2018-07-28 18:21:49 |
包类型: |
jar |
标题: |
TCP to Unix Socket Proxy |
描述: |
Listens on a TCP port and proxies connections to a UNIX domain socket.
|
相关URL: |
https://github.com/rnorth/tcp-unix-socket-proxy |
大小: |
6.13KB |
|
Maven引入代码: |
<dependency>
<groupId>org.rnorth</groupId>
<artifactId>tcp-unix-socket-proxy</artifactId>
<version>1.0.1</version>
</dependency>
|
Gradle引入代码: |
org.rnorth:tcp-unix-socket-proxy:1.0.1
|
下载Jar包: |
|
POM文件内容: |
<?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>org.rnorth</groupId>
<artifactId>tcp-unix-socket-proxy</artifactId>
<version>1.0.1</version>
<name>TCP to Unix Socket Proxy</name>
<description>
Listens on a TCP port and proxies connections to a UNIX domain socket.
</description>
<url>https://github.com/rnorth/tcp-unix-socket-proxy</url>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>rnorth</id>
<name>Richard North</name>
<email>rich.north@gmail.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.kohlschutter.junixsocket</groupId>
<artifactId>junixsocket-native-common</artifactId>
<version>2.0.4</version>
</dependency>
<dependency>
<groupId>com.kohlschutter.junixsocket</groupId>
<artifactId>junixsocket-common</artifactId>
<version>2.0.4</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.21</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.4</version>
<configuration>
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>deploy</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>deploy</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<executions>
<execution>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:https://github.com/rnorth/tcp-unix-socket-proxy.git</connection>
<developerConnection>scm:git:git@github.com:rnorth/tcp-unix-socket-proxy.git</developerConnection>
<url>https://github.com/rnorth/tcp-unix-socket-proxy</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>bintray</id>
<url>https://api.bintray.com/maven/richnorth/maven/tcp-unix-socket-proxy</url>
</repository>
</distributionManagement>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.rnorth.tcpunixsocketproxy.ProxyThread.class
org.rnorth.tcpunixsocketproxy.TcpToUnixSocketProxy.class
META-INF/maven/org.rnorth/tcp-unix-socket-proxy/pom.xml
META-INF/maven/org.rnorth/tcp-unix-socket-proxy/pom.properties
|
依赖Jar: |
junixsocket-native-common-2.0.4.jar
/com.kohlschutter.junixsocket/junixsocket-native-common/2.0.4
查看junixsocket-native-common所有版本文件
junixsocket-common-2.0.4.jar
/com.kohlschutter.junixsocket/junixsocket-common/2.0.4
查看junixsocket-common所有版本文件
slf4j-api-1.7.21.jar
/org.slf4j/slf4j-api/1.7.21
查看slf4j-api所有版本文件
slf4j-simple-1.7.21.jar
/org.slf4j/slf4j-simple/1.7.21
查看slf4j-simple所有版本文件
|