Skip to content

Commit

Permalink
Split DKV Client API & Admin API protos (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
kingster authored Jul 27, 2021
1 parent 948fa72 commit 36d31bd
Show file tree
Hide file tree
Showing 6 changed files with 2,163 additions and 2,049 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

[![build](https://github.com/flipkart-incubator/dkv/actions/workflows/main.yml/badge.svg)](https://github.com/flipkart-incubator/dkv/actions/workflows/main.yml)
[![DKV CI](https://github.com/flipkart-incubator/dkv/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/flipkart-incubator/dkv/actions/workflows/main.yml)

# dkv
DKV is a distributed key value store server written in [Go](https://golang.org). It exposes all its functionality over
Expand Down
10 changes: 9 additions & 1 deletion clients/java/dkv-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<properties>
<proto-file-path>../../../pkg/serverpb</proto-file-path>
<proto-file-path>../../../pkg/serverpb/</proto-file-path>
</properties>
<name>dkv-client</name>
<dependencies>
Expand Down Expand Up @@ -51,6 +51,11 @@
<artifactId>metrics-jmx</artifactId>
<version>4.1.9</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
</dependencies>
<build>
<plugins>
Expand All @@ -76,6 +81,9 @@
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.29.0:exe:${os.detected.classifier}</pluginArtifact>
<protoSourceRoot>${proto-file-path}</protoSourceRoot>
<includes>
<include>api.proto</include>
</includes>
</configuration>
<executions>
<execution>
Expand Down
Loading

0 comments on commit 36d31bd

Please sign in to comment.