generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96a7a6d
commit 1e23d32
Showing
1 changed file
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,22 @@ | ||
install-jars: && install-generator-jar install-runtime-jar | ||
# Install all JARs to local Maven repository | ||
install-jars: install-root-jar install-generator-jar install-runtime-jar | ||
|
||
# Install root JAR to local Maven repository | ||
install-root-jar: | ||
mvn install | ||
|
||
# Install ftl-generator JAR to local Maven repository | ||
install-generator-jar: | ||
mvn -pl :ftl-generator install | ||
|
||
# Install ftl-runtime JAR to local Maven repository | ||
install-runtime-jar: | ||
mvn -pl :ftl-runtime install | ||
mvn -pl :ftl-runtime install | ||
|
||
# Deploy the Go time module | ||
deploy-time: | ||
cd examples && ftl-go deploy time | ||
|
||
# Deploy the Kotlin echo module | ||
deploy-echo-kotlin: | ||
cd examples/echo-kotlin && mvn compile && ftl deploy target |