Skip to content

Commit

Permalink
updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Adamczyk committed Aug 19, 2020
1 parent b0e6261 commit 9f119bb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,3 @@ jobs:
with:
gradle-executable: "./test_runner/gradlew"
arguments: "-p test_runner publish -PGITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}"

25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,8 @@ v3.0-SNAPSHOT

### Maven

You can consume Flank via maven. See the [maven repo](https://bintray.com/flank/maven/flank) for all supported versions.
You can consume Flank via maven.
See the [maven repo](https://bintray.com/flank/maven/flank) for all supported versions.

```
repositories {
Expand All @@ -668,6 +669,28 @@ dependencies {
}
```

or [GitHub packages](https://github.com/Flank/flank/packages/)

<details open>
<summary>Groovy</summary>

```groovy
dependencies {
implementation "com.github.flank:flank:<latest version>"
}
```

</details>
<details>
<summary>Kotlin</summary>

```kotlin
dependencies {
implementation("com.github.flank:flank:<latest version>")
}
```
</details>

### Gradle Enterprise Export API

It is possible to fetch metrics from Gradle builds. For detailed info please visit [Gradle Export API](https://docs.gradle.com/enterprise/export-api/)
Expand Down

0 comments on commit 9f119bb

Please sign in to comment.