Tidy up generated BOMs (#1828)

Make the usable with xinclude (properties).
This commit is contained in:
Tamas Cservenak 2024-10-21 15:35:48 +02:00 committed by GitHub
parent 3753743ee6
commit deaa82b7bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -223,7 +223,7 @@ under the License.
<plugin> <plugin>
<groupId>eu.maveniverse.maven.plugins</groupId> <groupId>eu.maveniverse.maven.plugins</groupId>
<artifactId>bom-builder3</artifactId> <artifactId>bom-builder3</artifactId>
<version>1.0.1</version> <version>1.0.2</version>
<executions> <executions>
<execution> <execution>
<id>skinny-bom</id> <id>skinny-bom</id>
@ -235,6 +235,7 @@ under the License.
<bomName>Maven Dependencies Skinny BOM</bomName> <bomName>Maven Dependencies Skinny BOM</bomName>
<bomDescription>Bill Of Materials for Apache Maven - Maven JARS only</bomDescription> <bomDescription>Bill Of Materials for Apache Maven - Maven JARS only</bomDescription>
<outputFilename>maven-skinny-bom.xml</outputFilename> <outputFilename>maven-skinny-bom.xml</outputFilename>
<usePropertiesForVersion>true</usePropertiesForVersion>
<attach>true</attach> <attach>true</attach>
</configuration> </configuration>
</execution> </execution>
@ -248,7 +249,8 @@ under the License.
<bomName>Maven Dependencies Fat BOM</bomName> <bomName>Maven Dependencies Fat BOM</bomName>
<bomDescription>Bill Of Materials for Apache Maven - All dependencies</bomDescription> <bomDescription>Bill Of Materials for Apache Maven - All dependencies</bomDescription>
<outputFilename>maven-fat-bom.xml</outputFilename> <outputFilename>maven-fat-bom.xml</outputFilename>
<useDependencies>true</useDependencies> <useDependencies>PROJECT_AND_TRANSITIVE</useDependencies>
<usePropertiesForVersion>true</usePropertiesForVersion>
<attach>true</attach> <attach>true</attach>
</configuration> </configuration>
</execution> </execution>