You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by su...@apache.org on 2011/12/30 10:26:50 UTC

svn commit: r1225778 - in /incubator/stanbol/trunk/contenthub/store: ./ clerezza/ clerezza/pom.xml inmemory/ inmemory/pom.xml pom.xml solr/ solr/pom.xml

Author: suat
Date: Fri Dec 30 09:26:49 2011
New Revision: 1225778

URL: http://svn.apache.org/viewvc?rev=1225778&view=rev
Log:
STANBOL-441:
-Applied Anil's patch. It contains initial structure for different Store implementations.

Added:
    incubator/stanbol/trunk/contenthub/store/
    incubator/stanbol/trunk/contenthub/store/clerezza/
    incubator/stanbol/trunk/contenthub/store/clerezza/pom.xml
    incubator/stanbol/trunk/contenthub/store/inmemory/
    incubator/stanbol/trunk/contenthub/store/inmemory/pom.xml
    incubator/stanbol/trunk/contenthub/store/pom.xml
    incubator/stanbol/trunk/contenthub/store/solr/
    incubator/stanbol/trunk/contenthub/store/solr/pom.xml

Added: incubator/stanbol/trunk/contenthub/store/clerezza/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/contenthub/store/clerezza/pom.xml?rev=1225778&view=auto
==============================================================================
--- incubator/stanbol/trunk/contenthub/store/clerezza/pom.xml (added)
+++ incubator/stanbol/trunk/contenthub/store/clerezza/pom.xml Fri Dec 30 09:26:49 2011
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 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. -->
+<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>org.apache.stanbol.contenthub.parent</artifactId>
+		<version>0.9.0-incubating-SNAPSHOT</version>
+		<relativePath>../../parent</relativePath>
+	</parent>
+
+	<artifactId>org.apache.stanbol.contenthub.store.clerezza</artifactId>
+	<packaging>bundle</packaging>
+
+	<name>Apache Stanbol Contenthub Clerezza Store Implementation</name>
+	<description>Persists documents into the Clerezza Store</description>
+	
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<extensions>true</extensions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-scr-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</build>
+	<dependencies>
+
+	</dependencies>
+</project>

Added: incubator/stanbol/trunk/contenthub/store/inmemory/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/contenthub/store/inmemory/pom.xml?rev=1225778&view=auto
==============================================================================
--- incubator/stanbol/trunk/contenthub/store/inmemory/pom.xml (added)
+++ incubator/stanbol/trunk/contenthub/store/inmemory/pom.xml Fri Dec 30 09:26:49 2011
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 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. -->
+<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>org.apache.stanbol.contenthub.parent</artifactId>
+		<version>0.9.0-incubating-SNAPSHOT</version>
+		<relativePath>../../parent</relativePath>
+	</parent>
+
+	<artifactId>org.apache.stanbol.contenthub.store.inmemory</artifactId>
+	<packaging>bundle</packaging>
+
+	<name>Apache Stanbol Contenthub InMemory Store Implementation</name>
+	<description>Persists documents into the InMemory Store (lives in memory)</description>
+	
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<extensions>true</extensions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-scr-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</build>
+	<dependencies>
+
+	</dependencies>
+</project>

Added: incubator/stanbol/trunk/contenthub/store/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/contenthub/store/pom.xml?rev=1225778&view=auto
==============================================================================
--- incubator/stanbol/trunk/contenthub/store/pom.xml (added)
+++ incubator/stanbol/trunk/contenthub/store/pom.xml Fri Dec 30 09:26:49 2011
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   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.
+-->
+<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>org.apache.stanbol.contenthub.parent</artifactId>
+		<version>0.9.0-incubating-SNAPSHOT</version>
+		<relativePath>../parent</relativePath>
+	</parent>
+
+	<artifactId>org.apache.stanbol.contenthub.store.reactor</artifactId>
+	<packaging>pom</packaging>
+
+	<name>Apache Stanbol Contenthub Store Reactor</name>
+	<description>
+    Pseudo project to build the Contenthub Store
+    </description>
+
+	<inceptionYear>2011</inceptionYear>
+
+	<scm>
+		<connection>
+				  scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/contenthub/store
+    </connection>
+		<developerConnection>
+				  scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/contenthub/store
+    </developerConnection>
+	</scm>
+
+	<modules>
+		<module>solr</module>
+		<module>clerezza</module>
+		<module>inmemory</module>
+	</modules>
+</project>

Added: incubator/stanbol/trunk/contenthub/store/solr/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/contenthub/store/solr/pom.xml?rev=1225778&view=auto
==============================================================================
--- incubator/stanbol/trunk/contenthub/store/solr/pom.xml (added)
+++ incubator/stanbol/trunk/contenthub/store/solr/pom.xml Fri Dec 30 09:26:49 2011
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 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. -->
+<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>org.apache.stanbol.contenthub.parent</artifactId>
+		<version>0.9.0-incubating-SNAPSHOT</version>
+		<relativePath>../../parent</relativePath>
+	</parent>
+
+	<artifactId>org.apache.stanbol.contenthub.store.solr</artifactId>
+	<packaging>bundle</packaging>
+
+	<name>Apache Stanbol Contenthub Solr Store</name>
+
+	<description>Given target core, persists text based documents into an Embedded Solr Instance</description>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<extensions>true</extensions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-scr-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</build>
+	<dependencies>
+	</dependencies>
+</project>