Skip to content

Commit

Permalink
Change "compile" to "implementation" (Gradle dependency)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiauhce committed Jan 30, 2021
1 parent e09c13c commit 37171fa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,14 @@ Just import add the library to your project with one of these options:
</dependency>
```

2. Using Gradle:

```gradle
compile "org.telegram:telegrambots:5.0.1"
implementation 'org.telegram:telegrambots:5.0.1'
```

2. Using Jitpack from [here](https://jitpack.io/#rubenlagus/TelegramBots/5.0.1)
3. Download the jar(including all dependencies) from [here](https://mvnrepository.com/artifact/org.telegram/telegrambots/5.0.1)
3. Using Jitpack from [here](https://jitpack.io/#rubenlagus/TelegramBots/5.0.1)
4. Download the jar(including all dependencies) from [here](https://mvnrepository.com/artifact/org.telegram/telegrambots/5.0.1)

In order to use Long Polling mode, just create your own bot extending `org.telegram.telegrambots.bots.TelegramLongPollingBot`.

Expand Down
2 changes: 1 addition & 1 deletion telegrambots-abilities/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Usage
**Gradle**

```gradle
compile "org.telegram:telegrambots-abilities:5.0.1"
implementation 'org.telegram:telegrambots-abilities:5.0.1'
```

**JitPack** - [JitPack](https://jitpack.io/#rubenlagus/TelegramBots/v5.0.1)
Expand Down
2 changes: 1 addition & 1 deletion telegrambots-extensions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ Just import add the library to your project with one of these options:
2. Using Gradle:

```gradle
compile "org.telegram:telegrambotsextensions:5.0.1"
implementation 'org.telegram:telegrambotsextensions:5.0.1'
```
2 changes: 1 addition & 1 deletion telegrambots-spring-boot-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Usage
**Gradle**

```gradle
compile "org.telegram:telegrambots-spring-boot-starter:5.0.1"
implementation 'org.telegram:telegrambots-spring-boot-starter:5.0.1'
```

Motivation
Expand Down

0 comments on commit 37171fa

Please sign in to comment.