diff --git a/README.adoc b/README.adoc index b43caf1c15..cffb0fc8af 100644 --- a/README.adoc +++ b/README.adoc @@ -92,6 +92,7 @@ NOTE: Some of these quickstarts use the H2 database included with {productName}. | link:http-custom-mechanism/README{outfilesuffix}[http-custom-mechanism]|EJB, Security | The `http-custom-mechanism` quickstart demonstrates how to implement a custom HTTP authentication mechanism that can be registered with Elytron. | Intermediate | _none_ | link:inter-app/README{outfilesuffix}[inter-app]|EJB, CDI, JSF | The `inter-app` quickstart shows you how to use a shared API JAR and an EJB to provide inter-application communication between two WAR deployments. | Advanced | _none_ | link:jaxrs-client/README{outfilesuffix}[jaxrs-client]|JAX-RS | The `jaxrs-client` quickstart demonstrates JAX-RS Client API, which interacts with a JAX-RS Web service that runs on {productName}. | Beginner | _none_ +| link:jaxrs-jwt/README{outfilesuffix}[jaxrs-jwt]|JAX-RS, Security | The `jaxrs-jwt` quickstart demonstrates a JAX-RS secured application using JSON Web Tokens (JWT) with Elytron. | Intermediate | _none_ | link:jaxws-addressing/README{outfilesuffix}[jaxws-addressing]|JAX-WS | The `jaxws-addressing` quickstart is a working example of the web service using WS-Addressing. | Beginner | _none_ | link:jaxws-ejb/README{outfilesuffix}[jaxws-ejb]|JAX-WS | The `jaxws-ejb` quickstart is a working example of the web service endpoint created from an EJB. | Beginner | _none_ | link:jaxws-pojo/README{outfilesuffix}[jaxws-pojo]|JAX-WS | The `jaxws-pojo` quickstart is a working example of the web service endpoint created from a POJO. | Beginner | _none_ diff --git a/pom.xml b/pom.xml index 4fada7e39d..075d42f321 100644 --- a/pom.xml +++ b/pom.xml @@ -516,7 +516,6 @@ - org.wildfly.maven.plugins quickstart-documentation-plugin @@ -548,18 +547,19 @@ - none + shared-doc - **/* + **/*.* article . - README.adoc - README.html - + + + true + true @@ -571,6 +571,31 @@ + + org.apache.maven.plugins + maven-resources-plugin + ${version.resources.plugin} + + + copy-generated-docs + generate-resources + + copy-resources + + + ${basedir} + + + ${project.build.directory}/generated-docs + + **/*.html + + + + + + +