From 4e06ce821f67063abaeb6278fb33584fbf4a2b4d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Ho=C3=9F?= Date: Sun, 18 Apr 2021 00:40:15 +0200 Subject: [PATCH] add gradle infos --- .github/workflows/release.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7940d4..2ae0eee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,7 @@ jobs: body: | Automated release, see [commits](https://github.com/metio/reguloj/commits/${{ steps.release.outputs.version }}) for changes. - Include this project as a dependency: + Include this project as a Maven dependency: ```xml wtf.metio.reguloj @@ -60,6 +60,15 @@ jobs: ${{steps.release.outputs.version}} ``` + + Or like this in case you are using Gradle (Kotlin): + ```kotlin + dependencies { + implementation("wtf.metio.reguloj:reguloj:${{steps.release.outputs.version}}") { + because("we want to use a lightweight rule engine") + } + } + ``` - name: Send Mail if: steps.commits.outputs.count > 0 uses: dawidd6/action-send-mail@v2 -- 2.11.4.GIT