File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ val netcdfAllSbom =
133133 includeConfigs = listOf (" netcdfAll" )
134134 xmlOutput = artifactOutputLocation.get().file(" netcdfAll-${project.version} -sbom.xml" )
135135 jsonOutput = artifactOutputLocation.get().file(" netcdfAll-${project.version} -sbom.json" )
136+ dependsOn(buildNetcdfAll)
136137 }
137138
138139val ncIdvSbom =
@@ -142,6 +143,7 @@ val ncIdvSbom =
142143 includeConfigs = listOf (" ncIdv" )
143144 xmlOutput = artifactOutputLocation.get().file(" ncIdv-${project.version} -sbom.xml" )
144145 jsonOutput = artifactOutputLocation.get().file(" ncIdv-${project.version} -sbom.json" )
146+ dependsOn(buildNcIdv)
145147 }
146148
147149val toolsUISbom =
@@ -151,6 +153,7 @@ val toolsUISbom =
151153 includeConfigs = listOf (" toolsUI" )
152154 xmlOutput = artifactOutputLocation.get().file(" toolsUI-${project.version} -sbom.xml" )
153155 jsonOutput = artifactOutputLocation.get().file(" toolsUI-${project.version} -sbom.json" )
156+ dependsOn(buildToolsUi)
154157 }
155158
156159val buildSboms = tasks.register(" buildSboms" ) { dependsOn(netcdfAllSbom, ncIdvSbom, toolsUISbom) }
You can’t perform that action at this time.
0 commit comments