Download lightcouch-0.1.8.jar file

Introduction

You can download lightcouch-0.1.8.jar in this page.

License

The Apache Software License, Version 2.0

Type List

lightcouch-0.1.8.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.lightcouch/lightcouch/pom.properties
META-INF/maven/org.lightcouch/lightcouch/pom.xml
org.lightcouch.Attachment.class
org.lightcouch.Changes.class
org.lightcouch.ChangesResult.class
org.lightcouch.CouchDbClient.class
org.lightcouch.CouchDbClientAndroid.class
org.lightcouch.CouchDbClientBase.class
org.lightcouch.CouchDbConfig.class
org.lightcouch.CouchDbContext.class
org.lightcouch.CouchDbDesign.class
org.lightcouch.CouchDbException.class
org.lightcouch.CouchDbInfo.class
org.lightcouch.CouchDbProperties.class
org.lightcouch.CouchDbUtil.class
org.lightcouch.DesignDocument.class
org.lightcouch.Document.class
org.lightcouch.DocumentConflictException.class
org.lightcouch.NoDocumentException.class
org.lightcouch.Page.class
org.lightcouch.Params.class
org.lightcouch.Replication.class
org.lightcouch.ReplicationResult.class
org.lightcouch.Replicator.class
org.lightcouch.ReplicatorDocument.class
org.lightcouch.Response.class
org.lightcouch.URIBuilder.class
org.lightcouch.View.class
org.lightcouch.ViewResult.class

Pom

lightcouch-0.1.8.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>

	<groupId>org.lightcouch</groupId>
	<artifactId>lightcouch</artifactId>
	<version>0.1.8</version>
	<packaging>jar</packaging>
	<name>LightCouch</name>
	<description>CouchDB Java API</description>
	<inceptionYear>2011</inceptionYear>
	<url>http://www.lightcouch.org</url>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<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/lightcouch/LightCouch.git</connection>
		<developerConnection>scm:git:git@github.com:lightcouch/LightCouch.git</developerConnection>
		<url>https://lightcouch@github.com/lightcouch/LightCouch.git</url>
	</scm>
	<developers>
		<developer>
			<id>ahmedyha</id>
			<name>Ahmed Yehia</name>
			<email>ahmed.yehia.m@gmail.com</email>
		</developer>
	</developers>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<httpclient.version>4.4.1</httpclient.version>
		<gson.version>2.3.1</gson.version>
		<junit.version>4.8.2</junit.version>
	</properties>
	<dependencies>
		<!-- Apache HttpComponents -->
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>${httpclient.version}</version>
		</dependency>
		<!-- Gson -->
		<dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
			<version>${gson.version}</version>
		</dependency>
		<!-- Testing -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
			<groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>org.lightcouch</groupId>
   <artifactId>lightcouch</artifactId>
   <version>0.1.8</version>
</dependency>

Download

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



Download lightcouch-0.1.8.jar file




PreviousNext

Related