You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by fl...@apache.org on 2012/10/27 14:38:18 UTC

svn commit: r1402791 - /stanbol/site/trunk/content/production/your-launcher.mdtext

Author: florent
Date: Sat Oct 27 12:38:18 2012
New Revision: 1402791

URL: http://svn.apache.org/viewvc?rev=1402791&view=rev
Log:
STANBOL-789 reverse pre and quote markups

Modified:
    stanbol/site/trunk/content/production/your-launcher.mdtext

Modified: stanbol/site/trunk/content/production/your-launcher.mdtext
URL: http://svn.apache.org/viewvc/stanbol/site/trunk/content/production/your-launcher.mdtext?rev=1402791&r1=1402790&r2=1402791&view=diff
==============================================================================
--- stanbol/site/trunk/content/production/your-launcher.mdtext (original)
+++ stanbol/site/trunk/content/production/your-launcher.mdtext Sat Oct 27 12:38:18 2012
@@ -16,8 +16,8 @@ Stanbol launcher's use this bundlelist m
 * Bundlelist are in fact just jar. So you just need to declare them as dependencies in you launcher pom.xml to get the feature package and all required bundle for it.
 * For example, if you want the entityHub feature in you server, you only need to add this dependency to your launcher pom.xml :  
 
-<pre>
 ```
+<pre>
     <dependency>
       <groupId>org.apache.stanbol</groupId>
       <artifactId>org.apache.stanbol.entityhub.bundlelist</artifactId>
@@ -25,8 +25,8 @@ Stanbol launcher's use this bundlelist m
       <type>partialbundlelist</type>
       <scope>provided</scope>
     </dependency>
-```
 </pre>
+```
 
 * Please note the ```<type>partialbundlelist</type>``` property of the dependency.
 * Also in actual Stanbol code base you can easily detect feature package bundlelist as their artifactId has the structure org.apache.stanbol.{feature-name}.bundlelist