This repository was archived by the owner on Dec 13, 2023. It is now read-only.
File tree 1 file changed +6
-13
lines changed
1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,6 @@ plugins {
21
21
// Establish version and status
22
22
ext. githubProjectName = rootProject. name // Change if github project name is not the same as the root project's name
23
23
24
- def javaProjects = subprojects. findAll {
25
- it. name != " ui"
26
- }
27
-
28
- configure(javaProjects) {
29
- compileJava. inputs. files(processResources)
30
- }
31
-
32
24
subprojects {
33
25
tasks. withType(Javadoc ). all { enabled = false }
34
26
}
@@ -68,20 +60,21 @@ allprojects {
68
60
}
69
61
70
62
dependencies {
63
+ annotationProcessor ' org.springframework.boot:spring-boot-configuration-processor'
64
+
71
65
testImplementation(' org.springframework.boot:spring-boot-starter-test' )
72
66
testImplementation(' org.springframework.boot:spring-boot-starter-log4j2' )
73
67
}
74
68
69
+ // processes additional configuration metadata json file as described here
70
+ // https://docs.spring.io/spring-boot/docs/2.3.1.RELEASE/reference/html/appendix-configuration-metadata.html#configuration-metadata-additional-metadata
71
+ compileJava. inputs. files(processResources)
72
+
75
73
test {
76
74
useJUnitPlatform()
77
75
}
78
76
}
79
77
80
- dependencies {
81
- // annotation processor
82
- annotationProcessor ' org.springframework.boot:spring-boot-configuration-processor'
83
- }
84
-
85
78
coveralls {
86
79
sourceDirs = subprojects. sourceSets. main. allSource. srcDirs. flatten()
87
80
jacocoReportPath = " ${ project.buildDir} /reports/jacoco/report.xml"
You can’t perform that action at this time.
0 commit comments