组织ID: |
com.github.paweladamski |
项目ID: |
HttpClientMock |
版本: |
0.3.2 |
最后修改时间: |
2019-11-30 03:31:04 |
包类型: |
jar |
标题: |
${project.groupId}:${project.artifactId} |
描述: |
Library for mocking Apache HttpClient. |
相关URL: |
https://github.com/PawelAdamski/HttpClientMock |
大小: |
19.40KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.paweladamski</groupId>
<artifactId>HttpClientMock</artifactId>
<version>0.3.2</version>
</dependency>
|
Gradle引入代码: |
com.github.paweladamski:HttpClientMock:0.3.2
|
下载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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.paweladamski</groupId>
<artifactId>HttpClientMock</artifactId>
<version>0.3.2</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Library for mocking Apache HttpClient.</description>
<url>https://github.com/PawelAdamski/HttpClientMock</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Pawe艂 Adamski</name>
<email>pawel.poczta@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/paweladamski/HttpClientMock.git</connection>
<developerConnection>scm:git:ssh://github.com:PawelAdamski/HttpClientMock.git</developerConnection>
<url>http://github.com/PawelAdamski/HttpClientMock/tree/master</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>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<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>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.github.paweladamski.condition.ParameterCondition.class
com.github.paweladamski.condition.HttpMethodCondition.class
com.github.paweladamski.condition.Condition.class
com.github.paweladamski.condition.BodyMatcher.class
com.github.paweladamski.condition.HostCondition.class
com.github.paweladamski.condition.HeaderCondition.class
com.github.paweladamski.HttpResponseProxy.class
com.github.paweladamski.action.StatusResponse.class
com.github.paweladamski.action.StringResponse.class
com.github.paweladamski.action.Action.class
com.github.paweladamski.action.ExceptionAction.class
com.github.paweladamski.HttpClientVerifyBuilder.class
com.github.paweladamski.HttpClientMock.class
com.github.paweladamski.Call.class
com.github.paweladamski.HttpClientMockBuilder.class
com.github.paweladamski.Rule.class
META-INF/maven/com.github.paweladamski/HttpClientMock/pom.xml
META-INF/maven/com.github.paweladamski/HttpClientMock/pom.properties
|
依赖Jar: |
httpclient-4.5.3.jar
/org.apache.httpcomponents/httpclient/4.5.3
查看httpclient所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
hamcrest-all-1.3.jar
/org.hamcrest/hamcrest-all/1.3
查看hamcrest-all所有版本文件
|