1
0
Fork 0
mirror of https://github.com/crawler-commons/crawler-commons synced 2024-04-18 23:23:47 +02:00

Update README.md

use latest version in examples of using Maven or Gradle
This commit is contained in:
Julien Nioche 2023-05-24 08:00:59 +01:00 committed by GitHub
parent 4663ca583b
commit e881cdba46
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,14 +37,14 @@ Using Maven, add the following dependency to your pom.xml:
<dependency>
<groupId>com.github.crawler-commons</groupId>
<artifactId>crawler-commons</artifactId>
<version>1.2</version>
<version>1.3</version>
</dependency>
~~~
Using Gradle, add the folling to your build file:
```groovy
dependencies {
implementation group: 'com.github.crawler-commons', name: 'crawler-commons', version: '1.2'
implementation group: 'com.github.crawler-commons', name: 'crawler-commons', version: '1.3'
}
```