forked from rsocket/rsocket-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
159 lines (136 loc) · 5.21 KB
/
build.gradle
File metadata and controls
159 lines (136 loc) · 5.21 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
* Copyright 2015-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
id 'com.github.sherter.google-java-format' version '0.8' apply false
id 'com.jfrog.artifactory' version '4.11.0' apply false
id 'com.jfrog.bintray' version '1.8.4' apply false
id 'me.champeau.gradle.jmh' version '0.5.0' apply false
id 'io.spring.dependency-management' version '1.0.8.RELEASE' apply false
id 'io.morethan.jmhreport' version '0.9.0' apply false
}
subprojects {
apply plugin: 'io.spring.dependency-management'
apply plugin: 'com.github.sherter.google-java-format'
ext['reactor-bom.version'] = 'Dysprosium-RELEASE'
ext['logback.version'] = '1.2.3'
ext['findbugs.version'] = '3.0.2'
ext['netty-bom.version'] = '4.1.37.Final'
ext['netty-boringssl.version'] = '2.0.25.Final'
ext['hdrhistogram.version'] = '2.1.10'
ext['mockito.version'] = '3.2.0'
ext['slf4j.version'] = '1.7.25'
ext['jmh.version'] = '1.21'
ext['junit.version'] = '5.5.2'
ext['hamcrest.version'] = '1.3'
ext['micrometer.version'] = '1.0.6'
ext['assertj.version'] = '3.11.1'
group = "io.rsocket"
googleJavaFormat {
toolVersion = '1.6'
}
ext {
if (project.hasProperty('versionSuffix')) {
project.version += project.getProperty('versionSuffix')
}
}
dependencyManagement {
imports {
mavenBom "io.projectreactor:reactor-bom:${ext['reactor-bom.version']}"
mavenBom "io.netty:netty-bom:${ext['netty-bom.version']}"
mavenBom "org.junit:junit-bom:${ext['junit.version']}"
}
dependencies {
dependency "ch.qos.logback:logback-classic:${ext['logback.version']}"
dependency "com.google.code.findbugs:jsr305:${ext['findbugs.version']}"
dependency "io.netty:netty-tcnative-boringssl-static:${ext['netty-boringssl.version']}"
dependency "io.micrometer:micrometer-core:${ext['micrometer.version']}"
dependency "org.assertj:assertj-core:${ext['assertj.version']}"
dependency "org.hdrhistogram:HdrHistogram:${ext['hdrhistogram.version']}"
dependency "org.slf4j:slf4j-api:${ext['slf4j.version']}"
dependencySet(group: 'org.mockito', version: ext['mockito.version']) {
entry 'mockito-junit-jupiter'
entry 'mockito-core'
}
// TODO: Remove after JUnit5 migration
dependency 'junit:junit:4.12'
dependency "org.hamcrest:hamcrest-library:${ext['hamcrest.version']}"
dependencySet(group: 'org.openjdk.jmh', version: ext['jmh.version']) {
entry 'jmh-core'
entry 'jmh-generator-annprocess'
}
}
generatedPomCustomization {
enabled = false
}
}
repositories {
mavenCentral()
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
maven { url 'http://repo.spring.io/libs-snapshot' }
}
}
plugins.withType(JavaPlugin) {
compileJava {
sourceCompatibility = 1.8
// TODO: Cleanup warnings so no need to exclude
options.compilerArgs << '-Xlint:all,-overloads,-rawtypes,-unchecked'
}
javadoc {
options.with {
links 'https://docs.oracle.com/javase/8/docs/api/'
links 'https://projectreactor.io/docs/core/release/api/'
links 'https://netty.io/4.1/api/'
}
}
test {
useJUnitPlatform()
systemProperty "io.netty.leakDetection.level", "ADVANCED"
}
tasks.named("javadoc").configure {
onlyIf { System.getenv('SKIP_RELEASE') != "true" }
}
}
plugins.withType(JavaLibraryPlugin) {
task sourcesJar(type: Jar) {
classifier 'sources'
from sourceSets.main.allJava
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier 'javadoc'
from javadoc.destinationDir
}
plugins.withType(MavenPublishPlugin) {
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
}
}
}
}
}
}
apply from: "${rootDir}/gradle/publications.gradle"
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
description = 'RSocket: Stream Oriented Messaging Passing with Reactive Stream Semantics.'
repositories {
mavenCentral()
}