From 330e2cec67d7d417a5bc7d1394afb08036f0b618 Mon Sep 17 00:00:00 2001 From: jandroav Date: Tue, 12 Sep 2023 10:48:45 +0200 Subject: [PATCH] chore(pom.xml): add maven-source-plugin and maven-javadoc-plugin to the build configuration The maven-source-plugin is added to generate a JAR file containing the project's source code. This is useful for debugging and for other developers who may want to explore the source code. The maven-javadoc-plugin is added to generate Javadoc documentation for the project. The generated documentation will be included in the project's JAR file. These plugins are added to enhance the build process and provide additional artifacts and documentation for the project. --- pom.xml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/pom.xml b/pom.xml index 41fc8b9..00d35d3 100644 --- a/pom.xml +++ b/pom.xml @@ -201,6 +201,41 @@ + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + false + Liquibase DBmarlin ${project.version} API + true + none + UTF-8 + ${project.build.directory} + + + + jar-javadoc + + jar + + package + + + com.coderplus.maven.plugins copy-rename-maven-plugin