This is an automated email from the ASF dual-hosted git repository. mthmulders pushed a commit to branch MNG-7024 in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
commit 642998493b1e39bd7bf22f0a4f69190b1b724959 Author: Maarten Mulders <[email protected]> AuthorDate: Mon Nov 29 11:01:16 2021 +0100 [MNG-7024] Declar module-b as 'jar' packaging This prevents a warning from the maven-assembly-plugin that module-b has no binary outputs. --- .../src/test/resources/mng-7024-subfolderexecution/module-b/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-it-suite/src/test/resources/mng-7024-subfolderexecution/module-b/pom.xml b/core-it-suite/src/test/resources/mng-7024-subfolderexecution/module-b/pom.xml index 2807ae3..e040aa1 100644 --- a/core-it-suite/src/test/resources/mng-7024-subfolderexecution/module-b/pom.xml +++ b/core-it-suite/src/test/resources/mng-7024-subfolderexecution/module-b/pom.xml @@ -31,7 +31,7 @@ under the License. <version>1.0</version> </parent> <artifactId>module-b</artifactId> - <packaging>pom</packaging> + <packaging>jar</packaging> <dependencies> <dependency>
