diff --git a/examples/features/standard/exclusive-queue/readme.md b/examples/features/standard/exclusive-queue/readme.md index bcaa7c751a..2712afd192 100644 --- a/examples/features/standard/exclusive-queue/readme.md +++ b/examples/features/standard/exclusive-queue/readme.md @@ -6,18 +6,17 @@ This example shows you how to configure ActiveMQ Artemis so all messages are del ## ExclusiveQueueExample.java -The broker is configured (using 'address-settings'), so that the queue is exclusive and will deliver all messages to the same +The broker is configured (using `address-settings`), so that the queue is exclusive and will deliver all messages to the same consumer ```xml - - - true - - + + + true + + ``` - ## ExclusiveQueueClientSideExample.java The JMS Queue is auto created from the client code and uses the `exclusive` parameter. diff --git a/examples/features/standard/netty-openssl/pom.xml b/examples/features/standard/netty-openssl/pom.xml index ebd9c414c8..45176e1997 100644 --- a/examples/features/standard/netty-openssl/pom.xml +++ b/examples/features/standard/netty-openssl/pom.xml @@ -24,7 +24,7 @@ under the License. org.apache.activemq.examples.broker jms-examples - 2.7.0-SNAPSHOT + 2.10.0-SNAPSHOT netty-openssl diff --git a/examples/features/standard/netty-openssl/readme.md b/examples/features/standard/netty-openssl/readme.md index 2ccb69388b..fbae0e95a3 100644 --- a/examples/features/standard/netty-openssl/readme.md +++ b/examples/features/standard/netty-openssl/readme.md @@ -12,6 +12,6 @@ To secure your messaging application with Netty's OpenSSL, you need to configure In the configuration, the `activemq.example.keystore` is the key store file holding the server's certificate. The `activemq.example.truststore` is the file holding the certificates which the client trusts (i.e. the server's certificate exported from activemq.example.keystore). They are generated via the following commands: -* `keytool -genkey -keystore activemq.example.keystore -storepass secureexample -keypass secureexample -dname "CN=localhost, OU=Artemis, O=ActiveMQ, L=AMQ, S=AMQ, C=AMQ" -keyalg EC -sigalg SHA256withECDSA -* `keytool -export -keystore activemq.example.keystore -file activemq-jks.cer -storepass secureexample -* `keytool -import -keystore activemq.example.truststore -file activemq-jks.cer -storepass secureexample -keypass secureexample -noprompt +* `keytool -genkey -keystore activemq.example.keystore -storepass secureexample -keypass secureexample -dname "CN=localhost, OU=Artemis, O=ActiveMQ, L=AMQ, S=AMQ, C=AMQ" -keyalg EC -sigalg SHA256withECDSA` +* `keytool -export -keystore activemq.example.keystore -file activemq-jks.cer -storepass secureexample` +* `keytool -import -keystore activemq.example.truststore -file activemq-jks.cer -storepass secureexample -keypass secureexample -noprompt` diff --git a/examples/features/standard/pom.xml b/examples/features/standard/pom.xml index 76df69ba68..19ef58b826 100644 --- a/examples/features/standard/pom.xml +++ b/examples/features/standard/pom.xml @@ -77,6 +77,7 @@ under the License. message-group message-group2 message-priority + netty-openssl no-consumer-buffering paging pre-acknowledge @@ -130,6 +131,7 @@ under the License. durable-subscription embedded embedded-simple + exclusive-queue expiry http-transport interceptor @@ -148,6 +150,7 @@ under the License. message-group message-group2 message-priority + netty-openssl no-consumer-buffering paging pre-acknowledge @@ -165,6 +168,7 @@ under the License. shared-consumer slow-consumer spring-integration + spring-boot-integration ssl-enabled ssl-enabled-crl-mqtt ssl-enabled-dual-authentication diff --git a/examples/features/standard/spring-boot-integration/pom.xml b/examples/features/standard/spring-boot-integration/pom.xml index 7007d4978a..90467108f9 100644 --- a/examples/features/standard/spring-boot-integration/pom.xml +++ b/examples/features/standard/spring-boot-integration/pom.xml @@ -44,6 +44,32 @@ + + org.apache.activemq + artemis-maven-plugin + + + runClient + + runClient + + + org.apache.activemq.artemis.jms.example.springboot.Application + + + + + + org.apache.activemq.examples.broker + spring-boot-integration + ${project.version} + + + + + org.apache.maven.plugins + maven-clean-plugin + org.springframework.boot spring-boot-maven-plugin @@ -52,39 +78,6 @@ - - example - - - - org.apache.activemq - artemis-maven-plugin - - - runClient - - runClient - - - org.apache.activemq.artemis.jms.example.springboot.Application - - - - - - org.apache.activemq.examples.broker - spring-boot-integration - ${project.version} - - - - - org.apache.maven.plugins - maven-clean-plugin - - - - release diff --git a/examples/features/standard/spring-boot-integration/README.md b/examples/features/standard/spring-boot-integration/readme.md similarity index 76% rename from examples/features/standard/spring-boot-integration/README.md rename to examples/features/standard/spring-boot-integration/readme.md index 075bbd0d79..108b9a130e 100644 --- a/examples/features/standard/spring-boot-integration/README.md +++ b/examples/features/standard/spring-boot-integration/readme.md @@ -1,6 +1,6 @@ # ActiveMQ Artemis Spring Boot Example -To run the example, simply type **mvn verify -Pexample** from this directory. +To run the example, simply type **mvn verify** from this directory. This example shows how to setup and run an embedded broker within a Spring Boot Application relying on [AMQP 1.0 JMS Spring Boot project](https://github.com/amqphub/amqp-10-jms-spring-boot) for configuration. diff --git a/examples/features/standard/spring-integration/readme.md b/examples/features/standard/spring-integration/readme.md index 41c2c9e8fa..e139278e8b 100644 --- a/examples/features/standard/spring-integration/readme.md +++ b/examples/features/standard/spring-integration/readme.md @@ -1,5 +1,5 @@ # ActiveMQ Artemis Spring Example -To run the example, simply type **mvn verify -Pexample** from this directory +To run the example, simply type **mvn verify** from this directory This examples shows how to setup and run an embedded broker within a Spring ApplicationContext using ActiveMQ Artemis along with ActiveMQ Artemis configuration files. \ No newline at end of file diff --git a/examples/features/sub-modules/tomcat/pom.xml b/examples/features/sub-modules/tomcat/pom.xml index c085f48522..b7a2872f26 100644 --- a/examples/features/sub-modules/tomcat/pom.xml +++ b/examples/features/sub-modules/tomcat/pom.xml @@ -122,4 +122,17 @@ under the License. + + + release + + + + com.vladsch.flexmark + markdown-page-generator-plugin + + + + + \ No newline at end of file diff --git a/examples/features/sub-modules/tomcat/README b/examples/features/sub-modules/tomcat/readme.md similarity index 100% rename from examples/features/sub-modules/tomcat/README rename to examples/features/sub-modules/tomcat/readme.md