This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
commit 9f7f52d7ed9fe71275481d168fb567d20f4edd1b Author: Luca Burgazzoli <[email protected]> AuthorDate: Fri Oct 22 19:03:07 2021 +0200 deps: force asm version for maven-pmd-plugin --- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index 3c5800b..4739e11 100644 --- a/pom.xml +++ b/pom.xml @@ -82,6 +82,7 @@ <maven-resources-plugin-version>3.2.0</maven-resources-plugin-version> <maven-site-plugin-version>3.9.1</maven-site-plugin-version> <maven-pmd-plugin-version>3.15.0</maven-pmd-plugin-version> + <maven-pmd-plugin-asm-version>9.2</maven-pmd-plugin-asm-version> <maven-plugin-plugin-version>3.6.1</maven-plugin-plugin-version> <maven-version>3.6.3</maven-version> <maven-plugin-tools-version>3.6.1</maven-plugin-tools-version> @@ -1046,6 +1047,13 @@ <excludeRoot>${project.build.directory}/generated-sources</excludeRoot> </excludeRoots> </configuration> + <dependencies> + <dependency> + <groupId>org.ow2.asm</groupId> + <artifactId>asm</artifactId> + <version>${maven-pmd-plugin-asm-version}</version> + </dependency> + </dependencies> </plugin> </plugins> </build>
