Maven Repository - POM file for Database jedis 2.0.0 2.0.0

Summary

Jedis.

Jedis is a blazingly small and sane Redis java client..

Declaration

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

<dependency>
   <groupId>redis.clients</groupId>
   <artifactId>jedis</artifactId>
   <version>2.0.0</version>
</dependency>

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

License

Name:Jedis License
URL: http://github.com/xetorthio/jedis/raw/master/LICENSE.txt.





Depends on

The jedis-2.0.0 has 2 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
JUnitjunit 4.8.1
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.
1256
Data Structurecommons-pool 1.5.5
Commons Object Pooling Library
13

Plugin

The following plugins are used in the jedis-2.0.0.jar

  1. maven-compiler-plugin
  2. maven-javadoc-plugin
  3. maven-source-plugin
  4. maven-surefire-plugin

Packages

The following packages are defined in the jedis-2.0.0.jar

redis.clients.jedis
redis.clients.jedis.exceptions
redis.clients.util




POM File Source

Here is the content of the POM file.

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

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>5</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <packaging>jar</packaging>
  <groupId>redis.clients</groupId>
  <artifactId>jedis</artifactId>
  <version>2.0.0</version>
  <name>Jedis</name>
  <description>Jedis is a blazingly small and sane Redis java client.</description>
  <url>http://code.google.com/p/jedis/</url>

  <mailingLists>
    <mailingList>
      <name>Jedis Mailing List</name>
      <post>jedis_redis@googlegroups.com</post>
      <archive>
                http://groups.google.com/group/jedis_redis
            </archive>
    </mailingList>
  </mailingLists>

  <licenses>
    <license>
      <name>Jedis License</name>
      <url>http://github.com/xetorthio/jedis/raw/master/LICENSE.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <issueManagement>
    <system>github</system>
    <url>http://github.com/xetorthio/jedis/issues</url>
  </issueManagement>

  <scm>
    <url>http://github.com/xetorthio/jedis</url>
    <connection>scm:git:git@github.com:xetorthio/jedis.git</connection>
    <developerConnection>scm:git:git@github.com:xetorthio/jedis.git</developerConnection>
  </scm>

  <properties>
    <redis-hosts>localhost:6379,localhost:6380</redis-hosts>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.1</version>
      <type>jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-pool</groupId>
      <artifactId>commons-pool</artifactId>
      <version>1.5.5</version>
      <type>jar</type>
      <scope>compile</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.0.2</version>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.6</version>
        <configuration>
          <systemPropertyVariables>
            <redis-hosts>${redis-hosts}</redis-hosts>
          </systemPropertyVariables>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.1.2</version>
        <configuration>
          <attach>true</attach>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.7</version>
        <configuration>
          <aggregate>true</aggregate>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>