m-heuser
2010-09-29 13:28:59 +02:00
parent 723702b492
commit c4f922036d
2 changed files with 39 additions and 66 deletions

View File

@@ -1,7 +1,7 @@
apply plugin: 'java'
apply plugin: 'maven'
group = 'redis.clients'
group = 'com.googlecode.jedis'
archiveBaseName = 'jedis'
version = '1.2.0'

103
pom.xml
View File

@@ -1,10 +1,46 @@
<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>
<groupId>redis.clients</groupId>
<packaging>jar</packaging>
<groupId>com.googlecode.jedis</groupId>
<artifactId>jedis</artifactId>
<version>1.2.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>
<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:http://github.com/xetorthio/jedis.git</connection>
<developerConnection>scm:git:http://github.com/xetorthio/jedis.git</developerConnection>
</scm>
<properties>
<redis-hosts>localhost:6379,localhost:6380</redis-hosts>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
@@ -15,37 +51,6 @@
</dependency>
</dependencies>
<properties>
<redis-hosts>localhost:6379,localhost:6380</redis-hosts>
</properties>
<name>Jedis</name>
<description>Jedis is a blazingly small and sane Redis java client.</description>
<url>http://github.com/xetorthio/jedis</url>
<issueManagement>
<system>github</system>
<url>http://github.com/xetorthio/jedis</url>
</issueManagement>
<scm>
<url>scm:git:http://github.com/xetorthio/jedis.git</url>
</scm>
<mailingLists>
<mailingList>
<name>Jedis</name>
<subscribe>http://groups.google.com/group/jedis_redis</subscribe>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>Jedis License</name>
<url>http://github.com/xetorthio/jedis/raw/master/LICENSE.txt</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
@@ -57,7 +62,6 @@
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
@@ -68,37 +72,6 @@
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>