Author: fchrist
Date: Fri May 20 12:38:21 2011
New Revision: 1125354

URL: http://svn.apache.org/viewvc?rev=1125354&view=rev
Log:
Added missing dependency to Freemarker - without this dep the Eclipse projects 
are not generated correctly

Modified:
    incubator/stanbol/trunk/owl/pom.xml

Modified: incubator/stanbol/trunk/owl/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/owl/pom.xml?rev=1125354&r1=1125353&r2=1125354&view=diff
==============================================================================
--- incubator/stanbol/trunk/owl/pom.xml (original)
+++ incubator/stanbol/trunk/owl/pom.xml Fri May 20 12:38:21 2011
@@ -1,176 +1,188 @@
 <?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. -->
+  <!--
+    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";>
+  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>
 
-       <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>org.apache.stanbol.owl</artifactId>
-       <packaging>bundle</packaging>
+  <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>org.apache.stanbol.owl</artifactId>
+  <packaging>bundle</packaging>
 
-       <name>Apache Stanbol OWL libraries</name>
-       <description>
+  <name>Apache Stanbol OWL libraries</name>
+  <description>
                Includes the libraries and utilities for managing 
                constructs of the OWL and OWL 2 languages.
        </description>
 
-       <inceptionYear>2010</inceptionYear>
+  <inceptionYear>2010</inceptionYear>
 
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.felix</groupId>
-                               <artifactId>maven-bundle-plugin</artifactId>
-                               <extensions>true</extensions>
-                               <configuration>
-                                       <instructions>
-                                               <Import-Package>
-                                                       com.hp.hpl.jena.*,
-                                                       
org.apache.clerezza.rdf.*,
-                                                       javax.*,
-                                                       org.xml.sax.*,
-                                                       de.uulm.ecs.ai.*,
-                                                       
org.semanticweb.owlapi.*,
-                                                       org.coode.*,
-                                                       uk.ac.manchester.cs.*,
-                                                       
com.clarkparsia.owlapi.*,
-                                                       org.slf4j.*,
-                                                       *
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Import-Package>
+              com.hp.hpl.jena.*,
+              org.apache.clerezza.rdf.*,
+              javax.*,
+              org.xml.sax.*,
+              de.uulm.ecs.ai.*,
+              org.semanticweb.owlapi.*,
+              org.coode.*,
+              uk.ac.manchester.cs.*,
+              com.clarkparsia.owlapi.*,
+              org.slf4j.*,
+              *
                                                </Import-Package>
-                                               <Export-Package>
-                                                       de.uulm.ecs.ai.*,
-                                                       
org.semanticweb.owlapi.*,
-                                                       org.coode.*,
-                                                       uk.ac.manchester.cs.*,
-                                                       
com.clarkparsia.owlapi.*,
-                                                       
org.apache.stanbol.owl.*;version=${stanbol-version}
+            <Export-Package>
+              de.uulm.ecs.ai.*,
+              org.semanticweb.owlapi.*,
+              org.coode.*,
+              uk.ac.manchester.cs.*,
+              com.clarkparsia.owlapi.*,
+              org.apache.stanbol.owl.*;version=${stanbol-version}
                                                </Export-Package>
