You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by og...@apache.org on 2011/04/08 13:54:05 UTC

svn commit: r1090215 - in /incubator/stanbol/trunk: ./ contenthub/ contenthub/web/ contenthub/web/src/ contenthub/web/src/main/ contenthub/web/src/main/java/ contenthub/web/src/main/resources/ contenthub/web/src/test/ contenthub/web/src/test/java/ cont...

Author: ogrisel
Date: Fri Apr  8 11:54:04 2011
New Revision: 1090215

URL: http://svn.apache.org/viewvc?rev=1090215&view=rev
Log:
STANBOL-155: placeholder artifact for the content hub endpoint

Added:
    incubator/stanbol/trunk/contenthub/
    incubator/stanbol/trunk/contenthub/web/   (with props)
    incubator/stanbol/trunk/contenthub/web/pom.xml
    incubator/stanbol/trunk/contenthub/web/src/
    incubator/stanbol/trunk/contenthub/web/src/main/
    incubator/stanbol/trunk/contenthub/web/src/main/java/
    incubator/stanbol/trunk/contenthub/web/src/main/resources/
    incubator/stanbol/trunk/contenthub/web/src/test/
    incubator/stanbol/trunk/contenthub/web/src/test/java/
    incubator/stanbol/trunk/contenthub/web/src/test/resources/
Modified:
    incubator/stanbol/trunk/enhancer/jersey/pom.xml
    incubator/stanbol/trunk/pom.xml

Propchange: incubator/stanbol/trunk/contenthub/web/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr  8 11:54:04 2011
@@ -0,0 +1,4 @@
+target
+.settings
+.classpath
+.project

Added: incubator/stanbol/trunk/contenthub/web/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/contenthub/web/pom.xml?rev=1090215&view=auto
==============================================================================
--- incubator/stanbol/trunk/contenthub/web/pom.xml (added)
+++ incubator/stanbol/trunk/contenthub/web/pom.xml Fri Apr  8 11:54:04 2011
@@ -0,0 +1,136 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>0.9-SNAPSHOT</version>
+    <relativePath>../../parent/pom.xml</relativePath>
+  </parent>
+  <artifactId>org.apache.stanbol.contenthub.web</artifactId>
+  <packaging>bundle</packaging>
+
+  <name>Apache Stanbol Content Hub JAX-RS API</name>
+  <description>HTTP endpoint to create and search for content items enriched
+    with enhancer's annotations and links to entities from the entity hub.
+  </description>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/contenthub/web/
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/contentub/web/
+    </developerConnection>
+    <url>http://incubator.apache.org/stanbol/</url>
+  </scm>
+
+  <build>
+    <!-- make it an OSGi bundle -->
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-scr-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.apache.stanbol.contenthub.web.*
+            </Export-Package>
+            <Import-Package>*</Import-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+
+    <!-- dependencies on other IKS modules -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.enhancer.servicesapi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.enhancer.standalone</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.web.base</artifactId>
+    </dependency>
+    <!-- Clerezza dependencies -->
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.rdf.core</artifactId>
+    </dependency>
+
+    <!-- Jersey -->
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.freemarker</groupId>
+      <artifactId>freemarker</artifactId>
+    </dependency>
+    <!-- indirect dependency for freemarker -->
+    <dependency>
+      <groupId>org.codehaus.jettison</groupId>
+      <artifactId>jettison</artifactId>
+    </dependency>
+
+    <!-- generic tax -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+
+    <!-- OSGi tax -->
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.compendium</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.scr.annotations</artifactId>
+    </dependency>
+
+    <!-- for tests -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+  </dependencies>
+
+</project>

Modified: incubator/stanbol/trunk/enhancer/jersey/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/enhancer/jersey/pom.xml?rev=1090215&r1=1090214&r2=1090215&view=diff
==============================================================================
--- incubator/stanbol/trunk/enhancer/jersey/pom.xml (original)
+++ incubator/stanbol/trunk/enhancer/jersey/pom.xml Fri Apr  8 11:54:04 2011
@@ -15,7 +15,7 @@
   <packaging>bundle</packaging>
 
   <name>Apache Stanbol Enhancer Jersey JAX-RS API and front-end</name>
-  <description>To be refactored to org.apache.stanbol.web!</description>
+  <description>To be renamed as org.apache.stanbol.enhancer.web</description>
 
   <scm>
     <connection>

Modified: incubator/stanbol/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/pom.xml?rev=1090215&r1=1090214&r2=1090215&view=diff
==============================================================================
--- incubator/stanbol/trunk/pom.xml (original)
+++ incubator/stanbol/trunk/pom.xml Fri Apr  8 11:54:04 2011
@@ -47,6 +47,7 @@
     <module>commons</module>
     <module>entityhub</module>
     <module>enhancer</module>
+    <module>contenthub/web</module>
     <module>launchers/mini</module>
   </modules>