Added: 
incubator/stanbol/trunk/contenthub/web/src/main/resources/org/apache/stanbol/contenthub/web/templates/org/apache/stanbol/contenthub/web/resources/FeaturedSearchResource/result.ftl
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/contenthub/web/src/main/resources/org/apache/stanbol/contenthub/web/templates/org/apache/stanbol/contenthub/web/resources/FeaturedSearchResource/result.ftl?rev=1236246&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/contenthub/web/src/main/resources/org/apache/stanbol/contenthub/web/templates/org/apache/stanbol/contenthub/web/resources/FeaturedSearchResource/result.ftl
 (added)
+++ 
incubator/stanbol/trunk/contenthub/web/src/main/resources/org/apache/stanbol/contenthub/web/templates/org/apache/stanbol/contenthub/web/resources/FeaturedSearchResource/result.ftl
 Thu Jan 26 15:37:02 2012
@@ -0,0 +1,98 @@
+<#--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<#setting url_escaping_charset='ISO-8859-1'>
+<#import "/imports/facetResultMacro.ftl" as facetResultMacro>
+<#import "/imports/relatedKeywordMacro.ftl" as relatedKeywordMacro>
+<#-- limit for the more less button -->
+<#assign limit=4>
+<div id="text">
+</div>
+<div id="result" class="result">
+<a href="${it.publicBaseUri}contenthub/search/featured">Back to Search</a></br>
+  <div class="keywords">
+       <#list it.searchResults.relatedKeywords?keys as queryTermToken>
+         <#assign queryTerm = queryTermToken?replace("*","_")?replace(" ", 
"_")?replace("'", "_")>
+      <#assign kwId = "kw_" + queryTerm>
+      <h3 class="keywordItem keywordClickable" 
id="${kwId}">${queryTermToken}</h3>
+      <div id="allSuggestions_${queryTerm}">
+        <#assign rkwsForSingleToken = 
it.searchResults.relatedKeywords[queryTermToken]>
+               <#list rkwsForSingleToken?keys as rkwSource>
+                 <#assign rkwList = rkwsForSingleToken[rkwSource]>
+                 <#if rkwList?size &gt; 0>
+                   <@relatedKeywordMacro.relatedKeywordMacro relatedKeywordId 
= kwId relatedKeywordList = rkwList source = rkwSource/>
+                 </#if>
+               </#list>
+         </div>
+    </#list>
+  </div>
+       
+  <#-- search result division --> 
+  <div class="resources">
+    <fieldset>
+      <legend><h3>Results for ${it.queryTerm}:</h3></legend>
+      <div>
+        <ul class="spadded">
+          <#if it.searchResults.resultantDocuments?size == 0>
+          Your search did not match any documents
+          <#else>
+            <#list it.resultantDocuments as docRes>
+              <div class="bordered-bottom">
+                <li class="lined"><a 
href="${it.publicBaseUri}contenthub/store/page/${docRes.localId}">${docRes.title}</a></li>
+              </div>  
+            </#list>
+          </#if>
+        </ul>
+      </div>
+       </fieldset>
+    <ul class="previousNext">
+      <#assign consLinkEscaped = it.chosenFacets?url("UTF-8")?js_string/>
+      <#if it.moreRecentItems?exists>
+        <li class="moreRecent"><a id="previousLink" 
href="javascript:getResults('${consLinkEscaped}', null, null, 'first', 
${it.offset - it.pageSize}, ${it.pageSize})">Previous</a></li>
+      </#if>
+      <#if it.olderItems?exists>
+        <li class="older"><a id="nextLink" 
href="javascript:getResults('${consLinkEscaped}', null, null, 'first', 
${it.offset + it.pageSize}, ${it.pageSize})">Next</a></li>
+      </#if>
+    </ul>
+  </div>
+       
+  <#-- chosen facets division --> 
+  <div class="chosenfacets">
+    <#if it.chosenFacets?exists && it.chosenFacets != "{}">
+      <fieldset>
+        <div id="chosenFacets"></div>
+        <div id="chosenFacetsHidden" 
class="invisible">'${it.chosenFacets?js_string}'</div>                    
+      </fieldset>
+       </#if>
+  </div>
+       
+  <#-- facets constructed for the retrieved current search results -->
+  <div class="facets" id="facets">
+    <#if it.searchResults.facets?exists && it.searchResults.facets?size != 0>
+      <fieldset>
+        <#list it.searchResults.facets as facet>
+          <#if facet.values?exists>
+            <#if it.chosenFacets?exists>
+              <@facetResultMacro.facetResultMacro facetField=facet 
consLink=it.chosenFacets/>
+            <#else>
+              <@facetResultMacro.facetResultMacro facetField=facet 
consLink="{}"/>
+            </#if>
+          </#if>
+               </#list>
+         </fieldset>
+       </#if>
+  </div> 
+</div>
\ No newline at end of file

