You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by ra...@apache.org on 2018/12/28 17:21:00 UTC

[1/7] tomee git commit: This was in .md format but with .adoc extension. So I did the work to convert it.

Repository: tomee
Updated Branches:
  refs/heads/master 85d7dbb63 -> f1f49d792


This was in .md format but with .adoc extension. So I did the work to convert it.


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/fff20762
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/fff20762
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/fff20762

Branch: refs/heads/master
Commit: fff2076229c5d77850a333b63db2c04dc24dc1b9
Parents: 2446ae8
Author: ivanjunckes <ij...@tomitribe.com>
Authored: Fri Dec 28 12:24:22 2018 -0200
Committer: Roberto Cortez <ra...@yahoo.com>
Committed: Fri Dec 28 17:18:19 2018 +0000

----------------------------------------------------------------------
 examples/mp-custom-healthcheck/README.adoc | 99 +++++++++++++++----------
 1 file changed, 59 insertions(+), 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/fff20762/examples/mp-custom-healthcheck/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-custom-healthcheck/README.adoc b/examples/mp-custom-healthcheck/README.adoc
index f3e2e01..076661d 100644
--- a/examples/mp-custom-healthcheck/README.adoc
+++ b/examples/mp-custom-healthcheck/README.adoc
@@ -1,7 +1,13 @@
-# MicroProfile Custom Health Check
+= MicroProfile Custom Health Check
+:index-group: MicroProfile
+:jbake-type: page
+:jbake-status: published
+
 This is an example of how to use MicroProfile Custom Health Check in TomEE.
 
-#### Health Feature
+[discrete]
+==== Health Feature
+
 Health checks are used to probe the state of services and resources that an application might depend on or even to expose its
 state, e.g. in a cluster environment, where an unhealthy node needs to be discarded (terminated, shutdown) and eventually
 replaced by another healthy instance.
@@ -9,18 +15,20 @@ replaced by another healthy instance.
 By default, https://github.com/eclipse/microprofile-health[microprofile-health-api] provides a basic output of a node by
  simply hitting the endpoint http://host:port/health.
 
-```json
+[source,json]
+----
 {"checks":[],"outcome":"UP","status":"UP"}
-```
+----
 
-To provide a customized output, Let’s say we have an application that uses a Weather API, and if the service becomes
+To provide a customized output, Let's say we have an application that uses a Weather API, and if the service becomes
 unavailable, we should report the service as DOWN.
 
 To begin with a customized output, is needed to implement the interface https://github.com/eclipse/microprofile-health/blob/master/api/src/main/java/org/eclipse/microprofile/health/HealthCheck.java[HealthCheck],
 make the class a managed bean by annotating it with `@ApplicationScoped` plus with `@Health` annotation to active the custom check.
 See more here https://github.com/apache/geronimo-health/blob/master/geronimo-health/src/main/java/org/apache/geronimo/microprofile/impl/health/cdi/GeronimoHealthExtension.java[GeronimoHealthExtension.java]
 
-```java
+[source,java]
+----
 @Health
 @ApplicationScoped
 public class WeatherServiceHealthCheck implements HealthCheck {
@@ -41,34 +49,37 @@ public class WeatherServiceHealthCheck implements HealthCheck {
         }
     }
 }
-```
+----
+
 In the example above, the health probe name is https://openweathermap.org/appid[OpenWeatherMap] (_illustrative only_) which provides a
 subscription plan to access its services and if the limit of calls is exceeded the API becomes unavailable until it's renewed.
 
-### Examples
+[discrete]
+=== Examples
 
-##### Running the application
-
-```
+.Running the application
+----
     mvn clean install tomee:run
-```
+----
 
-#### Example 1
+[discrete]
+==== Example 1
 
 When hitting /health endpoint, OpenWeatherMap tell us that our remaining calls are running out and we should take
 an action before it gets unavailable.
 
-```
+----
 curl http://localhost:8080/mp-custom-healthcheck/health
-```
+----
 
-```json
+[source,json]
+----
 {
    "checks":[
       {
          "data":{
             "weatherServiceApiVersion":"2.5",
-            "weatherServiceMessage":"Your account will become unavailable soon due to limitation of your 
+            "weatherServiceMessage":"Your account will become unavailable soon due to limitation of your
                                     subscription type. Remaining API calls are 1",
             "weatherServiceApiUrl":"http://api.openweathermap.org/data/2.5/"
          },
@@ -79,36 +90,40 @@ curl http://localhost:8080/mp-custom-healthcheck/health
    "outcome":"UP",
    "status":"UP"
 }
-```
+----
 
