ff0a47b646
* feat: build java codes by makefile * feat: generate java code * fix: rename region_id to region_number * feat: generate code
10 lines
254 B
Bash
Executable File
10 lines
254 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
PROTO_ROOT=./proto
|
|
JAVA_OUTPUT=./java/src/main/java/
|
|
|
|
protoc -I=${PROTO_ROOT} --java_out=${JAVA_OUTPUT} \
|
|
${PROTO_ROOT}/greptime/v1/column.proto \
|
|
${PROTO_ROOT}/greptime/v1/ddl.proto \
|
|
${PROTO_ROOT}/greptime/v1/database.proto
|