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:35:38 UTC

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

Author: florent
Date: Sat Oct 27 12:35:38 2012
New Revision: 1402790

URL: http://svn.apache.org/viewvc?rev=1402790&view=rev
Log:
STANBOL-789 replace <code> by <pre> to keep spaces

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=1402790&r1=1402789&r2=1402790&view=diff
==============================================================================
--- stanbol/site/trunk/content/production/your-launcher.mdtext (original)
+++ stanbol/site/trunk/content/production/your-launcher.mdtext Sat Oct 27 12:35:38 2012
@@ -16,7 +16,7 @@ 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 :  
 
-<code>
+<pre>
 ```
     <dependency>
       <groupId>org.apache.stanbol</groupId>
@@ -26,7 +26,7 @@ Stanbol launcher's use this bundlelist m
       <scope>provided</scope>
     </dependency>
 ```
-</code>
+</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
@@ -62,7 +62,7 @@ Stanbol launcher's use this bundlelist m
 
 * Bundlelist (or partialbundlelist) artifact is a really simple Maven project that rely on this structure :
 
-<code>
+<pre>
     mybundlelistFolder
       |
       |- pom.xml
@@ -70,7 +70,7 @@ Stanbol launcher's use this bundlelist m
           |- main
               |- bundles
                    |- list.xml
-</code>
+</pre>
 
 * You only need to define 2 files : 
     * pom.xml : really simple you can copy-paste the [Enhancer bundlelist](http://svn.apache.org/repos/asf/stanbol/trunk/enhancer/bundlelist/pom.xml) one and only change the groupId and artifactId properties to suit you need. All the magic here is contained in <packaging> property.