Author: fchrist
Date: Mon Dec  6 14:56:56 2010
New Revision: 1042668

URL: http://svn.apache.org/viewvc?rev=1042668&view=rev
Log:
* Removed duplicated 'iks-autotagging'
* Added simple Stanbol reactor and parent POM
* Improved Stanbol README.txt file
* Adapted enhancement engines POMs


Added:
    incubator/stanbol/trunk/parent/
    incubator/stanbol/trunk/parent/pom.xml
    incubator/stanbol/trunk/pom.xml
Removed:
    incubator/stanbol/trunk/iks-autotagging/
Modified:
    incubator/stanbol/trunk/README.txt
    incubator/stanbol/trunk/fise/engines/entitytagging/pom.xml
    incubator/stanbol/trunk/fise/engines/langid/pom.xml
    incubator/stanbol/trunk/fise/engines/metaxa/pom.xml
    incubator/stanbol/trunk/fise/engines/zemanta/pom.xml
    incubator/stanbol/trunk/kres/eu.iksproject.kres.parent/pom.xml
    incubator/stanbol/trunk/rick/yard/solr/pom.xml

Modified: incubator/stanbol/trunk/README.txt
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/README.txt?rev=1042668&r1=1042667&r2=1042668&view=diff
==============================================================================
--- incubator/stanbol/trunk/README.txt (original)
+++ incubator/stanbol/trunk/README.txt Mon Dec  6 14:56:56 2010
@@ -1 +1,51 @@
-svn area for the new stanbol podling...
+                      Welcome to Apache Stanbol
+                     ---------------------------
+
+Building Stanbol:
+-----------------
+
+To build Stanbol you need a JDK 1.6 and Maven 2.2.1 installed. You probably
+need
+
+  $ export MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=128M"
+
+Before you can build Stanbol you need to install a few artifacts to your local
+Maven repository. This step is needed at the moment because these artifacts are
+not available via any public Maven repository. Please go to the Stanbol source
+directory and type the following commands:
+
+  $ mvn install:install-file -Dfile=kres/lib/owlapi-3.0.0.jar \
+       -DgroupId=owlapi -DartifactId=owlapi -Dversion=3.0.0 -Dpackaging=jar
+
+  $ mvn install:install-file -Dfile=kres/lib/HermiT.jar \
+       -DgroupId=hermit -DartifactId=hermit -Dversion=1.2.4 -Dpackaging=jar
+
+  $ mvn install:install-file -Dfile=kres/lib/owl-link-1.0.2.jar \
+       -DgroupId=owl-link -DartifactId=owl-link -Dversion=1.0.2 -Dpackaging=jar
+
+Then again in the Stanbol source directory type
+
+  $ mvn install
+
+If you want to skip the tests, add '-DskipTests' to the Maven command.
+
+
+Creating Eclipse Projects:
+--------------------------
+
+Go to Stanbol source directory and type
+
+  $ mvn eclipse:eclipse
+
+If you want to recreate already existing Eclipse projects, you have to delete
+the old ones first by using 'eclipse:clean'.
+
+
+Issue Tracking:
+---------------
+
+Please report bugs at
+  
+  https://issues.apache.org/jira/browse/STANBOL
+
+

Modified: incubator/stanbol/trunk/fise/engines/entitytagging/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/fise/engines/entitytagging/pom.xml?rev=1042668&r1=1042667&r2=1042668&view=diff
==============================================================================
--- incubator/stanbol/trunk/fise/engines/entitytagging/pom.xml (original)
+++ incubator/stanbol/trunk/fise/engines/entitytagging/pom.xml Mon Dec  6 
14:56:56 2010
@@ -25,7 +25,7 @@
        <packaging>bundle</packaging>
        <version>${fise-version}</version>
 
-       <name>FISE Enhancement Engine for RICK ReferencedSites</name>
+       <name>IKS FISE Enhancement Engine : for RICK ReferencedSites</name>
        <description>
                Implementation of an annotation engine that links named entities
         extracted from a text (TextAnnotations) to semantic entities

