Skip to content

Commit

Permalink
change groupId from zkclient to org.github.zkclient
Browse files Browse the repository at this point in the history
  • Loading branch information
Ady Liu committed Apr 24, 2012
1 parent 57f00ca commit 8626edc
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 118 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -5,3 +5,4 @@
build-eclipse
build
junit*
target
213 changes: 97 additions & 116 deletions pom.xml
@@ -1,118 +1,99 @@
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>zkclient</groupId>
<artifactId>zkclient</artifactId>
<name>zkclient</name>
<version>1.0</version>
<packaging>jar</packaging>
<description />
<developers>
<developer>
<id>imxylz</id>
<name>Ady Liu</name>
<email>imxylz@gmail.com</email>
<url>https://github.com/adyliu</url>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>pvoss </id>
<name>Peter Voss</name>
<email>info@petervoss.org</email>
<url>https://github.com/sgroschupf/zkclient</url>
<roles>
<role>origin author</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<maxmem>1024m</maxmem>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<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.5</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<maxmemory>1g</maxmemory>
<links>
<link>http://java.sun.com/javase/6/docs/api/</link>
</links>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
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.github.zkclient</groupId>
<artifactId>zkclient</artifactId>
<name>zkclient</name>
<version>1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<description >A zookeeper(http://zookeeper.apache.org) client wrapper.</description>
<developers>
<developer>
<id>imxylz</id>
<name>Ady Liu</name>
<email>imxylz@gmail.com</email>
<url>https://github.com/adyliu</url>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>pvoss </id>
<name>Peter Voss</name>
<email>info@petervoss.org</email>
<url>https://github.com/sgroschupf/zkclient</url>
<roles>
<role>origin author</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.3.3.patch</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<url>https://github.com/adyliu/zkclient</url>
<scm>
<url>https://adyliu@github.com/adyliu/zkclient.git</url>
<connection>git@github.com:adyliu/zkclient.git</connection>
</scm>
</project>
4 changes: 2 additions & 2 deletions src/test/resources/log4j.properties
@@ -1,5 +1,5 @@
log4j.rootLogger=info, console
log4j.logger.org.apache.zookeeper=error
log4j.rootLogger=INFO, console
log4j.logger.org.apache.zookeeper=WARN

log4j.appender.console=org.apache.log4j.ConsoleAppender
log4j.appender.console.target=System.out
Expand Down

0 comments on commit 8626edc

Please sign in to comment.