From ededbb57461e8d5ce7894ade021c46cad85a2a42 Mon Sep 17 00:00:00 2001 From: Radek Felcman Date: Mon, 15 Jul 2024 10:07:17 +0200 Subject: [PATCH] Maven build - optional all sources bundle (#2210) Signed-off-by: Radek Felcman --- pom.xml | 27 ++++++++++++++++++++++++++ src/main/assembly/all-sources.xml | 32 +++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 src/main/assembly/all-sources.xml diff --git a/pom.xml b/pom.xml index e17bc94a1d0..df90def8f25 100644 --- a/pom.xml +++ b/pom.xml @@ -1940,5 +1940,32 @@ docs + + all-sources + + + + org.apache.maven.plugins + maven-assembly-plugin + + + all-sources + generate-resources + + single + + false + + + src/main/assembly/all-sources.xml + + + + + + + + + diff --git a/src/main/assembly/all-sources.xml b/src/main/assembly/all-sources.xml new file mode 100644 index 00000000000..c1e19989cfa --- /dev/null +++ b/src/main/assembly/all-sources.xml @@ -0,0 +1,32 @@ + + + + + all-sources + + zip + + false + + + ${project.basedir} + + **/** + + + + \ No newline at end of file