Protobuf Java and Kotlin code generation. (#64)

Co-authored-by: Stian Brandt <stian.brandt@it-smurfan.no>
This commit is contained in:
Stian
2023-01-10 16:46:04 +01:00
committed by GitHub
parent b24ca28adb
commit 74b5d1a7ca
22 changed files with 1078 additions and 2 deletions

23
api/java/Makefile vendored Normal file
View File

@ -0,0 +1,23 @@
.PHONY: build
all: clean build jar
clean:
@echo "Cleaning..."
@./gradlew clean
@echo "Clean."
build:
@echo "Building..."
@./gradlew build
@echo "Build complete."
jar: build
@echo "Generating jar..."
@./gradlew jar
@echo "Jar generated in build/libs."
install: build
@echo "Installing artifact in local repository..."
@./gradlew publishToMavenLocal
@echo "Artifact installed in local repository ~/.m2"