-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (51 loc) · 1.52 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
buildscript {
repositories {
jcenter()
maven {
url "https://dl.bintray.com/openmastery/maven"
}
}
dependencies {
classpath "com.bancvue:gradle-core:1.4-om.0"
classpath "net.jokubasdargis.buildtimer:gradle-plugin:0.1.1"
}
}
plugins {
id "com.jfrog.bintray" version "1.7"
}
apply plugin: "com.bancvue.core-oss"
apply plugin: "com.bancvue.maven-publish-ext"
apply plugin: "net.jokubasdargis.build-timer"
repositories {
mavenLocal()
jcenter()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.16.10'
compileOnly "org.codehaus.groovy:groovy-all:2.4.3"
compile "org.fluttercode.datafactory:datafactory:0.8"
compile "com.thedeanda:lorem:2.0"
compile "org.slf4j:slf4j-api:1.7.21"
testCompile "cglib:cglib-nodep:3.2.0"
testCompile("org.spockframework:spock-spring:1.0-groovy-2.4") {
exclude group: "org.codehaus.groovy"
}
}
bintray {
user = project.hasProperty("bintray.user") ? project.getProperty("bintray.user") : ""
key = project.hasProperty("bintray.key") ? project.getProperty("bintray.key") : ""
publications = ['commonTest']
pkg {
repo = 'maven'
userOrg = 'openmastery'
name = project.group + ':' + project.ext['artifactId']
desc = project.description
licenses = ['Apache-2.0']
websiteUrl = 'https://github.com/openmastery/common-test'
issueTrackerUrl = 'https://github.com/openmastery/common-test/issues'
vcsUrl = 'https://github.com/openmastery/common-test.git'
}
}
license {
excludes(["**/*.properties", "**/*.xml", "**/*.yml", "db/**", "licenses/**"])
}