Author: suat
Date: Sun Oct 16 11:08:43 2011
New Revision: 1184794
URL: http://svn.apache.org/viewvc?rev=1184794&view=rev
Log:
STANBOL-348:
-Added a maven project to generate war file corresponding to the full launcher
by benefiting from the example at
http://svn.apache.org/repos/asf/sling/trunk/launchpad/testing-war/
-Added full-war module to default build process
Added:
incubator/stanbol/trunk/launchers/full-war/ (with props)
incubator/stanbol/trunk/launchers/full-war/pom.xml
incubator/stanbol/trunk/launchers/full-war/src/
incubator/stanbol/trunk/launchers/full-war/src/main/
incubator/stanbol/trunk/launchers/full-war/src/main/bundles/
incubator/stanbol/trunk/launchers/full-war/src/main/bundles/list.xml
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/README
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.sling.commons.log.LogManager.factory.config-solrlogconfig.config
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.commons.solr.impl.DefaultSolrDirectoryManager.cfg
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/web.xml
Modified:
incubator/stanbol/trunk/pom.xml
Propchange: incubator/stanbol/trunk/launchers/full-war/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Oct 16 11:08:43 2011
@@ -0,0 +1 @@
+target
Added: incubator/stanbol/trunk/launchers/full-war/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/pom.xml?rev=1184794&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/full-war/pom.xml (added)
+++ incubator/stanbol/trunk/launchers/full-war/pom.xml Sun Oct 16 11:08:43 2011
@@ -0,0 +1,179 @@
+<?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>stanbol-parent</artifactId>
+ <version>0.9.0-incubating-SNAPSHOT</version>
+ <relativePath>../../parent</relativePath>
+ </parent>
+
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.launchers.full-war</artifactId>
+ <packaging>war</packaging>
+
+ <name>Apache Stanbol Launcher - Full WAR</name>
+ <description>WAR packaging for Apache Stanbol Full
Launcher</description>
+
+ <scm>
+ <connection>
+
scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/full/
+ </connection>
+ <developerConnection>
+
scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/full/
+ </developerConnection>
+ <url>http://incubator.apache.org/stanbol/</url>
+ </scm>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>maven-launchpad-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>prepare-package</id>
+ <goals>
+
<goal>prepare-package</goal>
+ </goals>
+ <configuration>
+
<includeDefaultBundles>true</includeDefaultBundles>
+ <!-- Standalone jar
requires an OSGi http service implementation -->
+ <jarWebSupport>
+
<groupId>org.apache.felix</groupId>
+
<artifactId>org.apache.felix.http.jetty</artifactId>
+
<version>2.2.0</version>
+ </jarWebSupport>
+ <defaultBundleList>
+
<groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.launchers.basebundlelist</artifactId>
+
<version>0.9.0-incubating-SNAPSHOT</version>
+ </defaultBundleList>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <!-- make the generated
jar runnable -->
+
<addClasspath>true</addClasspath>
+
<mainClass>org.apache.sling.launchpad.app.Main</mainClass>
+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-war-plugin</artifactId>
+ <configuration>
+
<packagingExcludes>WEB-INF/classes/META-INF/*</packagingExcludes>
+ <warName>stanbol</warName>
+ <webResources>
+ <resource>
+ <directory>
+
${project.build.directory}/launchpad-bundles
+ </directory>
+
<targetPath>WEB-INF</targetPath>
+ </resource>
+ <resource>
+
<directory>${project.build.outputDirectory}/META-INF</directory>
+
<targetPath>META-INF</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <!-- License provided in
src/main/resources/README -->
+
<exclude>src/main/resources/resources/config/org.apache.stanbol.commons.solr.impl.DefaultSolrDirectoryManager.cfg</exclude>
+
<exclude>src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg</exclude>
+
<exclude>src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config</exclude>
+
<exclude>src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config</exclude>
+
<exclude>src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.launchpad.base</artifactId>
+ <version>2.3.0</version>
+ <classifier>webapp</classifier>
+ <type>war</type>
+ <scope>runtime</scope>
+ </dependency>
+
+ <!-- Stanbol CMS Adapter Bundle List -->
+ <dependency>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.cmsadapter.bundlelist</artifactId>
+ <type>partialbundlelist</type>
+ </dependency>
+
+ <!-- Stanbol Contenthub Bundle List -->
+ <dependency>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.contenthub.bundlelist</artifactId>
+ <type>partialbundlelist</type>
+ </dependency>
+
+ <!-- Stanbol Data Bundle List -->
+ <dependency>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.data.bundlelist</artifactId>
+ <type>partialbundlelist</type>
+ </dependency>
+
+ <!-- Stanbol Enhancer Bundle List -->
+ <dependency>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.enhancer.bundlelist</artifactId>
+ <type>partialbundlelist</type>
+ </dependency>
+
+ <!-- Stanbol Entityhub Bundle List -->
+ <dependency>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.entityhub.bundlelist</artifactId>
+ <type>partialbundlelist</type>
+ </dependency>
+
+ <!-- Stanbol Ontology Manager Bundle List -->
+ <dependency>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.ontologymanager.bundlelist</artifactId>
+ <type>partialbundlelist</type>
+ </dependency>
+
+ <!-- Stanbol Rules Bundle List -->
+ <dependency>
+ <groupId>org.apache.stanbol</groupId>
+
<artifactId>org.apache.stanbol.rules.bundlelist</artifactId>
+ <type>partialbundlelist</type>
+ </dependency>
+ </dependencies>
+</project>
Added: incubator/stanbol/trunk/launchers/full-war/src/main/bundles/list.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/src/main/bundles/list.xml?rev=1184794&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/full-war/src/main/bundles/list.xml (added)
+++ incubator/stanbol/trunk/launchers/full-war/src/main/bundles/list.xml Sun
Oct 16 11:08:43 2011
@@ -0,0 +1,106 @@
+<?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.
+-->
+ <!--
+ List of initial bundles for the Stanbol Sling-based standalone
launcher.
+ -->
+<bundles>
+
+ <!-- *********************************************************************
+ start level 10 TO 19 reserved for required libraries
+ (internal and external)
+ *********************************************************************
-->
+ <!-- General-purpose libraries -->
+ <startLevel level="10">
+ <bundle> <!-- only used by the Contenthub -->
+ <groupId>eu.medsea.mimeutil</groupId>
+ <artifactId>mime-util</artifactId>
+ <version>2.1.3</version>
+ </bundle>
+ <bundle> <!-- used by langid -->
+ <groupId>org.apache.tika</groupId>
+ <artifactId>tika-core</artifactId>
+ <version>0.9</version>
+ </bundle>
+ <bundle> <!-- only used by the Factstore -->
+ <groupId>org.apache.derby</groupId>
+ <artifactId>derby</artifactId>
+ <version>10.7.1.1</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Jersey -->
+ <startLevel level="15">
+ <bundle>
+ <groupId>com.sun.jersey</groupId>
+ <artifactId>jersey-client</artifactId>
+ <version>1.7</version>
+ </bundle>
+ </startLevel>
+
+ <!-- Stanbol Commons -->
+ <startLevel level="17">
+ <!-- The common web interface -->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.commons.web.sparql</artifactId>
+ <version>0.9.0-incubating-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- *********************************************************************
+ start level 20 TO 24 reserved for Stanbol Framework
+ (Enhancer, Entityhub, Contenthub, Factstore ... incl. Web Fragments)
+ *********************************************************************
-->
+
+ <!-- FactStore -->
+ <startLevel level="20">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.factstore</artifactId>
+ <version>0.9.0-incubating-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- KReS -->
+ <startLevel level="22">
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.owl</artifactId>
+ <version>0.9.0-incubating-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- *********************************************************************
+ start level 25 TO 29 reserved for Stanbol plug-ins
+ (currently the Enhancement Engines)
+ *********************************************************************
-->
+
+ <startLevel level="26">
+ <!-- The Content-Editable based UI for Enhancing Text written on a Webpage
-->
+ <bundle>
+ <groupId>org.apache.stanbol</groupId>
+ <artifactId>org.apache.stanbol.commons.web.vie</artifactId>
+ <version>0.9.0-incubating-SNAPSHOT</version>
+ </bundle>
+ </startLevel>
+
+ <!-- *********************************************************************
+ start level >= 30 are unused
+ *********************************************************************
-->
+
+</bundles>
Added: incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/README
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/README?rev=1184794&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/README
(added)
+++ incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/README
Sun Oct 16 11:08:43 2011
@@ -0,0 +1,23 @@
+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.
+
+The following files are provided under the Apache License, Version 2.0:
+
+resources/config/org.apache.stanbol.commons.solr.impl.DefaultSolrDirectoryManager.cfg
+resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
+resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
+resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config
+resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config
+
Added:
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.sling.commons.log.LogManager.factory.config-solrlogconfig.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.sling.commons.log.LogManager.factory.config-solrlogconfig.config?rev=1184794&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.sling.commons.log.LogManager.factory.config-solrlogconfig.config
(added)
+++
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.sling.commons.log.LogManager.factory.config-solrlogconfig.config
Sun Oct 16 11:08:43 2011
@@ -0,0 +1,4 @@
+org.apache.sling.commons.log.pattern="{0,date,dd.MM.yyyy\ HH:mm:ss.SSS}\
*{4}*\ [{2}]\ {3}\ {5}"
+org.apache.sling.commons.log.names=["org.apache.solr"]
+org.apache.sling.commons.log.level="warn"
+org.apache.sling.commons.log.file="logs/error.log"
\ No newline at end of file
Added:
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.commons.solr.impl.DefaultSolrDirectoryManager.cfg
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.commons.solr.impl.DefaultSolrDirectoryManager.cfg?rev=1184794&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.commons.solr.impl.DefaultSolrDirectoryManager.cfg
(added)
+++
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.commons.solr.impl.DefaultSolrDirectoryManager.cfg
Sun Oct 16 11:08:43 2011
@@ -0,0 +1 @@
+org.apache.stanbol.commons.solr.managedSolrDir=${user.dir}/sling/entityhub/solrYard/indexes
Added:
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config?rev=1184794&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config
(added)
+++
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config
Sun Oct 16 11:08:43 2011
@@ -0,0 +1,8 @@
+org.apache.stanbol.enhancer.engines.entitytagging.nameField="name"
+org.apache.stanbol.enhancer.engines.entitytagging.personType="Person"
+org.apache.stanbol.enhancer.engines.entitytagging.personState=B"true"
+org.apache.stanbol.enhancer.engines.entitytagging.referencedSiteId="local"
+org.apache.stanbol.enhancer.engines.entitytagging.placeState=B"true"
+org.apache.stanbol.enhancer.engines.entitytagging.organisationState=B"true"
+org.apache.stanbol.enhancer.engines.entitytagging.organisationType="Organization"
+org.apache.stanbol.enhancer.engines.entitytagging.placeType="Place"
Added:
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config?rev=1184794&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
(added)
+++
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config
Sun Oct 16 11:08:43 2011
@@ -0,0 +1,8 @@
+org.apache.stanbol.entityhub.description="The\ entityhub\ holding\ all\
locally\ managed\ entities"
+org.apache.stanbol.entityhub.id="entityhub"
+org.apache.stanbol.entityhub.name="Entityhub"
+org.apache.stanbol.entityhub.defaultSymbolState="proposed"
+org.apache.stanbol.entityhub.defaultMappingState="proposed"
+org.apache.stanbol.entityhub.mapping.entityhub=["|\
@\=null;en;de;fr;it","rdfs:label","rdfs:label\ >\
entityhub:label","rdfs:comment","rdfs:comment\ >\
entityhub:description","rdf:type\ |\ d\=entityhub:ref","owl:sameAs\ |\
d\=entityhub:ref","dc:*","dc:title\ >\ entityhub:label","dc:description\ >\
entityhub:description","dc-elements:*","dc-elements:title\ >\
entityhub:label","dc-elements:description\ >\ entityhub:description","geo:lat\
|\ d\=xsd:double","geo:long\ |\ d\=xsd:double","geo:alt\ |\
d\=xsd:int;xsd:float","skos:*","skos:prefLabel\ \ >\
entityhub:label","skos:definition\ >\ entityhub:description","skos:note\ >\
entityhub:description","skos:broader\ |\ d\=entityhub:ref","skos:narrower\ |\
d\=entityhub:ref","skos:related\ |\ d\=entityhub:ref","skos:subject\ |\
d\=entityhub:ref","skos:inScheme\ |\ d\=entityhub:ref","foaf:*","foaf:name\ >\
entityhub:label","foaf:homepage\ |\ d\=xsd:anyURI","foaf:depiction\ |\
d\=xsd:anyURI","foaf:img\ |\ d\=xsd:anyURI","foaf:logo\ |\ d
\=xsd:anyURI","foaf:page\ |\ d\=xsd:anyURI"]
+org.apache.stanbol.entityhub.yard.entityhubYardId="entityhubYard"
+org.apache.stanbol.entityhub.prefix="urn:org.apache.stanbol:entityhub:"
Added:
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config?rev=1184794&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config
(added)
+++
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config
Sun Oct 16 11:08:43 2011
@@ -0,0 +1,8 @@
+org.apache.stanbol.entityhub.yard.maxQueryResultNumber=I"-1"
+org.apache.stanbol.entityhub.yard.solr.maxBooleanClauses=I"1024"
+org.apache.stanbol.entityhub.yard.description="The\ Yard\ used\ by\ the\
Entityhub\ to\ store\ the\ data"
+org.apache.stanbol.entityhub.yard.solr.solrUri="entityhub"
+org.apache.stanbol.entityhub.yard.defaultQueryResultNumber=I"-1"
+org.apache.stanbol.entityhub.yard.name="Entityhub\ Yard"
+org.apache.stanbol.entityhub.yard.id="entityhubYard"
+org.apache.stanbol.entityhub.yard.solr.multiYardIndexLayout="false"
Added:
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg?rev=1184794&view=auto
==============================================================================
---
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
(added)
+++
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg
Sun Oct 16 11:08:43 2011
@@ -0,0 +1,15 @@
+# Example default OSGi config that's loaded
+# at startup if Sling's org.apache.sling.launchpad.installer
+# bundle is active.
+#
+# The filename defines the config PID.
+
+# Factory configs should be named like foo.bar-X.cfg
+# whereo.foo.bar is the factory PID and X a unique value
+# for that PID. The actual config PID is then automatically
+# generated PID, and the value of X is stored as an alias
+# property in the configuration.
+
+message=This test config should be loaded at startup
+
+anotherValue = This is AnotherValue.
\ No newline at end of file
Added:
incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/web.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/web.xml?rev=1184794&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/web.xml
(added)
+++ incubator/stanbol/trunk/launchers/full-war/src/main/webapp/WEB-INF/web.xml
Sun Oct 16 11:08:43 2011
@@ -0,0 +1,37 @@
+<?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.
+-->
+<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
+ <display-name>Stanbol Full Web Application</display-name>
+
+ <!-- The Felix Http Service Listener Proxy for HTTP Session events -->
+ <listener>
+ <listener-class>
+ org.apache.sling.launchpad.webapp.SlingSessionListener
+ </listener-class>
+ </listener>
+
+ <servlet>
+ <display-name>Sling Servlet</display-name>
+ <servlet-name>sling</servlet-name>
+
<servlet-class>org.apache.sling.launchpad.webapp.SlingServlet</servlet-class>
+ </servlet>
+
+ <!-- Default Mapping for the Context -->
+ <servlet-mapping>
+ <servlet-name>sling</servlet-name>
+ <url-pattern>/*</url-pattern>
+ </servlet-mapping>
+</web-app>
Modified: incubator/stanbol/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/pom.xml?rev=1184794&r1=1184793&r2=1184794&view=diff
==============================================================================
--- incubator/stanbol/trunk/pom.xml (original)
+++ incubator/stanbol/trunk/pom.xml Sun Oct 16 11:08:43 2011
@@ -94,6 +94,7 @@
<module>launchers/stable</module>
<module>launchers/stateless</module>
<module>launchers/full</module>
+ <module>launchers/full-war</module>
<module>integration-tests</module>
</modules>
</profile>