From 569ac18874b6cee33cf8ad6dd9f89bc34b75f4f2 Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Fri, 9 Apr 2021 18:18:11 +0700 Subject: [PATCH] Use additional Maven Clean execution in 'libx' Before, the Maven Clean configuration overrode the one from the parent POM. Now it leaves it intact, adding a separate module-specific execution to delete the downloads and libraries. Signed-off-by: Alexander Kriegisch --- libx/pom.xml | 48 +++++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/libx/pom.xml b/libx/pom.xml index 4c4817e79..f3fb97e5e 100644 --- a/libx/pom.xml +++ b/libx/pom.xml @@ -553,26 +553,36 @@ + org.apache.maven.plugins maven-clean-plugin - - - - . - - ant/** - asm/** - commons/** - jarjar/** - jdiff/** - jdtcore-aj/** - junit/** - regexp/** - saxon/** - - false - - - + + + clean-up-libs + clean + + clean + + + + + . + + ant/** + asm/** + commons/** + jarjar/** + jdiff/** + jdtcore-aj/** + junit/** + regexp/** + saxon/** + + false + + + + + -- 2.39.5