Return-Path: X-Original-To: apmail-incubator-connectors-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-connectors-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 939109ACC for ; Thu, 23 Feb 2012 23:08:21 +0000 (UTC) Received: (qmail 81622 invoked by uid 500); 23 Feb 2012 23:08:21 -0000 Delivered-To: apmail-incubator-connectors-commits-archive@incubator.apache.org Received: (qmail 81583 invoked by uid 500); 23 Feb 2012 23:08:21 -0000 Mailing-List: contact connectors-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: connectors-dev@incubator.apache.org Delivered-To: mailing list connectors-commits@incubator.apache.org Received: (qmail 81576 invoked by uid 99); 23 Feb 2012 23:08:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Feb 2012 23:08:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Feb 2012 23:08:19 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 1F31923888CD; Thu, 23 Feb 2012 23:08:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1293018 - in /incubator/lcf/branches/CONNECTORS-288: ./ connectors/elasticsearch/ connectors/elasticsearch/test-materials-proprietary/ tests/elasticsearch/ Date: Thu, 23 Feb 2012 23:07:59 -0000 To: connectors-commits@incubator.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120223230800.1F31923888CD@eris.apache.org> Author: kwright Date: Thu Feb 23 23:07:59 2012 New Revision: 1293018 URL: http://svn.apache.org/viewvc?rev=1293018&view=rev Log: Get the ant tests being called correctly for elasticsearch. Added: incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/README.txt (with props) incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/test-materials-proprietary/ (with props) Modified: incubator/lcf/branches/CONNECTORS-288/build.xml incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/ (props changed) incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/build.xml incubator/lcf/branches/CONNECTORS-288/tests/elasticsearch/ (props changed) incubator/lcf/branches/CONNECTORS-288/tests/elasticsearch/build.xml Modified: incubator/lcf/branches/CONNECTORS-288/build.xml URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-288/build.xml?rev=1293018&r1=1293017&r2=1293018&view=diff ============================================================================== --- incubator/lcf/branches/CONNECTORS-288/build.xml (original) +++ incubator/lcf/branches/CONNECTORS-288/build.xml Thu Feb 23 23:07:59 2012 @@ -66,6 +66,9 @@ + + + @@ -1497,18 +1500,30 @@ - + + - - + + + + + + + + + + + + + @@ -2372,6 +2387,7 @@ Use Apache Forrest version forrest-0.9-d + Propchange: incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Thu Feb 23 23:07:59 2012 @@ -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: incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/README.txt URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/README.txt?rev=1293018&view=auto ============================================================================== --- incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/README.txt (added) +++ incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/README.txt Thu Feb 23 23:07:59 2012 @@ -0,0 +1,19 @@ +# 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. + +To test this connector, copy the contents of the unpacked elastic search binary's +lib folder into this directory, and use the "ant test" target for the standard ant build. +You can read more about the process on the "how-to-build-and-deploy.html" +documentation page. Propchange: incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/README.txt ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/README.txt ------------------------------------------------------------------------------ svn:keywords = Id Modified: incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/build.xml URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/build.xml?rev=1293018&r1=1293017&r2=1293018&view=diff ============================================================================== --- incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/build.xml (original) +++ incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/build.xml Thu Feb 23 23:07:59 2012 @@ -19,4 +19,11 @@ + + + + + + + Propchange: incubator/lcf/branches/CONNECTORS-288/connectors/elasticsearch/test-materials-proprietary/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Thu Feb 23 23:07:59 2012 @@ -0,0 +1 @@ +elasticsearch* Propchange: incubator/lcf/branches/CONNECTORS-288/tests/elasticsearch/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Thu Feb 23 23:07:59 2012 @@ -0,0 +1,7 @@ +target +build +test-derby-output +test-HSQLDB-output +test-HSQLDBext-output +test-postgresql-output +test-mysql-output Modified: incubator/lcf/branches/CONNECTORS-288/tests/elasticsearch/build.xml URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-288/tests/elasticsearch/build.xml?rev=1293018&r1=1293017&r2=1293018&view=diff ============================================================================== --- incubator/lcf/branches/CONNECTORS-288/tests/elasticsearch/build.xml (original) +++ incubator/lcf/branches/CONNECTORS-288/tests/elasticsearch/build.xml Thu Feb 23 23:07:59 2012 @@ -17,42 +17,49 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - - + + - - - - - - - - - - - - + + + + + + + + + + + + - + - - + +