Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ CeresDB is a high-performance, distributed, schema-less, cloud native time-serie
## Requirements
- Java 8 or later is required for compilation

## Import
```java
<dependency>
<groupId>io.ceresdb</groupId>
<artifactId>ceresdb-all</artifactId>
<version>0.1.0</version>
</dependency>
```

## Init CeresDB client
```java
Expand Down
9 changes: 9 additions & 0 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,15 @@ CeresDBClient 是 CeresDB 的高性能 Java 版客户端。CeresDB 是定位为
## 需要
编译需要 Java 8 及以上

## 引用
```java
<dependency>
<groupId>io.ceresdb</groupId>
<artifactId>ceresdb-all</artifactId>
<version>0.1.0</version>
</dependency>
```

## 初始化 CeresDB Client
```java
// CeresDB options
Expand Down
2 changes: 1 addition & 1 deletion ceresdb-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ceresdb-client</artifactId>
<groupId>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<version>0.1.0</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ceresdb-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ceresdb-client</artifactId>
<groupId>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<version>0.1.0</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ceresdb-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ceresdb-client</artifactId>
<groupId>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<version>0.1.0</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ceresdb-grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ceresdb-client</artifactId>
<groupId>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<version>0.1.0</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ceresdb-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ceresdb-client</artifactId>
<groupId>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<version>0.1.0</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ceresdb-protocol/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ceresdb-client</artifactId>
<groupId>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<version>0.1.0</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ceresdb-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ceresdb-client</artifactId>
<groupId>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<version>0.1.0</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ceresdb-sql-javacc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ceresdb-client</artifactId>
<groupId>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<version>0.1.0</version>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ceresdb-sql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ceresdb-client</artifactId>
<groupId>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<version>0.1.0</version>
</parent>

Expand Down
77 changes: 76 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,34 @@
<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>com.ceresdb</groupId>
<groupId>io.ceresdb</groupId>
<artifactId>ceresdb-client</artifactId>
<version>0.1.0</version>
<packaging>pom</packaging>

<name>ceresdb-client</name>
<description>CeresDBClient is a high-performance Java client for CeresDB. CeresDB is a high-performance, distributed, schema-less, cloud native time-series database that can handle both time-series and analytics workloads.</description>
<url>https://github.com/CeresDB/ceresdb-client-java</url>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo,manual</distribution>
</license>
</licenses>

<developers>
<developer>
<name>zuliang.wzl</name>
<email>zuliangwanghust@gmail.com</email>
</developer>
<developer>
<name>weirong.cwr</name>
<email>weirong.cwr@gmail.com</email>
</developer>
</developers>

<modules>
<module>ceresdb-all</module>
<module>ceresdb-common</module>
Expand All @@ -19,6 +42,23 @@
<module>ceresdb-http</module>
</modules>

<scm>
<connection>https://github.com/CeresDB/ceresdb-client-java</connection>
<developerConnection>https://github.com/CeresDB/ceresdb-client-java</developerConnection>
<url>https://github.com/CeresDB/ceresdb-client-java</url>
</scm>

<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<properties>
<arvo.version>1.10.2</arvo.version>
<gson.version>2.8.9</gson.version>
Expand Down Expand Up @@ -380,6 +420,41 @@
</mapping>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- ignore javadoc check-->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>


</project>