Skip to content

Commit 9c8efc2

Browse files
committed
build: fix javadoc
1 parent c8b69f6 commit 9c8efc2

7 files changed

Lines changed: 27 additions & 15 deletions

File tree

handlebars-caffeine/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** handlebars caffeine. */
12
module com.github.jknack.handlebars.caffeine {
23
exports com.github.jknack.handlebars.caffeine;
34

handlebars-guava-cache/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** handlebars guava-cache. */
12
module com.github.jknack.handlebars.guava {
23
exports com.github.jknack.handlebars.guava;
34

handlebars-helpers/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** handlebars helpers. */
12
module com.github.jknack.handlebars.helper.ext {
23
exports com.github.jknack.handlebars.helper.ext;
34

handlebars-jackson/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** handlebars jackson. */
12
module com.github.jknack.handlebars.jackson {
23
exports com.github.jknack.handlebars.jackson;
34

handlebars-springmvc/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** handlebars springmvc. */
12
module com.github.jknack.handlebars.springmvc {
23
exports com.github.jknack.handlebars.springmvc;
34

handlebars/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** handlebars module. */
12
module com.github.jknack.handlebars {
23
exports com.github.jknack.handlebars;
34
exports com.github.jknack.handlebars.io;

pom.xml

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,27 @@
164164
<version>3.3.0</version>
165165
</plugin>
166166

167+
<!-- Javadoc -->
168+
<plugin>
169+
<groupId>org.apache.maven.plugins</groupId>
170+
<artifactId>maven-javadoc-plugin</artifactId>
171+
<version>3.6.3</version>
172+
<configuration>
173+
<excludePackageNames>com.github.jknack.handlebars.internal.*</excludePackageNames>
174+
<show>public</show>
175+
<detectJavaApiLink>false</detectJavaApiLink>
176+
<release>${maven.compiler.release}</release>
177+
</configuration>
178+
<executions>
179+
<execution>
180+
<id>attach-javadocs</id>
181+
<goals>
182+
<goal>jar</goal>
183+
</goals>
184+
</execution>
185+
</executions>
186+
</plugin>
187+
167188
<!-- sure-fire -->
168189
<plugin>
169190
<groupId>org.apache.maven.plugins</groupId>
@@ -368,21 +389,6 @@
368389
</executions>
369390
</plugin>
370391

371-
<!-- Javadoc -->
372-
<plugin>
373-
<groupId>org.apache.maven.plugins</groupId>
374-
<artifactId>maven-javadoc-plugin</artifactId>
375-
<version>3.6.3</version>
376-
<executions>
377-
<execution>
378-
<id>attach-javadocs</id>
379-
<goals>
380-
<goal>jar</goal>
381-
</goals>
382-
</execution>
383-
</executions>
384-
</plugin>
385-
386392
<!-- GPG -->
387393
<plugin>
388394
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)