Skip to content

Commit

Permalink
Fix jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
spikymonkey committed Jul 9, 2020
1 parent a9a5a3a commit 0717a76
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import java.util.concurrent.ConcurrentHashMap
plugins {
id "io.spring.nohttp"
id 'distribution'
id 'jacoco'
}

ext {
Expand Down Expand Up @@ -55,7 +56,7 @@ allprojects {
}
}

configure(codeProjects) {
configure(javaProjects) {
apply plugin: 'java-library'

java {
Expand Down Expand Up @@ -390,12 +391,12 @@ def getDocumentationProjects() {
[project(":spring-cloud-app-broker-docs")] as Set
}

def getCodeProjects() {
def getJavaProjects() {
subprojects
}

def getStaticAnalysisProjects() {
codeProjects - documentationProjects
javaProjects - documentationProjects
}

def getTestProjects() {
Expand All @@ -410,7 +411,7 @@ def getStarterProjects() {
}

def getLibraryProjects() {
codeProjects - documentationProjects - starterProjects - testProjects
javaProjects - documentationProjects - starterProjects - testProjects
}

def getPublishedProjects() {
Expand Down

0 comments on commit 0717a76

Please sign in to comment.