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 2016/11/23 00:38:00 UTC

svn commit: r1770900 - in /manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo: ./ build.xml pom.xml

Author: kwright
Date: Wed Nov 23 00:38:00 2016
New Revision: 1770900

URL: http://svn.apache.org/viewvc?rev=1770900&view=rev
Log:
Add build file

Added:
    manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/build.xml   (with props)
Modified:
    manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/   (props changed)
    manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/pom.xml

Propchange: manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Nov 23 00:38:00 2016
@@ -0,0 +1,10 @@
+build
+dist
+doc
+target
+test-output
+test-derby-output
+test-postgresql-output
+test-HSQLDB-output
+test-HSQLDBext-output
+test-mysql-output

Added: manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/build.xml?rev=1770900&view=auto
==============================================================================
--- manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/build.xml (added)
+++ manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/build.xml Wed Nov 23 00:38:00 2016
@@ -0,0 +1,56 @@
+<!--
+ 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 name="nuxeo" default="all">
+
+    <property environment="env"/>
+    <condition property="mcf-dist" value="${env.MCFDISTPATH}">
+        <isset property="env.MCFDISTPATH"/>
+    </condition>
+    <property name="abs-dist" location="../../dist"/>
+    <condition property="mcf-dist" value="${abs-dist}">
+        <not>
+            <isset property="env.MCFDISTPATH"/>
+        </not>
+    </condition>
+
+    <import file="${mcf-dist}/connector-build.xml"/>
+
+    <path id="connector-classpath">
+        <path refid="mcf-connector-build.connector-classpath"/>
+        <fileset dir="../../lib">
+              <include name="guava-*.jar" />
+        </fileset>
+    </path>
+
+    <target name="lib" depends="mcf-connector-build.lib,precompile-check" if="canBuild">
+        <mkdir dir="dist/lib"/>
+        <copy todir="dist/lib">
+            <fileset dir="../../lib">
+              <include name="guava-*.jar" />
+            </fileset>
+        </copy>
+    </target>
+
+    <target name="deliver-connector" depends="mcf-connector-build.deliver-connector">
+        <antcall target="general-add-repository-connector">
+            <param name="connector-label" value="Nuxeo"/>
+            <param name="connector-class" value="org.apache.manifoldcf.crawler.connectors.NuxeoRepositoryConnector"/>
+        </antcall>
+    </target>
+
+</project>

Propchange: manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/build.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/pom.xml?rev=1770900&r1=1770899&r2=1770900&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/pom.xml (original)
+++ manifoldcf/branches/CONNECTORS-1290/connectors/nuxeo/pom.xml Wed Nov 23 00:38:00 2016
@@ -301,7 +301,7 @@
     <dependency>
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
-      <version>15.0</version>
+      <version>${guava.version}</version>
     </dependency>
     
     <!-- Testing dependencies -->