From 63feaae295d2bb39004d17d0ce367d11b44320e2 Mon Sep 17 00:00:00 2001 From: Keith Flanagan Date: Tue, 30 May 2017 16:01:51 +0100 Subject: [PATCH] Plugins for generating jars with dependencies, javadoc, sourcecode, etc --- PolenClient/pom.xml | 47 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 43 insertions(+), 4 deletions(-) diff --git a/PolenClient/pom.xml b/PolenClient/pom.xml index 34d7889..447767e 100644 --- a/PolenClient/pom.xml +++ b/PolenClient/pom.xml @@ -31,13 +31,52 @@ - maven-assembly-plugin + org.apache.maven.plugins + maven-shade-plugin + 2.1 + + + package + + shade + + + - - jar-with-dependencies - + true + withDependencies + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar + + + + + +