Skip to content

Commit 3ef3215

Browse files
authored
Merge branch 'master' into cleanup
2 parents 917ee59 + 19e050f commit 3ef3215

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v2
19+
- name: Save and restore Gradle build cache
20+
uses: actions/cache@v1
21+
with:
22+
path: ~/.gradle/caches
23+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
1924
- name: Set up JDK 1.8
2025
uses: actions/setup-java@v1
2126
with:

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
[![Bintray](https://img.shields.io/bintray/v/sargunv/maven/pokekotlin)](https://bintray.com/sargunv/maven/pokekotlin)
12
[![JitPack](https://img.shields.io/jitpack/v/github/PokeAPI/pokekotlin)](https://jitpack.io/#PokeAPI/pokekotlin/)
23
[![License](https://img.shields.io/github/license/PokeAPI/pokekotlin)](https://github.com/PokeAPI/pokekotlin/blob/master/LICENSE)
34
[![Build](https://img.shields.io/github/workflow/status/pokeapi/pokekotlin/Java%20CI%20with%20Gradle)](https://github.com/PokeAPI/pokekotlin/actions?query=workflow%3A%22Java+CI+with+Gradle%22)
@@ -37,14 +38,14 @@ fun main(args: Array<String>) {
3738

3839
## Download
3940

40-
PokeKotlin is available from Jitpack. See the Releases tab for the latest version number.
41+
PokeKotlin is available from Bintray or Jitpack. The latest version number is: ![Bintray](https://img.shields.io/bintray/v/sargunv/maven/pokekotlin?label)
4142

4243
```groovy
4344
repositories {
4445
mavenCentral()
45-
maven { url 'https://jitpack.io' }
46+
maven { url 'https://dl.bintray.com/sargunv/maven' }
4647
}
4748
dependencies {
48-
implementation 'com.github.PokeAPI:pokekotlin:<VERSION>'
49+
implementation 'me.sargunvohra.lib:pokekotlin:<VERSION>'
4950
}
5051
```

0 commit comments

Comments
 (0)