Maven Repository - POM file for Document Database jcouchdb 0.11.0-1 0.11.0-1

Summary

jcouchdb.

Java5 couchdb driver.

Declaration

Here is the list of declaration for jcouchdb. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.google.code.jcouchdb</groupId>
   <artifactId>jcouchdb</artifactId>
   <version>0.11.0-1</version>
</dependency>

If you think this Maven repository POM file listing for jcouchdb is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:Revised BSD License
URL: http://svenson.googlecode.com/svn/trunk/LICENSE.TXT.

Depends on

The jcouchdb-0.11.0-1 has 15 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Logcommons-logging 1.1.1
Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.
1143
Data Structurecommons-beanutils 1.8.0
BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection.
134
Data Structurecommons-codec 1.3
The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.
348
Filecommons-io 1.4
Commons-IO contains utility classes, stream implementations, file filters, file comparators and endian classes.
444
Httphttpclient 4.0
HttpComponents Client (base module)
29
Httphttpcore 4.0.1
HttpComponents Core (Java 1.3 compatible)
13
Logjcl-over-slf4j 1.5.6
JCL 1.1.1 implementation over SLF4J
18
Logslf4j-api 1.5.6
The slf4j API
64
Logslf4j-log4j12 1.5.6
The slf4j log4j-12 binding
60
JUnitjunit 4.5
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
385




Plugin

The following plugins are used in the jcouchdb-0.11.0-1.jar

  1. maven-compiler-plugin
  2. maven-dependency-plugin

Packages

The following packages are defined in the jcouchdb-0.11.0-1.jar

org.jcouchdb.db
org.jcouchdb.document
org.jcouchdb.exception
org.jcouchdb.util

POM File Source

Here is the content of the POM file.

<?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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <name>jcouchdb</name>

    <groupId>com.google.code.jcouchdb</groupId>
    <artifactId>jcouchdb</artifactId>
    <version>0.11.0-1</version>
    <packaging>jar</packaging>
    <description>Java5 couchdb driver</description>
    <url>http://code.google.com/p/jcouchdb/</url>
    <scm>
        <connection>scm:svn:http://jcouchdb.googlecode.com/svn/trunk</connection>
        <developerConnection>scm:svn:https://jcouchdb.googlecode.com/svn/trunk</developerConnection>
        <url>http://jcouchdb.googlecode.com/svn/trunk/</url>
    </scm>
    <licenses>
        <license>
            <name>Revised BSD License</name>
            <url>http://svenson.googlecode.com/svn/trunk/LICENSE.TXT</url>
        </license>
    </licenses>

    <prerequisites>
        <maven>2</maven>
    </prerequisites>

    <inceptionYear>2008</inceptionYear>

    <build>
        <sourceDirectory>src</sourceDirectory>
        <testSourceDirectory>test</testSourceDirectory>
        <testResources>
            <testResource>
                <directory>test</directory>
                <includes>
                    <include>log4j.properties</include>
                    <include>**/*.js</include>
                    <include>**/*.json</include>
                    <include>**/*.jar</include>
                    <include>**/*.txt</include>
                </includes>
            </testResource>
            <testResource>
                <directory>src</directory>
                <includes>
                    <include>**/*.types</include>
                </includes>
            </testResource>
        </testResources>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <target>1.5</target>
                    <source>1.5</source>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.1</version>
                <executions>
                    <execution>
                        <id>copy-dependencies</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/../lib/compile</outputDirectory>
                            <includeScope>compile</includeScope>
                        </configuration>
                    </execution>
                    <execution>
                        <id>copy-test-dependencies</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/../lib/test</outputDirectory>
                            <includeScope>test</includeScope>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1.1</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
            <version>1.8.0</version>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.4</version>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpcore</artifactId>
            <version>4.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>jcl-over-slf4j</artifactId>
            <version>1.5.6</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.5.6</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>1.5.6</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.14</version>
        </dependency>
<!--  
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring</artifactId>
            <version>2.5.5</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <version>2.5.5</version>
        </dependency>
-->
        <dependency>
            <groupId>com.google.code.svenson</groupId>
            <artifactId>svenson</artifactId>
            <version>1.3.7</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.5</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>2.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.jmock</groupId>
            <artifactId>jmock</artifactId>
            <version>2.5.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.1</version>
            <scope>test</scope>
        </dependency>

    </dependencies>

    <distributionManagement>
        <repository>
          <id>fforw-de-ssh-repository</id>
          <url>scpexe://fforw.de/home/mvnrsync/m2repo/releases</url>
        </repository>
    </distributionManagement>

</project>