-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
77 lines (62 loc) · 1.83 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
buildscript {
repositories {
jcenter()
}
dependencies {
// due https://github.com/johnrengelman/shadow/issues/188
classpath 'org.apache.ant:ant:1.9.9'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
}
allprojects {
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'com.jfrog.bintray'
group = 'io.github.fabito.dropwizard'
version = '0.1.0'
}
subprojects {
sourceCompatibility = 1.8
buildscript {
repositories {
jcenter()
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.3.10'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
}
project.ext {
dropwizardVersion = '1.1.0-rc1'
cloudTrace = '0.3.1'
cloudTraceInstrumentation = '0.1.0'
}
bintray {
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
key = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY')
configurations = ['archives']
pkg {
userOrg = 'fabito'
repo = 'maven'
name = 'dropwizard-stackdriver'
licenses = ['MIT']
vcsUrl = 'https://github.com/fabito/dropwizard-stackdriver.git'
dryRun = false
version {
name = '0.1.0'
desc = 'Dropwizard utilities for Stackdriver'
released = new Date()
vcsTag = '0.1.0'
}
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '3.4.1'
}