diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 206422cf..6882e2e9 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -26,7 +26,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Run javadoc tool - run: mkdir _site && clojure -T:build javadoc && cp -R target/javadoc _site + run: mkdir _site && make javadoc && cp -R target/javadoc _site - name: Setup Pages uses: actions/configure-pages@v3 - name: Build with Jekyll diff --git a/docs/Standalone.md b/docs/Standalone.md index a702800b..05e4ee07 100644 --- a/docs/Standalone.md +++ b/docs/Standalone.md @@ -5,7 +5,7 @@ It may also be easier if your application's architecture is not written in java. ## Building -Build the project with the `clj -T:build uber` command to get a standalone application. The built output will be found in the `target` directory. +Build the project with the `make uberjar` command to get a standalone application. The built output will be found in the `target` directory. Run the file with the `java -jar *-standalone.jar` command.