You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2011/07/26 19:22:17 UTC

svn commit: r1151180 - in /incubator/lcf/trunk/connectors: cmis/pom.xml pom.xml

Author: kwright
Date: Tue Jul 26 17:22:16 2011
New Revision: 1151180

URL: http://svn.apache.org/viewvc?rev=1151180&view=rev
Log:
Fix for CONNECTORS-228.

Added:
    incubator/lcf/trunk/connectors/cmis/pom.xml   (with props)
Modified:
    incubator/lcf/trunk/connectors/pom.xml

Added: incubator/lcf/trunk/connectors/cmis/pom.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/connectors/cmis/pom.xml?rev=1151180&view=auto
==============================================================================
--- incubator/lcf/trunk/connectors/cmis/pom.xml (added)
+++ incubator/lcf/trunk/connectors/cmis/pom.xml Tue Jul 26 17:22:16 2011
@@ -0,0 +1,77 @@
+<?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/xsd/maven-4.0.0.xsd">
+	<parent>
+		<groupId>org.apache.manifoldcf</groupId>
+		<artifactId>mcf-connectors</artifactId>
+		<version>0.3.0-SNAPSHOT</version>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	
+	<developers>
+		<developer>
+			<name>Piergiorgio Lucidi</name>
+			<organization>Sourcesense</organization>
+			<organizationUrl>http://www.sourcesense.com</organizationUrl>
+			<url>http://www.open4dev.com</url>
+		</developer>
+	</developers>
+	
+	<artifactId>mcf-cmis-connector</artifactId>
+	<name>ManifoldCF - Connectors - CMIS</name>
+
+	<build>
+		<sourceDirectory>${basedir}/connector/src/main/java</sourceDirectory>
+		<testSourceDirectory>${basedir}/connector/src/test/java</testSourceDirectory>
+	</build>
+
+	<dependencies>
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<artifactId>mcf-core</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<artifactId>mcf-agents</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<artifactId>mcf-pull-agent</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<artifactId>mcf-ui-core</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+		<dependency>
+    		<groupId>org.apache.chemistry.opencmis</groupId>
+    		<artifactId>chemistry-opencmis-client-impl</artifactId>
+    		<version>0.4.0</version>
+ 		</dependency>
+ 		<dependency>
+    		<groupId>commons-lang</groupId>
+    		<artifactId>commons-lang</artifactId>
+    		<version>2.6</version>
+		</dependency>
+	</dependencies>
+</project>
\ No newline at end of file

Propchange: incubator/lcf/trunk/connectors/cmis/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/lcf/trunk/connectors/pom.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/connectors/pom.xml?rev=1151180&r1=1151179&r2=1151180&view=diff
==============================================================================
--- incubator/lcf/trunk/connectors/pom.xml (original)
+++ incubator/lcf/trunk/connectors/pom.xml Tue Jul 26 17:22:16 2011
@@ -44,6 +44,7 @@
     <module>rss</module>
     <module>solr</module>
     <module>webcrawler</module>
+    <module>cmis</module>
   </modules>
 
 </project>