Modified: incubator/stanbol/trunk/fise/engines/langid/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/fise/engines/langid/pom.xml?rev=1042668&r1=1042667&r2=1042668&view=diff
==============================================================================
--- incubator/stanbol/trunk/fise/engines/langid/pom.xml (original)
+++ incubator/stanbol/trunk/fise/engines/langid/pom.xml Mon Dec  6 14:56:56 2010
@@ -25,7 +25,7 @@
        <version>${fise-version}</version>
        <packaging>bundle</packaging>
 
-       <name>IKS FISE Language Identifier</name>
+       <name>IKS FISE Enhancement Engine : Language Identifier</name>
        <description>identifies a text as: German(de), English(en), French(fr), 
Spanish(es), Italian(it), Swedish(sv), Polish(pl), Dutch(nl), Norwegian(no), 
Finnish(fi), Albanian(sq), Slovakian(sk), Slovenian(sl), Danish(da), 
Hungarian(hu)</description>
 
        <inceptionYear>2010</inceptionYear>

Modified: incubator/stanbol/trunk/fise/engines/metaxa/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/fise/engines/metaxa/pom.xml?rev=1042668&r1=1042667&r2=1042668&view=diff
==============================================================================
--- incubator/stanbol/trunk/fise/engines/metaxa/pom.xml (original)
+++ incubator/stanbol/trunk/fise/engines/metaxa/pom.xml Mon Dec  6 14:56:56 2010
@@ -25,7 +25,7 @@
        <version>${fise-version}</version>
        <packaging>bundle</packaging>
 
-       <name>IKS FISE Metaxa Metadata and Text Extractor</name>
+       <name>IKS FISE Enhancement Engine : Metaxa Metadata and Text 
Extractor</name>
        <description>Extracts metadata and text from a number of document 
formats like pdf, Word doc, etc.</description>
 
        <inceptionYear>2010</inceptionYear>

Modified: incubator/stanbol/trunk/fise/engines/zemanta/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/fise/engines/zemanta/pom.xml?rev=1042668&r1=1042667&r2=1042668&view=diff
==============================================================================
--- incubator/stanbol/trunk/fise/engines/zemanta/pom.xml (original)
+++ incubator/stanbol/trunk/fise/engines/zemanta/pom.xml Mon Dec  6 14:56:56 
2010
@@ -25,7 +25,7 @@
   <packaging>bundle</packaging>
   <version>0.9-SNAPSHOT</version>
 
-  <name>IKS FISE Zemanta Tagging Enhancement Engine</name>
+  <name>IKS FISE Enhancement Engine : Zemanta Tagging</name>
   <description></description>
 
   <inceptionYear>2010</inceptionYear>

Modified: incubator/stanbol/trunk/kres/eu.iksproject.kres.parent/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/eu.iksproject.kres.parent/pom.xml?rev=1042668&r1=1042667&r2=1042668&view=diff
==============================================================================
--- incubator/stanbol/trunk/kres/eu.iksproject.kres.parent/pom.xml (original)
+++ incubator/stanbol/trunk/kres/eu.iksproject.kres.parent/pom.xml Mon Dec  6 
14:56:56 2010
@@ -1,300 +1,303 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!--
+       <!--
     IKS KReS software.
   -->
 <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";>
+       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
 
-  <modelVersion>4.0.0</modelVersion>
+       <modelVersion>4.0.0</modelVersion>
 
