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

svn commit: r836339 - in /websites/staging/stanbol/trunk/content: ./ production/your-launcher.html

Author: buildbot
Date: Sat Oct 27 12:35:42 2012
New Revision: 836339

Log:
Staging update by buildbot for stanbol

Modified:
    websites/staging/stanbol/trunk/content/   (props changed)
    websites/staging/stanbol/trunk/content/production/your-launcher.html

Propchange: websites/staging/stanbol/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Oct 27 12:35:42 2012
@@ -1 +1 @@
-1402789
+1402790

Modified: websites/staging/stanbol/trunk/content/production/your-launcher.html
==============================================================================
--- websites/staging/stanbol/trunk/content/production/your-launcher.html (original)
+++ websites/staging/stanbol/trunk/content/production/your-launcher.html Sat Oct 27 12:35:42 2012
@@ -100,15 +100,18 @@ But identify and manually add all featur
 <li>For example, if you want the entityHub feature in you server, you only need to add this dependency to your launcher pom.xml :<br />
 </li>
 </ul>
-<p><code>
-<code>&lt;dependency&gt;
-      &lt;groupId&gt;org.apache.stanbol&lt;/groupId&gt;
-      &lt;artifactId&gt;org.apache.stanbol.entityhub.bundlelist&lt;/artifactId&gt;
-      &lt;version&gt;0.11.0-SNAPSHOT&lt;/version&gt;
-      &lt;type&gt;partialbundlelist&lt;/type&gt;
-      &lt;scope&gt;provided&lt;/scope&gt;
-    &lt;/dependency&gt;</code>
-</code></p>
+<pre>
+```
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.bundlelist</artifactId>
+      <version>0.11.0-SNAPSHOT</version>
+      <type>partialbundlelist</type>
+      <scope>provided</scope>
+    </dependency>
+```
+</pre>
+
 <ul>
 <li>Please note the <code>&lt;type&gt;partialbundlelist&lt;/type&gt;</code> property of the dependency.</li>
 <li>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</li>
@@ -157,7 +160,7 @@ But identify and manually add all featur
 <ul>
 <li>Bundlelist (or partialbundlelist) artifact is a really simple Maven project that rely on this structure :</li>
 </ul>
-<p><code>
+<pre>
     mybundlelistFolder
       |
       |- pom.xml
@@ -165,7 +168,8 @@ But identify and manually add all featur
           |- main
               |- bundles
                    |- list.xml
-</code></p>
+</pre>
+
 <ul>
 <li>You only need to define 2 files : <ul>
 <li>pom.xml : really simple you can copy-paste the <a href="http://svn.apache.org/repos/asf/stanbol/trunk/enhancer/bundlelist/pom.xml">Enhancer bundlelist</a> one and only change the groupId and artifactId properties to suit you need. All the magic here is contained in <packaging> property.</li>