blob: 484d594934e4cd46d2e685ef0b5a0f45fa36802d [file] [log] [blame]
Cedric Beust90626a62015-05-01 17:59:22 -07001buildscript {
2 repositories {
3 mavenCentral()
4 jcenter()
5 maven {
6 url 'http://oss.sonatype.org/content/repositories/snapshots'
7 }
8 }
9}
10
11plugins {
jeremysolarz7b8fe132017-01-11 23:04:31 +010012 id "com.jfrog.bintray" version "1.2"
Cedric Beust90626a62015-05-01 17:59:22 -070013}
14
Cedric Beustc3887fe2016-10-04 10:07:58 -070015version = '1.58'
Cedric Beust90626a62015-05-01 17:59:22 -070016
17apply plugin: 'java'
Anton Gustafsson4dab04e2015-07-05 10:14:52 +020018apply plugin: 'eclipse'
19apply plugin: 'idea'
Cedric Beust90626a62015-05-01 17:59:22 -070020apply from: 'gradle/publishing.gradle'
21
22repositories {
Cedric Beust90626a62015-05-01 17:59:22 -070023 jcenter()
Cedric Beust90626a62015-05-01 17:59:22 -070024}
25
26dependencies {
Cedric Beust8981d9d2016-09-29 10:29:35 -070027 testCompile 'org.testng:testng:6.9.13'
Cedric Beust90626a62015-05-01 17:59:22 -070028}
29
30task sourceJar(type: Jar) {
31 group 'Build'
32 description 'An archive of the source code'
33 classifier 'sources'
34 from sourceSets.main.allSource
35}
36
37artifacts {
38 sourceJar
39}
jeremysolarz5c2eab52017-01-11 23:04:51 +010040
41test {
42 // enable TestNG support (default is JUnit)
43 useTestNG()
44}