-#### Example 2
+[discrete]
+==== Example 2
 
 Weather API still working fine.
 
-```
+----
 curl http://localhost:8080/mp-custom-healthcheck/weather/day/status
-```
+----
 
-```text
+[source,text]
+----
 Hi, today is a sunny day!
-```
+----
 
-#### Example 3
+[discrete]
+==== Example 3
 
 When hitting one more time /health endpoint, OpenWeatherMap tell us that our account is temporary blocked and this
 service is being reported as DOWN.
 
-```
+----
 curl http://localhost:8080/mp-custom-healthcheck/health
-```
+----
 
-```json
+[source,json]
+----
 {
    "checks":[
       {
          "data":{
-            "weatherServiceErrorMessage":"Your account is temporary blocked due to exceeding of 
-            requests limitation of your subscription type. Please choose the proper subscription                  
+            "weatherServiceErrorMessage":"Your account is temporary blocked due to exceeding of
+            requests limitation of your subscription type. Please choose the proper subscription
             http://openweathermap.org/price"
          },
          "name":"weatherservice",
@@ -118,29 +133,33 @@ curl http://localhost:8080/mp-custom-healthcheck/health
    "outcome":"DOWN",
    "status":"DOWN"
 }
-```
+----
 
-#### Example 4
+[discrete]
+==== Example 4
 
 Weather API has stopped.
 
-```
+----
 curl http://localhost:8080/mp-custom-healthcheck/weather/day/status
-```
+----
 
-```text
+[source,text]
+----
 Weather Service is unavailable at moment, retry later.
-```
+----
 
-##### Running the tests
+[discrete]
+===== Running the tests
 
 You can also try it out using the link:src/test/java/org/superbiz/rest/WeatherServiceTest.java[WeatherServiceTest.java] available in the project.
 
-    mvn clean test
+----
+mvn clean test
+----
 
-```
+----
 [INFO] Results:
 [INFO]
 [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped:
-```
-
+----


[2/7] tomee git commit: test doc

Posted by ra...@apache.org.
test doc


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/2446ae84
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/2446ae84
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/2446ae84

Branch: refs/heads/master
Commit: 2446ae84041e17913adfb07512e98b2eb8cea265
Parents: 85d7dbb
Author: ivanjunckes <ij...@tomitribe.com>
Authored: Fri Dec 28 10:20:40 2018 -0200
Committer: Roberto Cortez <ra...@yahoo.com>
Committed: Fri Dec 28 17:18:19 2018 +0000

----------------------------------------------------------------------
 examples/cdi-events/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/2446ae84/examples/cdi-events/README.adoc
----------------------------------------------------------------------
diff --git a/examples/cdi-events/README.adoc b/examples/cdi-events/README.adoc
index 5f3d047..c663240 100644
--- a/examples/cdi-events/README.adoc
+++ b/examples/cdi-events/README.adoc
@@ -1,4 +1,4 @@
-= CDI events - Loose coupling and extensibility
+= CDI events Ivan - Loose coupling and extensibility
 :index-group: CDI
 :jbake-type: page
 :jbake-status: published


[6/7] tomee git commit: Microprofile projects title and group fixes.

Posted by ra...@apache.org.
Microprofile projects title and group fixes.


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/ae9c42d8
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/ae9c42d8
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/ae9c42d8

Branch: refs/heads/master
Commit: ae9c42d8d622903b4eeb7e08cdfe15c647c92252
Parents: 4c2870f
Author: ivanjunckes <ij...@tomitribe.com>
Authored: Fri Dec 28 12:29:08 2018 -0200
Committer: Roberto Cortez <ra...@yahoo.com>
Committed: Fri Dec 28 17:18:20 2018 +0000

----------------------------------------------------------------------
 examples/mp-faulttolerance-fallback/README.adoc | 4 ++++
 examples/mp-metrics-counted/README.adoc         | 2 +-
 examples/mp-metrics-counted/README.md           | 0
 examples/mp-metrics-histogram/README.adoc       | 2 +-
 examples/mp-metrics-metered/README.adoc         | 9 ++++-----
 examples/mp-opentracing-traced/README.adoc      | 9 ++++-----
 6 files changed, 14 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/ae9c42d8/examples/mp-faulttolerance-fallback/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-faulttolerance-fallback/README.adoc b/examples/mp-faulttolerance-fallback/README.adoc
index ea5e599..1631d97 100644
--- a/examples/mp-faulttolerance-fallback/README.adoc
+++ b/examples/mp-faulttolerance-fallback/README.adoc
@@ -1,4 +1,8 @@
 = Microprofile Fault Tolerance - Fallback
+:index-group: MicroProfile
+:jbake-type: page
+:jbake-status: published
+
 This is an example of how to use Microprofile @Fallback in TomEE.
 
 == Fallback Feature

http://git-wip-us.apache.org/repos/asf/tomee/blob/ae9c42d8/examples/mp-metrics-counted/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-metrics-counted/README.adoc b/examples/mp-metrics-counted/README.adoc
index f5d8c95..3211311 100644
--- a/examples/mp-metrics-counted/README.adoc
+++ b/examples/mp-metrics-counted/README.adoc
@@ -1,8 +1,8 @@
+= Microprofile Metrics Counted
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published
 
-# Microprofile Metrics
 This is an example on how to use microprofile metrics in TomEE.
 
 == Run the application:

http://git-wip-us.apache.org/repos/asf/tomee/blob/ae9c42d8/examples/mp-metrics-counted/README.md
----------------------------------------------------------------------
diff --git a/examples/mp-metrics-counted/README.md b/examples/mp-metrics-counted/README.md
deleted file mode 100644
index e69de29..0000000

http://git-wip-us.apache.org/repos/asf/tomee/blob/ae9c42d8/examples/mp-metrics-histogram/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-metrics-histogram/README.adoc b/examples/mp-metrics-histogram/README.adoc
index f8b1ee3..9ca47e5 100644
--- a/examples/mp-metrics-histogram/README.adoc
+++ b/examples/mp-metrics-histogram/README.adoc
@@ -1,8 +1,8 @@
+= Microprofile Metrics Histogram
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published
 
-# Microprofile Metrics Histogram
 This is an example on how to use microprofile metrics in TomEE.
 
 == Run the application:

http://git-wip-us.apache.org/repos/asf/tomee/blob/ae9c42d8/examples/mp-metrics-metered/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-metrics-metered/README.adoc b/examples/mp-metrics-metered/README.adoc
index f527082..dfb8f60 100644
--- a/examples/mp-metrics-metered/README.adoc
+++ b/examples/mp-metrics-metered/README.adoc
@@ -1,8 +1,7 @@
-index-group=Unrevised
-type=page
-status=published
-
-= Microprofile Metrics
+= Microprofile Metrics Metered
+:index-group: MicroProfile
+:jbake-type: page
+:jbake-status: published
 
 This is an example on how to use microprofile metrics in TomEE.
 

http://git-wip-us.apache.org/repos/asf/tomee/blob/ae9c42d8/examples/mp-opentracing-traced/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-opentracing-traced/README.adoc b/examples/mp-opentracing-traced/README.adoc
index 7151c16..ffbb329 100644
--- a/examples/mp-opentracing-traced/README.adoc
+++ b/examples/mp-opentracing-traced/README.adoc
@@ -1,9 +1,8 @@
-index-group=Traced
-type=page
-status=in progress
-~~~~~~
+= Microprofile OpenTracing @Traced
+:index-group: MicroProfile
+:jbake-type: page
+:jbake-status: published
 
-== Microprofile OpenTracing @Traced
 
 This is an example on how to use the @Traced annotation in TomEE.
 


[5/7] tomee git commit: Title adjustments

Posted by ra...@apache.org.
Title adjustments


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/4c2870f3
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/4c2870f3
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/4c2870f3

Branch: refs/heads/master
Commit: 4c2870f3b45ab08743cff33753587b41f0e8ac9d
Parents: fff2076
Author: ivanjunckes <ij...@tomitribe.com>
Authored: Fri Dec 28 12:24:59 2018 -0200
Committer: Roberto Cortez <ra...@yahoo.com>
Committed: Fri Dec 28 17:18:20 2018 +0000

----------------------------------------------------------------------
 examples/cdi-events/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/4c2870f3/examples/cdi-events/README.adoc
----------------------------------------------------------------------
diff --git a/examples/cdi-events/README.adoc b/examples/cdi-events/README.adoc
index c663240..1c004df 100644
--- a/examples/cdi-events/README.adoc
+++ b/examples/cdi-events/README.adoc
@@ -1,4 +1,4 @@
-= CDI events Ivan - Loose coupling and extensibility
+= CDI Events - Loose Coupling and Extensibility
 :index-group: CDI
 :jbake-type: page
 :jbake-status: published


[4/7] tomee git commit: Fixing titles

Posted by ra...@apache.org.
Fixing titles


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/a926c90a
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/a926c90a
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/a926c90a

Branch: refs/heads/master
Commit: a926c90aed0ff1ac079064f27db95c58f6480fe1
Parents: 255a45b
Author: ivanjunckes <ij...@tomitribe.com>
Authored: Fri Dec 28 12:56:38 2018 -0200
Committer: Roberto Cortez <ra...@yahoo.com>
Committed: Fri Dec 28 17:18:20 2018 +0000

----------------------------------------------------------------------
 examples/mp-config-example/README.adoc    | 2 +-
 examples/mp-metrics-histogram/README.adoc | 2 +-
 examples/mp-metrics-metered/README.adoc   | 2 +-
 examples/mp-rest-client/README.adoc       | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/a926c90a/examples/mp-config-example/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-config-example/README.adoc b/examples/mp-config-example/README.adoc
index 07af20c..c92ba31 100644
--- a/examples/mp-config-example/README.adoc
+++ b/examples/mp-config-example/README.adoc
@@ -1,4 +1,4 @@
-= Microprofile Config
+= MicroProfile Config
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published

http://git-wip-us.apache.org/repos/asf/tomee/blob/a926c90a/examples/mp-metrics-histogram/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-metrics-histogram/README.adoc b/examples/mp-metrics-histogram/README.adoc
index 9ca47e5..8cd9553 100644
--- a/examples/mp-metrics-histogram/README.adoc
+++ b/examples/mp-metrics-histogram/README.adoc
@@ -1,4 +1,4 @@
-= Microprofile Metrics Histogram
+= MicroProfile Metrics Histogram
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published

http://git-wip-us.apache.org/repos/asf/tomee/blob/a926c90a/examples/mp-metrics-metered/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-metrics-metered/README.adoc b/examples/mp-metrics-metered/README.adoc
index dfb8f60..3c96c5a 100644
--- a/examples/mp-metrics-metered/README.adoc
+++ b/examples/mp-metrics-metered/README.adoc
@@ -1,4 +1,4 @@
-= Microprofile Metrics Metered
+= MicroProfile Metrics Metered
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published

http://git-wip-us.apache.org/repos/asf/tomee/blob/a926c90a/examples/mp-rest-client/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-rest-client/README.adoc b/examples/mp-rest-client/README.adoc
index 51d523a..e5cfa80 100644
--- a/examples/mp-rest-client/README.adoc
+++ b/examples/mp-rest-client/README.adoc
@@ -1,4 +1,4 @@
-== MicroProfile Rest client
+= MicroProfile Rest Client
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published


[7/7] tomee git commit: closes apache/tomee#322 *Merged*

Posted by ra...@apache.org.
closes apache/tomee#322 *Merged*


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/f1f49d79
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/f1f49d79
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/f1f49d79

Branch: refs/heads/master
Commit: f1f49d792172c4297d25dc2463bc1be8fdc7ae25
Parents: a926c90
Author: Roberto Cortez <ra...@yahoo.com>
Authored: Fri Dec 28 17:20:43 2018 +0000
Committer: Roberto Cortez <ra...@yahoo.com>
Committed: Fri Dec 28 17:20:43 2018 +0000

----------------------------------------------------------------------

----------------------------------------------------------------------



[3/7] tomee git commit: Adjustments on the microprofile documentation

Posted by ra...@apache.org.
Adjustments on the microprofile documentation


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/255a45b5
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/255a45b5
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/255a45b5

Branch: refs/heads/master
Commit: 255a45b5939493495c5dac962dd8c1d93cfacde9
Parents: ae9c42d
Author: ivanjunckes <ij...@tomitribe.com>
Authored: Fri Dec 28 12:50:26 2018 -0200
Committer: Roberto Cortez <ra...@yahoo.com>
Committed: Fri Dec 28 17:18:20 2018 +0000

----------------------------------------------------------------------
 examples/mp-faulttolerance-fallback/README.adoc | 2 +-
 examples/mp-faulttolerance-retry/README.adoc    | 3 +--
 examples/mp-metrics-counted/README.adoc         | 2 +-
 examples/mp-metrics-timed/README.adoc           | 3 +--
 examples/mp-opentracing-traced/README.adoc      | 2 +-
 examples/mp-rest-client/README.adoc             | 3 +--
 examples/mp-rest-jwt/README.adoc                | 3 +--
 7 files changed, 7 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/255a45b5/examples/mp-faulttolerance-fallback/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-faulttolerance-fallback/README.adoc b/examples/mp-faulttolerance-fallback/README.adoc
index 1631d97..b4c6cc8 100644
--- a/examples/mp-faulttolerance-fallback/README.adoc
+++ b/examples/mp-faulttolerance-fallback/README.adoc
@@ -1,4 +1,4 @@
-= Microprofile Fault Tolerance - Fallback
+= MicroProfile Fault Tolerance - Fallback
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published

http://git-wip-us.apache.org/repos/asf/tomee/blob/255a45b5/examples/mp-faulttolerance-retry/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-faulttolerance-retry/README.adoc b/examples/mp-faulttolerance-retry/README.adoc
index f43d06a..b259179 100644
--- a/examples/mp-faulttolerance-retry/README.adoc
+++ b/examples/mp-faulttolerance-retry/README.adoc
@@ -1,8 +1,7 @@
+= MicroProfile Fault Tolerance - Retry Policy
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published
-~~~~~~
-# Microprofile Fault Tolerance - Retry policy
 
 This is an example of how to use
 Microprofile @Retry in TomEE.

http://git-wip-us.apache.org/repos/asf/tomee/blob/255a45b5/examples/mp-metrics-counted/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-metrics-counted/README.adoc b/examples/mp-metrics-counted/README.adoc
index 3211311..6d0e862 100644
--- a/examples/mp-metrics-counted/README.adoc
+++ b/examples/mp-metrics-counted/README.adoc
@@ -1,4 +1,4 @@
-= Microprofile Metrics Counted
+= MicroProfile Metrics Counted
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published

http://git-wip-us.apache.org/repos/asf/tomee/blob/255a45b5/examples/mp-metrics-timed/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-metrics-timed/README.adoc b/examples/mp-metrics-timed/README.adoc
index 7aec937..29576ea 100644
--- a/examples/mp-metrics-timed/README.adoc
+++ b/examples/mp-metrics-timed/README.adoc
@@ -1,9 +1,8 @@
+= MicroProfile Metrics Timed
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published
 
-# Microprofile Metrics Timed
-
 This is an example on how to use MicroProfile metrics in TomEE.
 
 == Run the application:

http://git-wip-us.apache.org/repos/asf/tomee/blob/255a45b5/examples/mp-opentracing-traced/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-opentracing-traced/README.adoc b/examples/mp-opentracing-traced/README.adoc
index ffbb329..b1ae708 100644
--- a/examples/mp-opentracing-traced/README.adoc
+++ b/examples/mp-opentracing-traced/README.adoc
@@ -1,4 +1,4 @@
-= Microprofile OpenTracing @Traced
+= MicroProfile OpenTracing @Traced
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published

http://git-wip-us.apache.org/repos/asf/tomee/blob/255a45b5/examples/mp-rest-client/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-rest-client/README.adoc b/examples/mp-rest-client/README.adoc
index 4be04b1..51d523a 100644
--- a/examples/mp-rest-client/README.adoc
+++ b/examples/mp-rest-client/README.adoc
@@ -1,9 +1,8 @@
+== MicroProfile Rest client
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published
 
-== Microprofile Rest client
-
 This is a basic example on how to configure and use MicroProfile Rest
 Client in TomEE.
 

http://git-wip-us.apache.org/repos/asf/tomee/blob/255a45b5/examples/mp-rest-jwt/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-rest-jwt/README.adoc b/examples/mp-rest-jwt/README.adoc
index 71149e3..476b95d 100644
--- a/examples/mp-rest-jwt/README.adoc
+++ b/examples/mp-rest-jwt/README.adoc
@@ -1,9 +1,8 @@
+= MicroProfile JWT
 :index-group: MicroProfile
 :jbake-type: page
 :jbake-status: published
 
-# MP REST JWT
-
 This is a basic example on how to configure and use MicroProfile JWT in
 TomEE.