Added: 
incubator/stanbol/trunk/contenthub/web/src/main/resources/org/apache/stanbol/contenthub/web/templates/org/apache/stanbol/contenthub/web/resources/StoreResource/index.ftl
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/contenthub/web/src/main/resources/org/apache/stanbol/contenthub/web/templates/org/apache/stanbol/contenthub/web/resources/StoreResource/index.ftl?rev=1236246&view=auto
==============================================================================
--- 
incubator/stanbol/trunk/contenthub/web/src/main/resources/org/apache/stanbol/contenthub/web/templates/org/apache/stanbol/contenthub/web/resources/StoreResource/index.ftl
 (added)
+++ 
incubator/stanbol/trunk/contenthub/web/src/main/resources/org/apache/stanbol/contenthub/web/templates/org/apache/stanbol/contenthub/web/resources/StoreResource/index.ftl
 Thu Jan 26 15:37:02 2012
@@ -0,0 +1,363 @@
+<#--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<#import "/imports/common.ftl" as common>
+<#escape x as x?html>
+<@common.page title="Content Hub" hasrestapi=true> 
+
+<div class="panel" id="webview">
+
+<div id="searchResult" class="invisible"></div>
+
+<div class="searchbox" align="right">
+  <table><td>
+    <tr><input type="text" id="searchKeywords" name="searchKeywords" 
onkeydown="if (event.keyCode == 13) 
document.getElementById('searchButton').click()" /><input id="searchButton" 
type="button" value="Search" onClick="javascript:performSearch();" /></tr>
+    <tr><div><a href="${it.publicBaseUri}contenthub/search/featured" />Search 
Page</a></div></tr>
+  </td></table>
+</div>
+
+<#--
+<em><strong>Disclaimer</strong>: this endpoint is a proof of concept /
+<strong>experimental</strong> feature. It does not actually store the content
+on the disk, just in memory.</em>
+-->
+
+<h3>Recently uploaded Content Items</h3>
+
+<div id="storeContents" class="storeContents">
+       <div>
+       <table id="recentlyEnhancedTable">
+               <div>
+                 <tr>
+                       <th></th>
+                   <th>Title</th>
+                   <th>Media type</th>
+                   <th>Enhancements <#--TODO: fix image path  <img 
src="${it.staticRootUrl}/contenthub/images/rdf.png" alt="Format: RDF"/> --></th>
+                 </tr>
+                 <#list it.recentlyEnhancedItems as item>
+                 <tr>
+                       <td>
+                               <img 
src="${it.staticRootUrl}/contenthub/images/edit_icon_16.png" 
onClick="javascript:editContentItem('${item.localId}', 
'${item.title?js_string}');" title="Edit this item" />
+                               <img 
src="${it.staticRootUrl}/contenthub/images/delete_icon_16.png" 
onClick="javascript:deleteContentItem('${item.localId}');" title="Delete this 
item" />
+                       </td>
+                   <td><a href="${item.dereferencableURI}" 
title="${item.dereferencableURI}"><#if 
item.title??>${item.title}<#else>${item.localId}</#if></a></td>
+                   <td>${item.mimetype}</td>
+                   <td><a 
href="${it.publicBaseUri}contenthub/store/metadata/${item.localId}">${item.enhancementCount}</a></td>
+                 </tr>
+                 </#list>
+               </ul>
+               </div>
+       </table>
+       <ul class="previousNext">
+         <#if it.moreRecentItemsUri?exists>
+           <li class="moreRecent"><a href="${it.moreRecentItemsUri}">More 
recent items</a></li>
+         </#if>
+         <#if it.olderItemsUri?exists>
+           <li class="older"><a href="${it.olderItemsUri}">Older items</a></li>
+         </#if>
+       </ul>
+       </div>
+</div>
+
+
+<div id="editingDiv"> </div>
+
+<h3>Submit Constraints to Content Item for analysis</h3>
+
+<fieldset>
+       <legend>Give Field:Value for your content</legend>
+       <input type="text" id="fieldTitle" value="title" readonly="readonly"/> 
: <input type="text" id="valueTitle" />
+       <div id="constraintsDiv" style="max-height:190px;overflow:auto">
+       </div>
+       
+       <br/>
+       <label onClick="javascript:addConstraint(null);">
+         <img src="${it.staticRootUrl}/contenthub/images/add_icon_16.png" />  
Add a new constraint
+  </label>
+</fieldset>
+
+<h3>Submit a new Content Item for analysis</h3>
+
+<form method="POST" accept-charset="utf-8" onSubmit = "return 
setConstraints();">
+  <fieldset>
+         <input type="hidden" id="constraintsContent" name="constraints" 
value="" />
+         <input type="hidden" name="title" value="" />
+         <input type="hidden" id="idContent" name="contentId" value="" />
+         <legend>Submit raw text content</legend>
+         <p><textarea rows="15" id="contentTextArea" 
name="content"></textarea></p>
+         <p><input type="submit" value="Submit text" /></p>
+  </fieldset>
+</form>
+
+<form method="POST" accept-charset="utf-8" onSubmit = "return 
setConstraints();">
+  <fieldset>
+         <input type="hidden" id="constraintsURL" name="constraints" value="" 
/>
+         <input type="hidden" name="title" value="" />
+         <input type="hidden" id="idURL" name="contentId" value="" />
+         <legend>Submit a remote public resource by URL</legend>
+         <p>
+               <input name="url" type="text" class="url" />
+               <input type="submit" value="Submit URL" />
+         </p>
+  </fieldset>
+</form>
+
+<form method="POST" accept-charset="utf-8"  enctype="multipart/form-data" 
onSubmit = "return setConstraints();">
+  <fieldset>
+         <input type="hidden" id="constraintsFile" name="constraints" value="" 
/>
+         <input type="hidden" name="title" value="" />
+         <input type="hidden" id="idFile" name="contentId" value="" />
+         <legend>Upload a local file</legend>
+         <p>
+               <input name="file" type="file"/>
+               <input type="submit" value="Submit file" />
+         </p>
+  </fieldset>
+</form>
+</div>
+
+<div class="panel" id="restapi" style="display: none;">
+<h3>Uploading new content to the Content Hub</h3>
+
+  <p>You can upload content to the Content Hub for analysis with or without 
providing the content
+   id at your option:</p>
+  <ol>
+    <li><code>PUT</code> content to 
<code>${it.publicBaseUri}contenthub/content/<strong>content-id</strong></code>
+     with <code>Content-Type: text/plain</code>.</li>
+    <li><code>GET</code> enhancements from the same URL with
+     header <code>Accept: application/rdf+xml</code>.</li>
+  </ol>
+  
+  <p><code><strong>content-id</strong></code> can be any valid path and
+   will be used to fetch your item back later.</p>
+
+  <p>On a unix-ish box you can use run the following command from
+   the top-level source directory to populate the Stanbol enhancer service with
+    sample content items:</p>
+
+<pre>
+for file in enhancer/data/text-examples/*.txt;
+do
+  curl -i -X PUT -H "Content-Type:text/plain" -T $file 
${it.publicBaseUri}contenthub/content/$(basename $file) ;
+done
+</pre> 
+
+  Alternatively you can let the Stanbol enhancer automatically build an id 
base on the SHA1
+  hash of the content by posting it at the root of the Content Hub.
+  <ol>
+    <li><code>POST</code> content to 
<code>${it.publicBaseUri}contenthub/</code>
+     with <code>Content-Type: text/plain</code>.</li>
+    <li><code>GET</code> enhancements from the URL in the response along with
+       header <code>Accept: application/rdf+xml</code>.</li>
+  </ol>
+  
+  <p>For instance:</p>
+<pre>
+curl -i -X POST -H "Content-Type:text/plain" \
+     --data "The Stanbol enhancer can detect famous cities such as Paris." \
+     ${it.publicBaseUri}contenthub
+    
+HTTP/1.1 201 Created
+Location: 
${it.publicBaseUri}contenthub/content/sha1-84854eb6802a601ca2349ba28cc55f0b930ac96d
+Content-Length: 0
+Server: Jetty(6.1.x)
+</pre>
+
+
+<h3>Fetching back the original content item and the related enhancements from 
the Content Hub</h3>
+
+<p>Once the content is created in the Content Hub, you can fetch back either 
the original content, a HTML summary view or
+the extracted RDF metadata by dereferencing the URL using the 
<code>Accept</code> header
+as selection switch:</p>
+
+<pre>
+curl -i <strong>-H "Accept: text/plain"</strong> 
${it.publicBaseUri}contenthub/content/sha1-84854eb6802a601ca2349ba28cc55f0b930ac96d
+
+HTTP/1.1 307 TEMPORARY_REDIRECT
+Location: 
${it.publicBaseUri}contenthub/<strong>raw</strong>/sha1-84854eb6802a601ca2349ba28cc55f0b930ac96d
+Content-Length: 0
+Server: Jetty(6.1.x)
+</pre>
+
+<pre>
+curl -i <strong>-H "Accept: text/html"</strong> 
${it.publicBaseUri}contenthub/content/sha1-84854eb6802a601ca2349ba28cc55f0b930ac96d
+
+HTTP/1.1 307 TEMPORARY_REDIRECT
+Location: 
${it.publicBaseUri}contenthub/<strong>page</strong>/sha1-84854eb6802a601ca2349ba28cc55f0b930ac96d
+Content-Length: 0
+Server: Jetty(6.1.x)
+</pre>
+
+<pre>
+curl -i <strong>-H "Accept: application/rdf+xml"</strong> 
${it.publicBaseUri}contenthub/content/sha1-84854eb6802a601ca2349ba28cc55f0b930ac96d
+
+HTTP/1.1 307 TEMPORARY_REDIRECT
+Location: 
${it.publicBaseUri}contenthub/<strong>metadata</strong>/sha1-84854eb6802a601ca2349ba28cc55f0b930ac96d
+Content-Length: 0
+Server: Jetty(6.1.x)
+</pre>
+
+</div>
+<script language="javascript">
+
+       var counter = 0;
+       
+       function setConstraints(){
+    var titleStr = document.getElementById("valueTitle").value;
+    if(titleStr == "" || !titleStr) {
+      // control for the title input... it must exist
+      alert('You should enter title for your content');
+      return false;
+    }
+        
+               var i;
+               var result = JSON.parse("{}");
+               for(i=1; i<=counter; i++){
+                       if (document.getElementById("textDiv" + i)) {
+                               var field = 
jQuery.trim(document.getElementsByName("fieldText"+i)[0].value);
+                               var value = 
jQuery.trim(document.getElementsByName("valueText"+i)[0].value);
+                               
+                               if(!field || !value) {
+                                       continue;
+                               }
+                               
+                               if(result[field] == null) {
+                                       result[field] = new Array();
+                               }
+                               var values = value.split(",");
+                               for(j=0; j<values.length; j++){
+                                       
result[field].push(jQuery.trim(values[j]));
+                               }
+                       }
+               }
+               
+               var constraints = document.getElementsByName('constraints');
+               var title = document.getElementsByName('title');
+               for (var i in constraints) {
+                       constraints[i].value = JSON.stringify(result);
+                       title[i].value =  
document.getElementById('valueTitle').value;
+               }
+               return true;
+       }
+       
+       function addConstraint(vfn){
+               counter++;
+               var newCons = document.createElement('div');
+               newCons.setAttribute('id','textDiv' + counter);
+               var fieldName = "fieldText"+counter;
+               var valueName = "valueText"+counter;
+               var url = "javascript:removeConstraint(" + counter + ");";
+
+               newCons.innerHTML = "<br/><input type='text' name=" + fieldName 
+ " />" 
+                                               + " : "
+                                               + "<input type='text' name=" + 
valueName + " />"
+                                               + "  <img 
src='${it.staticRootUrl}/contenthub/images/delete_icon_16.png' title='Remove' 
onClick=" + url + " />";
+                       
+               document.getElementById("constraintsDiv").appendChild(newCons);
+               document.getElementsByName(fieldName)[0].focus();
+       }
+       
+       function removeConstraint(divNo){
+               var constraintsDiv = document.getElementById('constraintsDiv');
+               
constraintsDiv.removeChild(document.getElementById('textDiv'+divNo));
+       }
+
+       function cancelEditing(){
+               var contentids = document.getElementsByName('contentId');
+               for (var i in contentids) {
+                       contentids[i].value = "";
+               }
+               document.getElementById("editingDiv").innerHTML = "";
+       }
+
+       function editContentItem(vlocalid, vtitle) {
+               var lurl = "${it.publicBaseUri}contenthub/store/edit/" + 
vlocalid;
+               document.getElementById("constraintsDiv").innerHTML = "";
+               counter=0;
+               $.ajax({
+                       url: lurl,
+                       type: "GET",
+                       async: true,
+                       cache: false,
+                       success: function(jsonCons) {
+                       
+                               var contentItem = JSON.parse(jsonCons);
+                               if(contentItem != null) {
+                                 //fill the text content item related 
components in the user interface
+                                       // TODO: use more mimeType
+                                       if(contentItem["mimeType"] == 
"text/plain"){
+                                               
document.getElementById("contentTextArea").value = contentItem["content"];
+                                       } else {
+                                               
document.getElementById("contentTextArea").value = "";
+                                       }
+                                       var contentids = 
document.getElementsByName('contentId');
+                                       for (var i in contentids) {
+                                               contentids[i].value = 
contentItem["id"];
+                                       }
+                                       
document.getElementById("editingDiv").innerHTML =       '<img 
src="${it.staticRootUrl}/contenthub/images/delete_icon_16.png" title="Cancel 
Editing" onClick="javascript:cancelEditing()" />'
+                                                                               
                                                                + " You are 
editing Content Item with title: <b>" + contentItem["title"] + "</b>";
+                                       
document.getElementById("valueTitle").value = contentItem["title"];
+                                       
+                                       //delete already consumed values from 
json representation so that they will not be added to the constraints
+                                       delete contentItem["content"];
+                                       delete contentItem["id"];
+                                       delete contentItem["mimeType"];
+                                       delete contentItem["title"];
+                                       
+                                       for(var p in contentItem) {
+                                               
if(contentItem.hasOwnProperty(p)) {
+                                                       var fieldName = 
p.toString();
+                                                       
if(fieldName.indexOf("_") != -1) {
+                                                               var lastindex = 
fieldName.lastIndexOf("_");
+                                                               fieldName = 
fieldName.substring(0, lastindex);
+                                                       }
+                                                       
addConstraint(fieldName);
+                                                       
document.getElementsByName("fieldText"+counter)[0].value = fieldName;
+                                                       
document.getElementsByName("valueText"+counter)[0].value = 
contentItem[p].substring(1, contentItem[p].length-1);
+                                               }
+                                       }
+                               }       
+                       },
+                       error: function(content) {
+                               alert(result.status + ' ' + result.statusText);
+                       }
+               });
+       }       
+       
+       function deleteContentItem(vlocalid) {
+               var lurl = "${it.publicBaseUri}contenthub/store/content/" + 
vlocalid;
+               $.ajax({
+                       url: lurl,
+                       type: "DELETE",
+                       async: true,
+                       cache: false,
+                       success: function() {
+                               
$("#storeContents").load("${it.publicBaseUri}contenthub/store 
#storeContents>div");
+                       },
+                       error: function() {
+                               alert(result.status + ' ' + result.statusText);
+                       }
+               });
+       }
+       
+       function performSearch() {
+               var lurl = 
"${it.publicBaseUri}contenthub/search/featured?fromStore=\"y\"&queryTerm=" + 
$("#searchKeywords").val();
+               window.location.replace(lurl);
+       }
+       
+</script>
+</@common.page>
+</#escape>

Propchange: incubator/stanbol/trunk/launchers/full/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jan 26 15:37:02 2012
@@ -4,3 +4,4 @@ target
 .settings
 sling
 factstore
+RuleConf

Modified: incubator/stanbol/trunk/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/parent/pom.xml?rev=1236246&r1=1236245&r2=1236246&view=diff
==============================================================================
--- incubator/stanbol/trunk/parent/pom.xml (original)
+++ incubator/stanbol/trunk/parent/pom.xml Thu Jan 26 15:37:02 2012
@@ -662,6 +662,60 @@
         <artifactId>org.apache.stanbol.contenthub.servicesapi</artifactId>
         <version>0.9.0-incubating-SNAPSHOT</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.stanbol</groupId>
+        <artifactId>org.apache.stanbol.contenthub.store.solr</artifactId>
+        <version>0.9.0-incubating-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.stanbol</groupId>
+        <artifactId>org.apache.stanbol.contenthub.web</artifactId>
+        <version>0.9.0-incubating-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.stanbol</groupId>
+        <artifactId>org.apache.stanbol.contenthub.search.solr</artifactId>
+        <version>0.9.0-incubating-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.stanbol</groupId>
+        <artifactId>org.apache.stanbol.contenthub.search.featured</artifactId>
+        <version>0.9.0-incubating-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.stanbol</groupId>
+        <artifactId>org.apache.stanbol.contenthub.search.related</artifactId>
+        <version>0.9.0-incubating-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.stanbol</groupId>
+        <artifactId>org.apache.stanbol.contenthub.crawler.cnn</artifactId>
+        <version>0.9.0-incubating-SNAPSHOT</version>
+      </dependency>
+      
+      <!-- JTidy -->
+      <!-- Contenthub CNN News Crawler needs to parse DOM -->
+      <dependency>
+        <groupId>jtidy</groupId>
+        <artifactId>jtidy</artifactId>
+        <version>4aug2000r7-dev</version>
+        <!--  <type>jar</type>
+        <scope>compile</scope> -->
+      </dependency>
+      
+      <!-- Wordnet -->
+<!--       <dependency> -->
+<!--         <groupId>org.apache.stanbol</groupId> -->
+<!--         <artifactId>edu.smu.tspell.jaws</artifactId> -->
+<!--         <version>1.2</version> -->
+<!--       </dependency> -->
+      <dependency>
+        <groupId>edu.smu.tspell</groupId>
+        <artifactId>jaws</artifactId>
+        <version>1.2</version>
+        <!-- <type>jar</type>
+        <scope>compile</scope> -->
+      </dependency>
 
       <!-- CMS Adapter -->      
       <dependency>
@@ -877,6 +931,11 @@
         <artifactId>rdf.simple.storage</artifactId>
         <version>0.7-incubating-SNAPSHOT</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.clerezza</groupId>
+        <artifactId>rdf.jena.facade</artifactId>
+        <version>0.12-incubating-SNAPSHOT</version>
+      </dependency>
 
       <!-- Commons -->
       <dependency>


Reply via email to