This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit c207293313b4792e22c1c1b20bdb8ef6928aff12 Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Feb 22 10:20:04 2023 +0100 Upgrade CycloneDX maven plugin to version 2.7.5 - Use Output directory configuration Signed-off-by: Andrea Cosentino <[email protected]> --- pom.xml | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/pom.xml b/pom.xml index f751d300cc4..8aeadf32e9d 100644 --- a/pom.xml +++ b/pom.xml @@ -141,7 +141,6 @@ <gmavenplus-plugin-version>1.11.1</gmavenplus-plugin-version> <groovy-version>3.0.15</groovy-version> <cyclonedx-maven-plugin-version>2.7.5</cyclonedx-maven-plugin-version> - <antrun-maven-plugin-version>3.1.0</antrun-maven-plugin-version> <camel.javadoc.offline>false</camel.javadoc.offline> </properties> @@ -856,6 +855,7 @@ <inherited>false</inherited> <configuration> <outputName>camel-sbom</outputName> + <outputDirectory>${project.basedir}/camel-sbom/</outputDirectory> </configuration> <executions> <execution> @@ -866,26 +866,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-antrun-plugin</artifactId> - <version>${antrun-maven-plugin-version}</version> - <inherited>false</inherited> - <executions> - <execution> - <phase>package</phase> - <configuration> - <target> - <copy file="${project.build.directory}/camel-sbom.json" todir="${project.basedir}/camel-sbom/" /> - <copy file="${project.build.directory}/camel-sbom.xml" todir="${project.basedir}/camel-sbom/" /> - </target> - </configuration> - <goals> - <goal>run</goal> - </goals> - </execution> - </executions> - </plugin> </plugins> </build> </profile>
