You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by ja...@apache.org on 2013/05/07 18:48:36 UTC

svn commit: r1479980 - in /ctakes/trunk/ctakes-template-filler: ./ .classpath .project pom.xml src/ src/main/ src/main/java/ src/main/resources/ src/test/ src/test/java/ src/test/resources/ target/ target/classes/ target/test-classes/

Author: james-masanz
Date: Tue May  7 16:48:36 2013
New Revision: 1479980

URL: http://svn.apache.org/r1479980
Log:
initial commit as a sub project after using Modules->Create... against parent (trunk) pom

Added:
    ctakes/trunk/ctakes-template-filler/
    ctakes/trunk/ctakes-template-filler/.classpath   (with props)
    ctakes/trunk/ctakes-template-filler/.project   (with props)
    ctakes/trunk/ctakes-template-filler/pom.xml   (with props)
    ctakes/trunk/ctakes-template-filler/src/
    ctakes/trunk/ctakes-template-filler/src/main/
    ctakes/trunk/ctakes-template-filler/src/main/java/
    ctakes/trunk/ctakes-template-filler/src/main/resources/
    ctakes/trunk/ctakes-template-filler/src/test/
    ctakes/trunk/ctakes-template-filler/src/test/java/
    ctakes/trunk/ctakes-template-filler/src/test/resources/
    ctakes/trunk/ctakes-template-filler/target/
    ctakes/trunk/ctakes-template-filler/target/classes/
    ctakes/trunk/ctakes-template-filler/target/test-classes/

Added: ctakes/trunk/ctakes-template-filler/.classpath
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-template-filler/.classpath?rev=1479980&view=auto
==============================================================================
--- ctakes/trunk/ctakes-template-filler/.classpath (added)
+++ ctakes/trunk/ctakes-template-filler/.classpath Tue May  7 16:48:36 2013
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/classes" path="src/main/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>

Propchange: ctakes/trunk/ctakes-template-filler/.classpath
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ctakes/trunk/ctakes-template-filler/.project
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-template-filler/.project?rev=1479980&view=auto
==============================================================================
--- ctakes/trunk/ctakes-template-filler/.project (added)
+++ ctakes/trunk/ctakes-template-filler/.project Tue May  7 16:48:36 2013
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>ctakes-template-filler</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.m2e.core.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.eclipse.m2e.core.maven2Nature</nature>
+	</natures>
+</projectDescription>

Propchange: ctakes/trunk/ctakes-template-filler/.project
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ctakes/trunk/ctakes-template-filler/pom.xml
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-template-filler/pom.xml?rev=1479980&view=auto
==============================================================================
--- ctakes/trunk/ctakes-template-filler/pom.xml (added)
+++ ctakes/trunk/ctakes-template-filler/pom.xml Tue May  7 16:48:36 2013
@@ -0,0 +1,11 @@
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.ctakes</groupId>
+    <artifactId>ctakes</artifactId>
+    <version>3.1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>ctakes-template-filler</artifactId>
+  <name>ctakes-template-filler</name>
+  <description>Fill CEM-based templates</description>
+</project>
\ No newline at end of file

Propchange: ctakes/trunk/ctakes-template-filler/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain