Author: rmannibucau
Date: Thu Apr 18 13:21:06 2019
New Revision: 1857746
URL: http://svn.apache.org/viewvc?rev=1857746&view=rev
Log:
fixing some highlighting in new howto page
Modified:
openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/howto.adoc
openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/start.adoc
Modified:
openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/howto.adoc
URL:
http://svn.apache.org/viewvc/openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/howto.adoc?rev=1857746&r1=1857745&r2=1857746&view=diff
==============================================================================
---
openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/howto.adoc
(original)
+++
openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/howto.adoc
Thu Apr 18 13:21:06 2019
@@ -10,7 +10,7 @@
You should add the following dependencies do the dependencies section of your
pom.xml (adjust version to current stable version)
-[source,maven]
+[source,xml]
----
<dependency>
<groupId>org.apache.meecrowave</groupId>
@@ -34,12 +34,12 @@ You should add the following dependencie
and the following plugin configuration to the build/plugins section of your
pom.xml
-[source,maven]
+[source,xml]
----
<plugin>
<!--
- For starting meecrowave via Maven. Just run
- $> mvn clean install meecrowave:run
+ For starting meecrowave via Maven. Just run
+ $> mvn clean install meecrowave:run
-->
<groupId>org.apache.meecrowave</groupId>
<artifactId>meecrowave-maven-plugin</artifactId>
@@ -192,11 +192,14 @@ public class MyServletContainerInitializ
Then, you should register this implementation of ServletContainerInitializer:
* in a SPI, in
src/main/resources/META-INF/services/javax.servlet.ServletContainerInitializer:
-[source,spi]
+
+[source]
----
org.mypackage.MyServletContainerInitializer
----
+
* or add it to Meecrowave configuration using a
Meecrowave.ConfigurationCustomizer such as :
+
[source,java]
----
package org.mypackage;
@@ -281,7 +284,7 @@ A more complex example link:https://rman
== How to add a web frontend ?
You should add a <webapp> element to the meecrowave plugin configuration.
Example :
-[source,pom.xml]
+[source,xml]
----
<plugin>
<!--
Modified:
openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/start.adoc
URL:
http://svn.apache.org/viewvc/openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/start.adoc?rev=1857746&r1=1857745&r2=1857746&view=diff
==============================================================================
---
openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/start.adoc
(original)
+++
openwebbeans/meecrowave/trunk/meecrowave-doc/src/main/jbake/content/start.adoc
Thu Apr 18 13:21:06 2019
@@ -122,3 +122,6 @@ See link:meecrowave-core/deploy-webapp.h
== Sample
https://github.com/apache/openwebbeans-meecrowave-examples contains ready to
use examples using meecrowave.
+
+You can also find more information on our link:howto.html[How To] page.
+