mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-13 04:58:09 +00:00
Protobuf Java and Kotlin code generation. (#64)
Co-authored-by: Stian Brandt <stian.brandt@it-smurfan.no>
This commit is contained in:
23
api/java/Makefile
vendored
Normal file
23
api/java/Makefile
vendored
Normal 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"
|
Reference in New Issue
Block a user