-                                               <Private-Package />
-                                               <_nouses>true</_nouses>
-                                       </instructions>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-compiler-plugin</artifactId>
-                               <configuration>
-                                       <source>1.6</source>
-                                       <target>1.6</target>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.felix</groupId>
-                               <artifactId>maven-scr-plugin</artifactId>
-                       </plugin>
-               </plugins>
-       </build>
-
-
-       <dependencies>
-
-               <!-- OSGi deps -->
-               <dependency>
-                       <groupId>org.osgi</groupId>
-                       <artifactId>org.osgi.core</artifactId>
-               </dependency>
-
-
-               <!-- Stanbol deps -->
-               <dependency>
-               <groupId>org.apache.stanbol</groupId>
-               <artifactId>org.apache.stanbol.commons.web.base</artifactId>
-       </dependency>
-               <!-- OWL deps -->
-               <dependency>
-                       <groupId>com.hp.hpl.jena</groupId>
-                       <artifactId>jena</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>com.hp.hpl.jena</groupId>
-                       <artifactId>arq</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>owlapi</groupId>
-                       <artifactId>owlapi</artifactId>
-                       <version>3.0.0</version>
-               </dependency>
-
-               <!-- Persistence deps -->
-               <dependency>
-                       <groupId>org.apache.clerezza</groupId>
-                       <artifactId>org.apache.clerezza.rdf.core</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.clerezza</groupId>
-                       
<artifactId>org.apache.clerezza.rdf.jena.parser</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.clerezza</groupId>
-                       
<artifactId>org.apache.clerezza.rdf.jena.serializer</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.clerezza</groupId>
-                       <artifactId>org.apache.clerezza.rdf.rdfjson</artifactId>
-               </dependency>
-
-               <!-- Web Service deps -->
-               <dependency>
-                       <groupId>javax.ws.rs</groupId>
-                       <artifactId>jsr311-api</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>javax.servlet</groupId>
-                       <artifactId>servlet-api</artifactId>
-               </dependency>
-
-               <!-- Diagnostics deps -->
-               <dependency>
-                       <groupId>org.slf4j</groupId>
-                       <artifactId>slf4j-log4j12</artifactId>
-               </dependency>
-               <dependency> <!-- see also the log4j.properties in 
src/main/resources -->
-                       <groupId>log4j</groupId>
-                       <artifactId>log4j</artifactId>
-               </dependency>
-
-               <!-- Testing deps -->
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.slf4j</groupId>
-                       <artifactId>slf4j-log4j12</artifactId>
-                       <scope>test</scope>
-               </dependency>
-
-       </dependencies>
-
-
-       <repositories>
-               <repository>
-                       <id>stlab-cnr-repo</id>
-                       <url>http://stlab.istc.cnr.it/software/maven/repo</url>
-               </repository>
-       </repositories>
+            <Private-Package />
+            <_nouses>true</_nouses>
+          </instructions>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-scr-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+
+
+  <dependencies>
+
+    <!-- OSGi deps -->
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.core</artifactId>
+    </dependency>
+
+    <!-- Stanbol deps -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.web.base</artifactId>
+    </dependency>
+
+    <!-- Freemarker -->
+    <dependency>
+      <groupId>org.freemarker</groupId>
+      <artifactId>freemarker</artifactId>
+    </dependency>
+    <!-- indirect dependency for freemarker -->
+    <dependency>
+      <groupId>org.codehaus.jettison</groupId>
+      <artifactId>jettison</artifactId>
+    </dependency>
+
+
+    <!-- OWL deps -->
+    <dependency>
+      <groupId>com.hp.hpl.jena</groupId>
+      <artifactId>jena</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.hp.hpl.jena</groupId>
+      <artifactId>arq</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>owlapi</groupId>
+      <artifactId>owlapi</artifactId>
+      <version>3.0.0</version>
+    </dependency>
+
+    <!-- Persistence deps -->
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.rdf.core</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.rdf.jena.parser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.rdf.jena.serializer</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>org.apache.clerezza.rdf.rdfjson</artifactId>
+    </dependency>
+
+    <!-- Web Service deps -->
+    <dependency>
+      <groupId>javax.ws.rs</groupId>
+      <artifactId>jsr311-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+    </dependency>
+
+    <!-- Diagnostics deps -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+    </dependency>
+    <dependency> <!-- see also the log4j.properties in src/main/resources -->
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+
+    <!-- Testing deps -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+  </dependencies>
+
+
+  <repositories>
+    <repository>
+      <id>stlab-cnr-repo</id>
+      <url>http://stlab.istc.cnr.it/software/maven/repo</url>
+    </repository>
+  </repositories>
 
 </project>


Reply via email to