From bf0e65dbd41a22b71b5d88db85da897531b64d4f Mon Sep 17 00:00:00 2001 From: Muhammad Faisal Date: Thu, 22 Jun 2023 15:56:04 +0500 Subject: [PATCH] Moved the `maven-resources-plugin` plugin from child poms to the parent pom. --- JacocoExecution/pom.xml | 27 --------------------------- PuttingAllTogether/pom.xml | 25 ------------------------- TestsExecution/pom.xml | 27 --------------------------- pom.xml | 27 +++++++++++++++++++++++++++ 4 files changed, 27 insertions(+), 79 deletions(-) diff --git a/JacocoExecution/pom.xml b/JacocoExecution/pom.xml index 73192117..0afe65ff 100644 --- a/JacocoExecution/pom.xml +++ b/JacocoExecution/pom.xml @@ -80,33 +80,6 @@ - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - - copy-readme - pre-site - - copy-resources - - - true - ${src.markdown.directory} - - - ${basedir} - - README.md - - - - - - - diff --git a/PuttingAllTogether/pom.xml b/PuttingAllTogether/pom.xml index 1047abf2..72770e6a 100644 --- a/PuttingAllTogether/pom.xml +++ b/PuttingAllTogether/pom.xml @@ -109,31 +109,6 @@ - - org.apache.maven.plugins - maven-resources-plugin - - - - copy-readme - pre-site - - copy-resources - - - ${target.site.directory}/markdown - - - ${basedir} - - README.md - - - - - - - org.jacoco diff --git a/TestsExecution/pom.xml b/TestsExecution/pom.xml index d4a88e42..1e7c0390 100644 --- a/TestsExecution/pom.xml +++ b/TestsExecution/pom.xml @@ -80,33 +80,6 @@ - - org.apache.maven.plugins - maven-resources-plugin - ${maven-resources-plugin.version} - - - - copy-readme - pre-site - - copy-resources - - - true - ${src.markdown.directory} - - - ${basedir} - - README.md - - - - - - - diff --git a/pom.xml b/pom.xml index 595700cb..31b236ae 100644 --- a/pom.xml +++ b/pom.xml @@ -142,6 +142,33 @@ + + org.apache.maven.plugins + maven-resources-plugin + ${maven-resources-plugin.version} + + + + copy-readme + pre-site + + copy-resources + + + true + ${src.markdown.directory} + + + ${basedir} + + README.md + + + + + + +