Download katharsis-client-3.0.2.jar file

Introduction

You can download katharsis-client-3.0.2.jar in this page.

License

Apache License 2.0

Type List

katharsis-client-3.0.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/io.katharsis/katharsis-client/pom.properties
META-INF/maven/io.katharsis/katharsis-client/pom.xml
io.katharsis.client.ClientException.class
io.katharsis.client.KatharsisClient.class
io.katharsis.client.RelationshipRepositoryStub.class
io.katharsis.client.ResourceRepositoryStub.class
io.katharsis.client.ResponseBodyException.class
io.katharsis.client.action.ActionStubFactory.class
io.katharsis.client.action.ActionStubFactoryContext.class
io.katharsis.client.action.JerseyActionStubFactory.class
io.katharsis.client.http.HttpAdapter.class
io.katharsis.client.http.HttpAdapterRequest.class
io.katharsis.client.http.HttpAdapterResponse.class
io.katharsis.client.http.apache.HttpClientAdapter.class
io.katharsis.client.http.apache.HttpClientAdapterListener.class
io.katharsis.client.http.apache.HttpClientAdapterListenerBase.class
io.katharsis.client.http.apache.HttpClientRequest.class
io.katharsis.client.http.apache.HttpClientResponse.class
io.katharsis.client.http.okhttp.OkHttpAdapter.class
io.katharsis.client.http.okhttp.OkHttpAdapterListener.class
io.katharsis.client.http.okhttp.OkHttpAdapterListenerBase.class
io.katharsis.client.http.okhttp.OkHttpRequest.class
io.katharsis.client.http.okhttp.OkHttpResponse.class
io.katharsis.client.internal.AbstractStub.class
io.katharsis.client.internal.ClientDocumentMapper.class
io.katharsis.client.internal.ClientResourceUpsert.class
io.katharsis.client.internal.ClientStubInvocationHandler.class
io.katharsis.client.internal.RelationshipRepositoryStubImpl.class
io.katharsis.client.internal.ResourceRepositoryStubImpl.class
io.katharsis.client.internal.proxy.BasicProxyFactory.class
io.katharsis.client.internal.proxy.ClientProxyFactory.class
io.katharsis.client.internal.proxy.ClientProxyFactoryContext.class
io.katharsis.client.internal.proxy.CollectionInvocationHandler.class
io.katharsis.client.internal.proxy.ObjectProxy.class
io.katharsis.client.internal.proxy.PrimitiveProxy.class
io.katharsis.client.module.ClientModule.class
io.katharsis.client.module.HttpAdapterAware.class
io.katharsis.client.response.JsonLinksInformation.class
io.katharsis.client.response.JsonMetaInformation.class

Pom

katharsis-client-3.0.2.pom file content.

<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>

	<parent>
		<groupId>io.katharsis</groupId>
		<artifactId>katharsis-parent</artifactId>
		<version>3.0.2</version>
		<relativePath>../katharsis-parent</relativePath>
	</parent>

	<artifactId>katharsis-client</artifactId>
	<packaging>bundle</packaging>

	<name>katharsis-client</name>
	<url>https://github.com/katharsis-project/katharsis-framework</url>
	<description>Katharsis client library</description>
	<scm>
		<url>https://github.com/katharsis-project/katharsis-framework</url>
		<connection>scm:git:git://github.com/katharsis-project/katharsis-framework.git</connection>
		<developerConnection>scm:git:git@github.com:katharsis-project/katharsis-framework.git</developerConnection>
	</scm>
	<issueManagement>
		<system>GitHub</system>
		<url>https://github.com/katharsis-project/katharsis-framework/issues</url>
	</issueManagement>
	<licenses>
		<license>
			<name>Apache License 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
		</license>
	</licenses>
	<developers>
		<developer>
			<organization>Katharsis community</organization>
		</developer>
	</developers>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.19.1</version>
				<configuration>
          <argLine>-Xmx1G</argLine>
					<systemPropertyVariables>
						<java.util.logging.config.file>logging.properties</java.util.logging.config.file>
					</systemPropertyVariables>
					<runOrder>alphabetical</runOrder>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.jacoco</groupId>
				<artifactId>jacoco-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.eluder.coveralls</groupId>
				<artifactId>coveralls-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-deploy-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<configuration>
					<instructions>
						<Export-Package>io.katharsis.client.*</Export-Package>
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<dependencies>
			
		<dependency>
			<groupId>io.katharsis</groupId>
			<artifactId>katharsis-core</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>${httpclient.version}</version>
			<optional>true</optional>
		</dependency>

		<dependency>
			<groupId>org.glassfish.jersey.ext</groupId>
			<artifactId>jersey-proxy-client</artifactId>
			<version>${jersey.version}</version>
			<optional>true</optional>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.glassfish.jersey.core</groupId>
			<artifactId>jersey-client</artifactId>
			<version>${jersey.version}</version>
			<optional>true</optional>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.glassfish.jersey.media</groupId>
			<artifactId>jersey-media-json-jackson</artifactId>
			<version>${jersey.version}</version>
			<optional>true</optional>
			<scope>compile</scope>
		</dependency>

		<dependency>
			<groupId>com.squareup.okhttp3</groupId>
			<artifactId>okhttp</artifactId>
			<version>${okhttp.version}</version>
			<optional>true</optional>
		</dependency>

		<dependency>
			<groupId>io.katharsis</groupId>
			<artifactId>katharsis-rs</artifactId>
			<version>${project.version}</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.reflections</groupId>
			<artifactId>reflections</artifactId>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.glassfish.jersey.core</groupId>
			<artifactId>jersey-common</artifactId>
			<version>${jersey.version}</version>
			<scope>test</scope>
		</dependency>


		<dependency>
			<groupId>org.glassfish.jersey.containers</groupId>
			<artifactId>jersey-container-grizzly2-http</artifactId>
			<version>${jersey.version}</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.glassfish.jersey.test-framework.providers</groupId>
			<artifactId>jersey-test-framework-provider-grizzly2</artifactId>
			<version>${jersey.version}</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.glassfish.jersey.test-framework</groupId>
			<artifactId>jersey-test-framework-core</artifactId>
			<version>${jersey.version}</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>ch.qos.logback</groupId>
			<artifactId>logback-classic</artifactId>
			<scope>test</scope>
		</dependency>
		
		<dependency>
		    <groupId>io.rest-assured</groupId>
		    <artifactId>rest-assured</artifactId>
		    <version>3.0.2</version>
		    <scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jul-to-slf4j</artifactId>
			<scope>test</scope>
		</dependency>
		
		<dependency>
			<groupId>com.fasterxml.jackson.jaxrs</groupId>
			<artifactId>jackson-jaxrs-json-provider</artifactId>
			<version>${jackson.version}</version>
		</dependency>
	</dependencies>

</project>

POM Entry

<dependency>
   <groupId>io.katharsis</groupId>
   <artifactId>katharsis-client</artifactId>
   <version>3.0.2</version>
</dependency>

Download

If you think the following katharsis-client-3.0.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download katharsis-client-3.0.2.jar file




PreviousNext

Related