forked from micrometer-metrics/micrometer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (44 loc) · 1.35 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
buildscript {
repositories {
jcenter()
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'org.ow2.asm:asm:5.0.3'
classpath 'io.spring.gradle:spring-release-plugin:0.9.0'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:3.2.0'
classpath 'me.champeau.gradle:jmh-gradle-plugin:0.4.4'
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M4'
classpath 'com.netflix.nebula:nebula-project-plugin:3.4.0'
}
}
allprojects {
apply plugin: 'io.spring.release'
afterEvaluate { project ->
println "I'm building $project.name with version $project.version"
}
group = 'io.micrometer'
}
subprojects {
apply plugin: 'java'
description = 'Application monitoring instrumentation facade'
contacts {
'jschneider@pivotal.io' {
moniker 'Jon Schneider'
github 'jkschneider'
}
}
repositories {
mavenCentral()
// TODO just temporarily, for reactor snapshots
maven { url 'https://repo.spring.io/libs-snapshot' }
}
if (project.extensions.findByName('bintray')) {
bintray.pkg {
labels = ['micrometer', 'atlas', 'metrics', 'prometheus', 'spectator', 'influx']
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.0.1'
}