File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ plugins {
2+ `java- platform`
3+ id(" cloud-processors.publishing-conventions" )
4+ }
5+
6+ indra {
7+ configurePublications {
8+ from(components[" javaPlatform" ])
9+ }
10+ }
11+
12+ dependencies {
13+ constraints {
14+ for (subproject in rootProject.subprojects) {
15+ if (subproject == project) { // the bom itself
16+ continue
17+ }
18+
19+ if (subproject.name.startsWith(" example-" )) {
20+ continue
21+ }
22+
23+ api(project(subproject.path))
24+ }
25+ }
26+ }
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ dependencyResolutionManagement {
2626
2727rootProject.name = " cloud-processors-parent"
2828
29- include(" :cloud-processors-common" )
30- include(" :cloud-processors-confirmation" )
31- include(" :cloud-processors-cooldown" )
32- include(" :cloud-processors-requirements" )
29+ include(" cloud-processors-bom" )
30+
31+ include(" cloud-processors-common" )
32+ include(" cloud-processors-confirmation" )
33+ include(" cloud-processors-cooldown" )
34+ include(" cloud-processors-requirements" )
You can’t perform that action at this time.
0 commit comments