Skip to content

Commit

Permalink
YARG-25 Add Bintray dependency snippet to README
Browse files Browse the repository at this point in the history
  • Loading branch information
jreznot committed Aug 9, 2017
1 parent 0ce0256 commit d637a2c
Showing 1 changed file with 40 additions and 1 deletion.
41 changes: 40 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
YARG
====

[![license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http:https://www.apache.org/licenses/LICENSE-2.0) [![Build Status](https://travis-ci.org/cuba-platform/yarg.svg?branch=master)](https://travis-ci.org/cuba-platform/yarg)
[![license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http:https://www.apache.org/licenses/LICENSE-2.0) [![Build Status](https://travis-ci.org/cuba-platform/yarg.svg?branch=master)](https://travis-ci.org/cuba-platform/yarg) [ ![Download](https://api.bintray.com/packages/cuba-platform/main/yarg/images/download.svg) ](https://bintray.com/cuba-platform/main/yarg/_latestVersion)

YARG is an open source reporting library for Java, developed by [Haulmont](http:https://www.haulmont.com/).

Expand All @@ -11,6 +11,45 @@ YARG is a mature and well-tested tool, already used in a number of Haulmont's so

[Documentation](https://github.com/Haulmont/yarg/wiki)

### How to add dependency

Yarg versions are distributed using public Bintray Maven repository: http:https://dl.bintray.com/cuba-platform/main

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

__Gradle:__
```
repositories {
maven {
url "http:https://dl.bintray.com/cuba-platform/main"
}
}
...
dependencies {
compile 'com.haulmont.yarg:yarg:2.0.1'
}
```

__Maven:__
```
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-cuba-platform-main</id>
<name>bintray</name>
<url>http:https://dl.bintray.com/cuba-platform/main</url>
</repository>
</repositories>
...
<dependency>
<groupId>com.haulmont.yarg</groupId>
<artifactId>yarg</artifactId>
<version>2.0.1</version>
<type>pom</type>
</dependency>
```

### Samples

Expand Down

0 comments on commit d637a2c

Please sign in to comment.