-  <groupId>eu.iksproject</groupId>
-  <artifactId>eu.iksproject.kres.parent</artifactId>
-  <packaging>pom</packaging>
-  <version>0.6-SNAPSHOT</version>
-
-  <name>IKS KReS parent POM</name>
-  <description>
-    Parent POM for the KReS project
-  </description>
-
-  <inceptionYear>2010</inceptionYear>
-
-    <build>
-    <plugins>
-
-      <!-- requires Java 6 because Clerezza artefacts are compiled
-       using Java 6 -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-enforcer-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>enforce-java</id>
-            <goals>
-              <goal>enforce</goal>
-            </goals>
-            <configuration>
-              <rules>
-                <!-- Constraint disabled since even fixing the version for
-                the maven eclipse plugin does not seem to make this rule pass
-                <requirePluginVersions/>
-                -->
-                <requireJavaVersion>
-                  <message>
-                    Java 6 or higher is required to compile this module
-                  </message>
-                  <version>1.6</version>
-                </requireJavaVersion>
-              </rules>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
-      <!-- Attach sources for all builds -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-source-plugin</artifactId>
-        <inherited>true</inherited>
-        <executions>
-          <execution>
-            <id>attach-sources</id>
-            <goals>
-              <goal>jar</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-
-    <pluginManagement>
-      <plugins>
-        <!-- Compile for >= Java 5-->
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-compiler-plugin</artifactId>
-          <version>2.3.1</version>
-          <configuration>
-            <source>1.5</source>
-            <target>1.5</target>
-          </configuration>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-dependency-plugin</artifactId>
-          <version>2.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-war-plugin</artifactId>
-          <version>2.1-beta-1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.mortbay.jetty</groupId>
-          <artifactId>maven-jetty-plugin</artifactId>
-          <version>6.1.20</version>
-        </plugin>
-        <plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>build-helper-maven-plugin</artifactId>
-          <version>1.5</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.felix</groupId>
-          <artifactId>maven-bundle-plugin</artifactId>
-          <version>2.0.1</version>
-          <inherited>true</inherited>
-          <configuration>
-            <instructions>
-              <Bundle-Category>KReS</Bundle-Category>
-              <Bundle-DocURL>
-                http://stlab.istc.cnr.it/documents/iks/kres/
-              </Bundle-DocURL>
-              <Bundle-Vendor>IKS project</Bundle-Vendor>
-              <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
-              <_versionpolicy>$${version;===;$...@}}</_versionpolicy>
-            </instructions>
-          </configuration>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.felix</groupId>
-          <artifactId>maven-scr-plugin</artifactId>
-          <version>1.4.2</version>
-          <!--
-             slf4j impl is needed when QDox inspects/loads classes
-              that use a static field for the logger, so that those
-              classes can be loaded.
-          -->
-          <dependencies>
-            <dependency>
-              <groupId>org.slf4j</groupId>
-              <artifactId>slf4j-simple</artifactId>
-              <version>1.5.2</version>
-            </dependency>
-          </dependencies>
-          <executions>
-            <execution>
-              <id>generate-scr-scrdescriptor</id>
-              <goals>
-                <goal>scr</goal>
-              </goals>
-              <configuration>
-                <properties>
-                  <service.vendor>IKS project</service.vendor>
-                </properties>
-              </configuration>
-            </execution>
-          </executions>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-enforcer-plugin</artifactId>
-          <version>1.0-beta-1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.sling</groupId>
-          <artifactId>maven-sling-plugin</artifactId>
-          <version>2.0.4-incubator</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-clean-plugin</artifactId>
-          <version>2.4.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-deploy-plugin</artifactId>
-          <version>2.5</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-install-plugin</artifactId>
-          <version>2.3.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-site-plugin</artifactId>
-          <version>2.1.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-source-plugin</artifactId>
-          <version>2.1.2</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-resources-plugin</artifactId>
-          <version>2.4.3</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-surefire-plugin</artifactId>
-          <version>2.5</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-jar-plugin</artifactId>
-          <version>2.3.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-eclipse-plugin</artifactId>
-          <version>2.8</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-  </build>
-
-  <developers>
-    <!-- TBD -->
-  </developers>
-
-  <dependencyManagement>
-    <dependencies>
-      <dependency>
-        <groupId>javax.servlet</groupId>
-        <artifactId>servlet-api</artifactId>
-        <version>2.4</version>
-        <scope>provided</scope>
-      </dependency>
-      <dependency>
-        <groupId>org.slf4j</groupId>
-        <artifactId>slf4j-api</artifactId>
-        <version>1.5.2</version>
-        <scope>provided</scope>
-      </dependency>
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>4.7</version>
-        <scope>test</scope>
-      </dependency>
-      <dependency>
-        <groupId>org.jmock</groupId>
-        <artifactId>jmock-junit4</artifactId>
-        <version>2.5.1</version>
-        <scope>test</scope>
-      </dependency>
-      <dependency>
-        <groupId>org.slf4j</groupId>
-        <artifactId>slf4j-simple</artifactId>
-        <version>1.5.2</version>
-        <scope>test</scope>
-      </dependency>
-      <dependency>
-        <groupId>org.apache.felix</groupId>
-        <artifactId>org.apache.felix.scr.annotations</artifactId>
-        <version>1.2.0</version>
-      </dependency>
-    </dependencies>
-  </dependencyManagement>
-
-  <profiles>
-    <profile>
-      <id>installBundle</id>
-      <activation>
-        <activeByDefault>false</activeByDefault>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.sling</groupId>
-            <artifactId>maven-sling-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>install-bundle</id>
-                <goals>
-                  <goal>install</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-
-  <!-- needed because of Clerezza dependency -->
-  <repositories>
-    <repository>
-      <id>apache</id>
-      <name>apache repository</name>
-      <snapshots>
-        <updatePolicy>always</updatePolicy>
-        <checksumPolicy>warn</checksumPolicy>
-      </snapshots>
-      <url>http://repository.apache.org/content/groups/snapshots-group</url>
-      <layout>default</layout>
-    </repository>
-    <repository>
-      <id>java.net</id>
-      <url>http://download.java.net/maven/2</url>
-    </repository>
-       <repository> <!-- used for the jdom bundle com.springsource.org.jdom 
(rw) -->
-           <id>com.springsource.repository.bundles.external</id>
-        <name>SpringSource Enterprise Bundle Repository - External Bundle 
Releases</name>
-        <url>http://repository.springsource.com/maven/bundles/external</url>
-       </repository>
-  </repositories>
+       <groupId>eu.iksproject</groupId>
+       <artifactId>eu.iksproject.kres.parent</artifactId>
+       <packaging>pom</packaging>
+       <version>0.6-SNAPSHOT</version>
+
+       <name>IKS KReS parent POM</name>
+       <description>Parent POM for the KReS project</description>
+
+       <inceptionYear>2010</inceptionYear>
+
+       <properties>
+               
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+       </properties>
+
+       <build>
+               <plugins>
+
+                       <!--
+                               requires Java 6 because Clerezza artefacts are 
compiled using Java 6
+                       -->
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-enforcer-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>enforce-java</id>
+                                               <goals>
+                                                       <goal>enforce</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <rules>
+                                                               <!--
+                                                                       
Constraint disabled since even fixing the version for the maven
+                                                                       eclipse 
plugin does not seem to make this rule pass
+                                                                       
<requirePluginVersions/>
+                                                               -->
+                                                               
<requireJavaVersion>
+                                                                       
<message>
+                                                                               
Java 6 or higher is required to compile this module
+                                                       </message>
+                                                                       
<version>1.6</version>
+                                                               
</requireJavaVersion>
+                                                       </rules>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+
+                       <!-- Attach sources for all builds -->
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-source-plugin</artifactId>
+                               <inherited>true</inherited>
+                               <executions>
+                                       <execution>
+                                               <id>attach-sources</id>
+                                               <goals>
+                                                       <goal>jar</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+
+               <pluginManagement>
+                       <plugins>
+                               <!-- Compile for >= Java 5-->
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-compiler-plugin</artifactId>
+                                       <version>2.3.1</version>
+                                       <configuration>
+                                               <source>1.5</source>
+                                               <target>1.5</target>
+                                       </configuration>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-dependency-plugin</artifactId>
+                                       <version>2.1</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-war-plugin</artifactId>
+                                       <version>2.1-beta-1</version>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.mortbay.jetty</groupId>
+                                       
<artifactId>maven-jetty-plugin</artifactId>
+                                       <version>6.1.20</version>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.codehaus.mojo</groupId>
+                                       
<artifactId>build-helper-maven-plugin</artifactId>
+                                       <version>1.5</version>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.felix</groupId>
+                                       
<artifactId>maven-bundle-plugin</artifactId>
+                                       <version>2.0.1</version>
+                                       <inherited>true</inherited>
+                                       <configuration>
+                                               <instructions>
+                                                       
<Bundle-Category>KReS</Bundle-Category>
+                                                       <Bundle-DocURL>
+                                                               
http://stlab.istc.cnr.it/documents/iks/kres/
+                                        </Bundle-DocURL>
+                                                       <Bundle-Vendor>IKS 
project</Bundle-Vendor>
+                                                       
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                                                       
<_versionpolicy>$${version;===;$...@}}</_versionpolicy>
+                                               </instructions>
+                                       </configuration>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.felix</groupId>
+                                       
<artifactId>maven-scr-plugin</artifactId>
+                                       <version>1.4.2</version>
+                                       <!--
+                                               slf4j impl is needed when QDox 
inspects/loads classes that use a
+                                               static field for the logger, so 
that those classes can be loaded.
+                                       -->
+                                       <dependencies>
+                                               <dependency>
+                                                       
<groupId>org.slf4j</groupId>
+                                                       
<artifactId>slf4j-simple</artifactId>
+                                                       <version>1.5.2</version>
+                                               </dependency>
+                                       </dependencies>
+                                       <executions>
+                                               <execution>
+                                                       
<id>generate-scr-scrdescriptor</id>
+                                                       <goals>
+                                                               <goal>scr</goal>
+                                                       </goals>
+                                                       <configuration>
+                                                               <properties>
+                                                                       
<service.vendor>IKS project</service.vendor>
+                                                               </properties>
+                                                       </configuration>
+                                               </execution>
+                                       </executions>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-enforcer-plugin</artifactId>
+                                       <version>1.0-beta-1</version>
+                               </plugin>
+                               <plugin>
+                                       <groupId>org.apache.sling</groupId>
+                                       
<artifactId>maven-sling-plugin</artifactId>
+                                       <version>2.0.4-incubator</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-clean-plugin</artifactId>
+                                       <version>2.4.1</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-deploy-plugin</artifactId>
+                                       <version>2.5</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-install-plugin</artifactId>
+                                       <version>2.3.1</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-site-plugin</artifactId>
+                                       <version>2.1.1</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-source-plugin</artifactId>
+                                       <version>2.1.2</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-resources-plugin</artifactId>
+                                       <version>2.4.3</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-surefire-plugin</artifactId>
+                                       <version>2.5</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-jar-plugin</artifactId>
+                                       <version>2.3.1</version>
+                               </plugin>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-eclipse-plugin</artifactId>
+                                       <version>2.8</version>
+                               </plugin>
+                       </plugins>
+               </pluginManagement>
+       </build>
+
+       <developers>
+               <!-- TBD -->
+       </developers>
+
+       <dependencyManagement>
+               <dependencies>
+                       <dependency>
+                               <groupId>javax.servlet</groupId>
+                               <artifactId>servlet-api</artifactId>
+                               <version>2.4</version>
+                               <scope>provided</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.slf4j</groupId>
+                               <artifactId>slf4j-api</artifactId>
+                               <version>1.5.2</version>
+                               <scope>provided</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>junit</groupId>
+                               <artifactId>junit</artifactId>
+                               <version>4.7</version>
+                               <scope>test</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.jmock</groupId>
+                               <artifactId>jmock-junit4</artifactId>
+                               <version>2.5.1</version>
+                               <scope>test</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.slf4j</groupId>
+                               <artifactId>slf4j-simple</artifactId>
+                               <version>1.5.2</version>
+                               <scope>test</scope>
+                       </dependency>
+                       <dependency>
+                               <groupId>org.apache.felix</groupId>
+                               
<artifactId>org.apache.felix.scr.annotations</artifactId>
+                               <version>1.2.0</version>
+                       </dependency>
+               </dependencies>
+       </dependencyManagement>
+
+       <profiles>
+               <profile>
+                       <id>installBundle</id>
+                       <activation>
+                               <activeByDefault>false</activeByDefault>
+                       </activation>
+                       <build>
+                               <plugins>
+                                       <plugin>
+                                               
<groupId>org.apache.sling</groupId>
+                                               
<artifactId>maven-sling-plugin</artifactId>
+                                               <executions>
+                                                       <execution>
+                                                               
<id>install-bundle</id>
+                                                               <goals>
+                                                                       
<goal>install</goal>
+                                                               </goals>
+                                                       </execution>
+                                               </executions>
+                                       </plugin>
+                               </plugins>
+                       </build>
+               </profile>
+       </profiles>
+
+       <!-- needed because of Clerezza dependency -->
+       <repositories>
+               <repository>
+                       <id>apache</id>
+                       <name>apache repository</name>
+                       <snapshots>
+                               <updatePolicy>always</updatePolicy>
+                               <checksumPolicy>warn</checksumPolicy>
+                       </snapshots>
+                       
<url>http://repository.apache.org/content/groups/snapshots-group</url>
+                       <layout>default</layout>
+               </repository>
+               <repository>
+                       <id>java.net</id>
+                       <url>http://download.java.net/maven/2</url>
+               </repository>
+               <repository> <!-- used for the jdom bundle 
com.springsource.org.jdom (rw) -->
+                       <id>com.springsource.repository.bundles.external</id>
+                       <name>SpringSource Enterprise Bundle Repository - 
External Bundle Releases</name>
+                       
<url>http://repository.springsource.com/maven/bundles/external</url>
+               </repository>
+       </repositories>
 
 </project>

Added: incubator/stanbol/trunk/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/parent/pom.xml?rev=1042668&view=auto
==============================================================================
--- incubator/stanbol/trunk/parent/pom.xml (added)
+++ incubator/stanbol/trunk/parent/pom.xml Mon Dec  6 14:56:56 2010
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+       Apache Stanbol software is licensed under the Apache License, Version 
2.0,
+       see 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>
+
+       <groupId>org.apache.stanbol</groupId>
+       <artifactId>stanbol-parent</artifactId>
+       <packaging>pom</packaging>
+       <version>0.9-SNAPSHOT</version>
+
+       <name>Apache Stanbol : Parent POM</name>
+       <description>Parent POM for the Apache Stanbol project</description>
+
+       <inceptionYear>2010</inceptionYear>
+
+       <scm>
+               
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/parent</connection>
+               
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/parent</developerConnection>
+               <url>http://incubator.apache.org/stanbol/</url>
+       </scm>
+
+       <properties>
+               
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+       </properties>
+
+       <developers>
+               <!-- TBD -->
+       </developers>
+
+</project>

Added: incubator/stanbol/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/pom.xml?rev=1042668&view=auto
==============================================================================
--- incubator/stanbol/trunk/pom.xml (added)
+++ incubator/stanbol/trunk/pom.xml Mon Dec  6 14:56:56 2010
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+       Apache Stanbol software is licensed under the Apache License, Version 
2.0,
+       see 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-SNAPSHOT</version>
+    <relativePath>parent</relativePath>
+  </parent>
+
+  <groupId>org.apache.stanbol</groupId>
+  <artifactId>stanbol-reactor</artifactId>
+  <packaging>pom</packaging>
+  <version>0.9-SNAPSHOT</version>
+
+  <name>Apache Stanbol : Reactor</name>
+  <description>
+    Pseudo project to build the complete stanbol project
+  </description>
+
+  <inceptionYear>2010</inceptionYear>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/
+    </developerConnection>
+    <url>http://incubator.apache.org/stanbol/</url>
+  </scm>
+
+  <modules>
+    <module>parent</module>
+
+    <module>rick</module>
+    <module>fise</module>
+    <module>kres</module>
+  </modules>
+</project>

Modified: incubator/stanbol/trunk/rick/yard/solr/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/rick/yard/solr/pom.xml?rev=1042668&r1=1042667&r2=1042668&view=diff
==============================================================================
--- incubator/stanbol/trunk/rick/yard/solr/pom.xml (original)
+++ incubator/stanbol/trunk/rick/yard/solr/pom.xml Mon Dec  6 14:56:56 2010
@@ -139,6 +139,12 @@
       <groupId>org.apache.felix</groupId>
       <artifactId>org.apache.felix.metatype</artifactId>
       <version>1.0.4</version>
+      <exclusions>
+       <exclusion>
+               <groupId>org.apache.felix</groupId>
+               <artifactId>org.osgi.foundation</artifactId>
+       </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.felix</groupId>


Reply via email to