Return-Path: X-Original-To: apmail-incubator-ctakes-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-ctakes-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 E0F9DD3FE for ; Tue, 30 Oct 2012 22:48:34 +0000 (UTC) Received: (qmail 65834 invoked by uid 500); 30 Oct 2012 22:48:34 -0000 Delivered-To: apmail-incubator-ctakes-commits-archive@incubator.apache.org Received: (qmail 65805 invoked by uid 500); 30 Oct 2012 22:48:34 -0000 Mailing-List: contact ctakes-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ctakes-dev@incubator.apache.org Delivered-To: mailing list ctakes-commits@incubator.apache.org Received: (qmail 65797 invoked by uid 99); 30 Oct 2012 22:48:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Oct 2012 22:48:34 +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; Tue, 30 Oct 2012 22:48:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 0CBB72388A4A; Tue, 30 Oct 2012 22:47:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1403908 [1/2] - in /incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root: BUILDING build_step1.properties build_step1.xml build_step2.properties build_step2.xml build_step3.xml Date: Tue, 30 Oct 2012 22:47:40 -0000 To: ctakes-commits@incubator.apache.org From: james-masanz@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121030224741.0CBB72388A4A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: james-masanz Date: Tue Oct 30 22:47:40 2012 New Revision: 1403908 URL: http://svn.apache.org/viewvc?rev=1403908&view=rev Log: (empty) Added: incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/BUILDING incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.properties (with props) incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.xml (with props) incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step2.properties (with props) incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step2.xml (with props) incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step3.xml (with props) Added: incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/BUILDING URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/files%20for%20pipeline%20root/BUILDING?rev=1403908&view=auto ============================================================================== --- incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/BUILDING (added) +++ incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/BUILDING Tue Oct 30 22:47:40 2012 @@ -0,0 +1,35 @@ + +This information relates to building ctakes-2.6-incubating + +First, check out all projects from SVN. +For example, assertion and chunker are separate projects. + +There are three ant scripts used to build cTAKES. The ant scripts +can be found in project 'files for pipeline root'. + +The ant scripts rely on ant-contrib.jar and on xmltask.jar, +which are separate downloads. +They also depend on UIMA, which is a separate download available +from http://uima.apache.org/ + +The three ant scripts are: + + build_step1.xml: Generate type system (jcasgen) and compile code. + + build_step2.xml: Reorganize directories so there is a single bin + directory, so all descriptors are within a single + subtree (under cTAKESdesc), and so all resources + are within a single subtree (under resources). + + build_step3.xml: Create a single jar file with all .class files + from bin and from all dependent jars. + +Script build_step1 relies on values within build_step1.properties +Script build_step2 relies on values within build_step2.properties + +Update those properties files for your environment. + +Script build_step3 relies on the basedir value within build_script3.xml + +Update the basedir value for your environment + \ No newline at end of file Added: incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.properties URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/files%20for%20pipeline%20root/build_step1.properties?rev=1403908&view=auto ============================================================================== --- incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.properties (added) +++ incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.properties Tue Oct 30 22:47:40 2012 @@ -0,0 +1,18 @@ +# Please do not comment or remove the following line. +RELEASE_VERSION=2.6-incubating + +# UIMA_HOME is the same as your environment variable +# when you installed Apache UIMA. +# No trailing slash/backslash. +# This is optional, if not set, build.xml +# will read from your environment variable. +UIMA_HOME=C:/Apps/ApacheSoftwareFoundation/uima/uimaj-2.4.0-bin + + +# ECLIPSE_HOME is where you installed Eclipse IDE. +# No trailing slash/backslash. +# This is optional, if not set, build.xml +# will read from your environment variable. +# This is only useful if you are going to +# use Eclipse as your IDE after compiling. +ECLIPSE_HOME=C:/Apps/eclipse-java-helios-win32/eclipse Propchange: incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.xml URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/files%20for%20pipeline%20root/build_step1.xml?rev=1403908&view=auto ============================================================================== --- incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.xml (added) +++ incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.xml Tue Oct 30 22:47:40 2012 @@ -0,0 +1,917 @@ + + + + + Generate types and optionally compile cTAKES. + Default target is generate_types. + The target named all generates type system, compiles all projects, and generates javadoc. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cTAKES ${pipeline.version} Java API Documentation]]> + + + + + + + + + + + + + + + + + + + + cTAKES ${pipeline.version} Java API Documentation]]> + + + + + + + + + + + + cTAKES ${pipeline.version} Java API Documentation]]> + + + + + + + + + cTAKES ${pipeline.version} Java API Documentation]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step1.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step2.properties URL: http://svn.apache.org/viewvc/incubator/ctakes/branches/SHARPn-cTAKES/files%20for%20pipeline%20root/build_step2.properties?rev=1403908&view=auto ============================================================================== --- incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step2.properties (added) +++ incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step2.properties Tue Oct 30 22:47:40 2012 @@ -0,0 +1,10 @@ +uima.dir=/Apps/ApacheSoftwareFoundation/uima/uimaj-2.4.0-bin +eclipse.home=/Apps/eclipse-java-helios-win32/eclipse +# CTAKES_HOME is the output directory +CTAKES_HOME=C:\\cTAKES\\2.6\\building-2.6\\cTAKES-2.6-incubating.alpha-005 +workspace.home=C:/Apps_data/Workspaces/Apache_cTAKES +typeSystem.target=${CTAKES_HOME}/cTAKESdesc/typesystem/cTAKESTypes.xml +typeSystem.dir=${CTAKES_HOME}/cTAKESdesc/typesystem +projectList=common-type-system,chunker,clinical documents pipeline,context dependent tokenizer,core,dependency parser,dictionary lookup,document preprocessor,Drug NER,LVG,NE contexts,PAD term spotter,POS tagger,SideEffect,smoking status,Constituency Parser,coref-resolver,assertion,relation-extractor + +tempDir=/Apps/_data_/Temp \ No newline at end of file Propchange: incubator/ctakes/branches/SHARPn-cTAKES/files for pipeline root/build_step2.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain