Skip to content

Commit

Permalink
chore: add some more Just commands
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Nov 8, 2023
1 parent 96a7a6d commit 1e23d32
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions Justfile
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

0 comments on commit 1e23d32

Please sign in to comment.