Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 6f163b6

Browse files
committed
Remove Jacoco
To make the build work on Java 13. It wasn't used anyway.
1 parent bb43467 commit 6f163b6

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

build.gradle

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011-2018 Pivotal Software Inc, All Rights Reserved.
2+
* Copyright (c) 2011-2019 Pivotal Software Inc, All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -61,13 +61,6 @@ configurations.all {
6161
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
6262
}
6363

64-
allprojects {
65-
apply plugin: 'jacoco'
66-
jacoco {
67-
toolVersion = '0.8.2'
68-
}
69-
}
70-
7164
configure(allprojects) { project ->
7265
group = 'io.projectreactor.rabbitmq'
7366

@@ -106,16 +99,6 @@ configure(allprojects) { project ->
10699
"-Xlint:-rawtypes" // TODO enable and fix warnings
107100
]
108101

109-
jacocoTestReport {
110-
dependsOn test
111-
sourceSets sourceSets.main
112-
reports {
113-
html.enabled = true
114-
xml.enabled = true
115-
}
116-
}
117-
jacocoTestReport.dependsOn test
118-
119102
dependencies {
120103
compile "io.projectreactor:reactor-core:$reactorCoreVersion"
121104
compile "com.rabbitmq:amqp-client:$rabbitMqJavaClientVersion"
@@ -190,9 +173,6 @@ project(':reactor-rabbitmq-samples') {
190173

191174
test {
192175
useJUnitPlatform()
193-
jacoco {
194-
enabled = false
195-
}
196176
}
197177

198178
artifacts {

0 commit comments

Comments
 (0)