You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by ch...@apache.org on 2012/10/20 14:33:21 UTC

svn commit: r1400428 - in /incubator/ctakes/trunk: ctakes-clinical-pipeline/src/main/resources/ ctakes-core/src/main/resources/log4j.xml ctakes-distribution/src/main/assembly/bin.xml

Author: chenpei
Date: Sat Oct 20 12:33:21 2012
New Revision: 1400428

URL: http://svn.apache.org/viewvc?rev=1400428&view=rev
Log:
Fixed the includes in fileset in bin.xml in distribution module
moved default log4j configuration to core

Added:
    incubator/ctakes/trunk/ctakes-core/src/main/resources/log4j.xml
      - copied unchanged from r1400425, incubator/ctakes/trunk/ctakes-clinical-pipeline/src/main/resources/log4j.xml
Removed:
    incubator/ctakes/trunk/ctakes-clinical-pipeline/src/main/resources/
Modified:
    incubator/ctakes/trunk/ctakes-distribution/src/main/assembly/bin.xml

Modified: incubator/ctakes/trunk/ctakes-distribution/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/incubator/ctakes/trunk/ctakes-distribution/src/main/assembly/bin.xml?rev=1400428&r1=1400427&r2=1400428&view=diff
==============================================================================
--- incubator/ctakes/trunk/ctakes-distribution/src/main/assembly/bin.xml (original)
+++ incubator/ctakes/trunk/ctakes-distribution/src/main/assembly/bin.xml Sat Oct 20 12:33:21 2012
@@ -136,10 +136,12 @@
 
 		<!-- Copy a default log4j config that could be overrided during runtime -->
 		<fileSet>
-			<directory>../ctakes-clinical-pipeline/src/main/resources</directory>
+			<directory>../ctakes-core/src/main/resources</directory>
 			<fileMode>644</fileMode>
 			<directoryMode>755</directoryMode>
-			<include>log4j.xml</include>
+			<includes>
+				<include>log4j.xml</include>
+			</includes>
 			<outputDirectory>config</outputDirectory>
 		</fileSet>