You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2018/09/17 16:26:23 UTC

[juneau] branch master updated: Fix release bug.

This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new f4f4c2e  Fix release bug.
f4f4c2e is described below

commit f4f4c2e2cdee7056a548b5be7d1eb3449d92de2f
Author: JamesBognar <ja...@apache.org>
AuthorDate: Mon Sep 17 12:25:56 2018 -0400

    Fix release bug.
---
 juneau-doc/src/main/javadoc/overview.html                | 4 ++++
 juneau-microservice/juneau-microservice-template/pom.xml | 8 ++++++++
 2 files changed, 12 insertions(+)

diff --git a/juneau-doc/src/main/javadoc/overview.html b/juneau-doc/src/main/javadoc/overview.html
index f867827..8380ed7 100644
--- a/juneau-doc/src/main/javadoc/overview.html
+++ b/juneau-doc/src/main/javadoc/overview.html
@@ -11001,6 +11001,10 @@
 		<td class='code'>$SA{contentType,key[,default]}</td>
 	</tr>
 	<tr class='dark'>
+		<td>{@link org.apache.juneau.rest.vars.SwaggerVar}</td>
+		<td class='code'>$SS{key1[,key2...]}</td>
+	</tr>
+	<tr class='dark'>
 		<td>{@link org.apache.juneau.rest.vars.UrlVar}</td>
 		<td class='code'>$U{uri}></td>
 	</tr>
diff --git a/juneau-microservice/juneau-microservice-template/pom.xml b/juneau-microservice/juneau-microservice-template/pom.xml
index 81a9a44..d5b8482 100644
--- a/juneau-microservice/juneau-microservice-template/pom.xml
+++ b/juneau-microservice/juneau-microservice-template/pom.xml
@@ -51,6 +51,14 @@
 	<build>
 		<plugins>
 			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<configuration>
+					<!-- Needed to prevent mvn release:prepare from blowing up. -->
+					<skip>true</skip>
+				</configuration>
+			</plugin>
+			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
 				<executions>
 					<execution>