You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by rw...@apache.org on 2013/02/05 14:46:12 UTC

svn commit: r1442583 - in /stanbol/trunk/commons/ldpathtemplate: README.md pom.xml src/main/java/org/apache/stanbol/commons/ldpathtemplate/

Author: rwesten
Date: Tue Feb  5 13:46:12 2013
New Revision: 1442583

URL: http://svn.apache.org/viewvc?rev=1442583&view=rev
Log:
removed LdRenderer: refactored to the BundleTemplateLoader in the o.a.s.commons.web.viewable module

Removed:
    stanbol/trunk/commons/ldpathtemplate/src/main/java/org/apache/stanbol/commons/ldpathtemplate/
Modified:
    stanbol/trunk/commons/ldpathtemplate/README.md
    stanbol/trunk/commons/ldpathtemplate/pom.xml

Modified: stanbol/trunk/commons/ldpathtemplate/README.md
URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/ldpathtemplate/README.md?rev=1442583&r1=1442582&r2=1442583&view=diff
==============================================================================
--- stanbol/trunk/commons/ldpathtemplate/README.md (original)
+++ stanbol/trunk/commons/ldpathtemplate/README.md Tue Feb  5 13:46:12 2013
@@ -15,7 +15,9 @@
    limitations under the License.
 -->
 
-LDPath template rendering service
+LDpath Template
 ===========
 
-Provides a service to render GraphNodes using an LDPath template
+This module exports a LDpath template version compatible with the LDpath version used by Apache Stanbol.
+
+__TODO:__ Remove this module after upgrading LDpath to a version where also ldpath-templage is present in maven central. This is the case for LDpath version >= 0.9.12 

Modified: stanbol/trunk/commons/ldpathtemplate/pom.xml
URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/ldpathtemplate/pom.xml?rev=1442583&r1=1442582&r2=1442583&view=diff
==============================================================================
--- stanbol/trunk/commons/ldpathtemplate/pom.xml (original)
+++ stanbol/trunk/commons/ldpathtemplate/pom.xml Tue Feb  5 13:46:12 2013
@@ -53,6 +53,13 @@
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
         <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              at.newmedialab.ldpath.template.*;version=0.9.5
+            </Export-Package>
+          </instructions>
+        </configuration>
       </plugin>
     </plugins>
   </build>
@@ -63,43 +70,21 @@
       <artifactId>slf4j-api</artifactId>
     </dependency>
     <dependency>
-      <groupId>commons-io</groupId>
-      <artifactId>commons-io</artifactId>
+      <groupId>org.freemarker</groupId>
+      <artifactId>freemarker</artifactId>
     </dependency>
-    <dependency>
-  		<groupId>org.apache.clerezza</groupId>
-  		<artifactId>rdf.ontologies</artifactId>
-  	</dependency>
-    <dependency>
-    	<groupId>org.apache.clerezza</groupId>
-    	<artifactId>rdf.utils</artifactId>
-    </dependency>
-   
-    <dependency>
-      <groupId>org.apache.felix</groupId>
-      <artifactId>org.apache.felix.scr.annotations</artifactId>
-    </dependency>
-    
+       
     <dependency>
       <groupId>at.newmedialab.ldpath</groupId>
       <artifactId>ldpath-core-bundle</artifactId>
     </dependency>
-    <dependency>
-       <groupId>org.freemarker</groupId>
-       <artifactId>freemarker</artifactId>
-    </dependency>
-    <!-- integrated for now
+    <!-- not present in Maven Central for this version
     <dependency>
       <groupId>at.newmedialab.ldpath</groupId>
       <artifactId>ldpath-template</artifactId>
 	    <version>0.9.3-SNAPSHOT</version>
 	  </dependency>
 	  -->
-	  <dependency>
-      <groupId>org.apache.stanbol</groupId>
-      <artifactId>org.apache.stanbol.commons.ldpath.clerezza</artifactId>
-      <version>0.11.0</version>
-    </dependency>
 
   </dependencies>
 </project>