组织ID: |
org.elasticsearch |
项目ID: |
mocksocket |
版本: |
1.0 |
最后修改时间: |
2019-06-24 14:42:58 |
包类型: |
jar |
标题: |
Elasticsearch MockSocket |
描述: |
Allows using sockets without having to grant dangerous permissions to all of your code. |
相关URL: |
https://github.com/elastic/mocksocket |
大小: |
9.63KB |
|
Maven引入代码: |
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>mocksocket</artifactId>
<version>1.0</version>
</dependency>
|
Gradle引入代码: |
org.elasticsearch:mocksocket:1.0
|
下载Jar包: |
|
POM文件内容: |
<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>org.elasticsearch</groupId>
<artifactId>mocksocket</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>Elasticsearch MockSocket</name>
<description>Allows using sockets without having to grant dangerous permissions to all of your code.</description>
<inceptionYear>2016</inceptionYear>
<url>https://github.com/elastic/mocksocket</url>
<developers>
<developer>
<name>Elastic</name>
<url>http://www.elastic.co</url>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:elastic/mocksocket.git</connection>
<developerConnection>scm:git:git@github.com:elastic/mocksocket.git</developerConnection>
<url>https://github.com/elastic/mocksocket</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<forceCreation>true</forceCreation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</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>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.elasticsearch.mocksocket.MockHttpServer$1.class
org.elasticsearch.mocksocket.MockHttpServer$DelegatingHttpServer.class
org.elasticsearch.mocksocket.MockHttpServer$DelegatingHttpsServer.class
org.elasticsearch.mocksocket.MockHttpServer.class
org.elasticsearch.mocksocket.MockServerSocket.class
org.elasticsearch.mocksocket.MockSocket.class
META-INF/maven/org.elasticsearch/mocksocket/pom.xml
META-INF/maven/org.elasticsearch/mocksocket/pom.properties
|
依赖Jar: |
|