From 9941de6fc9f628d0890c6d9b4b1228abd824634a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20K=C3=B6rber?= Date: Thu, 31 Jan 2019 00:43:11 +0100 Subject: [PATCH] Add automatic-module-name --- acme4j-client/pom.xml | 13 +++++++++++++ acme4j-client/src/site/markdown/index.md.vm | 9 +++++++++ acme4j-example/pom.xml | 11 +++++++++++ acme4j-it/pom.xml | 11 +++++++++++ acme4j-utils/pom.xml | 16 ++++++++++++++++ acme4j-utils/src/site/markdown/index.md.vm | 9 +++++++++ 6 files changed, 69 insertions(+) diff --git a/acme4j-client/pom.xml b/acme4j-client/pom.xml index eeb56d01..12b7c66a 100644 --- a/acme4j-client/pom.xml +++ b/acme4j-client/pom.xml @@ -38,6 +38,19 @@ true + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.shredzone.acme4j + + + + + diff --git a/acme4j-client/src/site/markdown/index.md.vm b/acme4j-client/src/site/markdown/index.md.vm index d8bc1e19..4cb36c75 100644 --- a/acme4j-client/src/site/markdown/index.md.vm +++ b/acme4j-client/src/site/markdown/index.md.vm @@ -15,3 +15,12 @@ _acme4j_ is availabe at Maven Central. Just add this snippet to your `pom.xml`: ${project.version} ``` + +Java Module +----------- + +Add this line to your module descriptor: + +```java +requires org.shredzone.acme4j; +``` diff --git a/acme4j-example/pom.xml b/acme4j-example/pom.xml index ace7be87..cda64e3d 100644 --- a/acme4j-example/pom.xml +++ b/acme4j-example/pom.xml @@ -36,6 +36,17 @@ + + org.apache.maven.plugins + maven-jar-plugin + + + + org.shredzone.acme4j.example + + + + org.codehaus.mojo exec-maven-plugin diff --git a/acme4j-it/pom.xml b/acme4j-it/pom.xml index ec4dd5dd..68496be5 100644 --- a/acme4j-it/pom.xml +++ b/acme4j-it/pom.xml @@ -103,6 +103,17 @@ + + org.apache.maven.plugins + maven-jar-plugin + + + + org.shredzone.acme4j.it + + + + io.fabric8 docker-maven-plugin diff --git a/acme4j-utils/pom.xml b/acme4j-utils/pom.xml index 00d711dd..2fa9ca24 100644 --- a/acme4j-utils/pom.xml +++ b/acme4j-utils/pom.xml @@ -28,6 +28,22 @@ acme4j Utils acme4j utilities + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.shredzone.acme4j.utils + + + + + + + org.shredzone.acme4j diff --git a/acme4j-utils/src/site/markdown/index.md.vm b/acme4j-utils/src/site/markdown/index.md.vm index 3896ca02..91a8c478 100644 --- a/acme4j-utils/src/site/markdown/index.md.vm +++ b/acme4j-utils/src/site/markdown/index.md.vm @@ -17,3 +17,12 @@ Just add this snippet to your `pom.xml`: ${project.version} ``` + +Java Module +----------- + +Add this line to your module descriptor: + +```java +requires org.shredzone.acme4j.utils; +```