Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix links in README.md #153
  • Loading branch information
gorbunkov committed Jul 22, 2021
1 parent a82b341 commit 554e9a9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ YARG is a mature and well-tested tool, already used in a number of Haulmont's so

### How to add dependency

Yarg versions are distributed using public Bintray Maven repository: http:https://dl.bintray.com/cuba-platform/main
Yarg versions are distributed using a repository located at Haulmont server: https:https://repo.cuba-platform.com/content/groups/work

You can find the complete list of versions here: https://bintray.com/cuba-platform/main/yarg
You can find the complete list of versions here: https://repo.cuba-platform.com/content/groups/work/com/haulmont/yarg/

__Gradle:__
```
repositories {
maven {
url "http:https://dl.bintray.com/cuba-platform/main"
url "https:https://repo.cuba-platform.com/content/groups/work"
}
}
...
dependencies {
compile 'com.haulmont.yarg:yarg:2.2.6'
compile 'com.haulmont.yarg:yarg:2.2.10'
}
```

Expand All @@ -37,16 +37,16 @@ __Maven:__
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-cuba-platform-main</id>
<name>bintray</name>
<url>http:https://dl.bintray.com/cuba-platform/main</url>
<id>repo-cuba-platform-work</id>
<name>repo</name>
<url>https:https://repo.cuba-platform.com/content/groups/work</url>
</repository>
</repositories>
...
<dependency>
<groupId>com.haulmont.yarg</groupId>
<artifactId>yarg</artifactId>
<version>2.2.6</version>
<version>2.2.10</version>
<type>pom</type>
</dependency>
```
Expand Down

0 comments on commit 554e9a9

Please sign in to comment.