|
From: <va...@us...> - 2013-09-26 16:03:11
|
Revision: 16942
http://sourceforge.net/p/gate/code/16942
Author: valyt
Date: 2013-09-26 16:03:07 +0000 (Thu, 26 Sep 2013)
Log Message:
-----------
Made the ML plugin into its own Eclipse project.
Changed the output folder to 'classes' to align with the current convention.
Modified Paths:
--------------
gate/trunk/plugins/Machine_Learning/build.xml
Added Paths:
-----------
gate/trunk/plugins/Machine_Learning/.classpath
gate/trunk/plugins/Machine_Learning/.project
gate/trunk/plugins/Machine_Learning/.settings/
gate/trunk/plugins/Machine_Learning/.settings/org.eclipse.jdt.core.prefs
Property Changed:
----------------
gate/trunk/plugins/Machine_Learning/
Index: gate/trunk/plugins/Machine_Learning
===================================================================
--- gate/trunk/plugins/Machine_Learning 2013-09-26 15:10:36 UTC (rev 16941)
+++ gate/trunk/plugins/Machine_Learning 2013-09-26 16:03:07 UTC (rev 16942)
Property changes on: gate/trunk/plugins/Machine_Learning
___________________________________________________________________
Modified: svn:ignore
## -1,4 +1,4 ##
-build
+classes
machinelearning.jar
mltests.jar
TEST*.xml
Added: gate/trunk/plugins/Machine_Learning/.classpath
===================================================================
--- gate/trunk/plugins/Machine_Learning/.classpath (rev 0)
+++ gate/trunk/plugins/Machine_Learning/.classpath 2013-09-26 16:03:07 UTC (rev 16942)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="lib" path="lib/maxent-2.4.0.jar"/>
+ <classpathentry kind="lib" path="lib/troveForMaxent.jar"/>
+ <classpathentry kind="lib" path="lib/weka-3.4.6.jar"/>
+ <classpathentry kind="lib" path="machinelearning.jar"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+ <classpathentry combineaccessrules="false" kind="src" path="/GATE"/>
+ <classpathentry kind="output" path="classes"/>
+</classpath>
Property changes on: gate/trunk/plugins/Machine_Learning/.classpath
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: gate/trunk/plugins/Machine_Learning/.project
===================================================================
--- gate/trunk/plugins/Machine_Learning/.project (rev 0)
+++ gate/trunk/plugins/Machine_Learning/.project 2013-09-26 16:03:07 UTC (rev 16942)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>gate-plugin-machine-learning</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
Property changes on: gate/trunk/plugins/Machine_Learning/.project
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: gate/trunk/plugins/Machine_Learning/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- gate/trunk/plugins/Machine_Learning/.settings/org.eclipse.jdt.core.prefs (rev 0)
+++ gate/trunk/plugins/Machine_Learning/.settings/org.eclipse.jdt.core.prefs 2013-09-26 16:03:07 UTC (rev 16942)
@@ -0,0 +1,11 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.debug.lineNumber=generate
+org.eclipse.jdt.core.compiler.debug.localVariable=generate
+org.eclipse.jdt.core.compiler.debug.sourceFile=generate
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.6
Property changes on: gate/trunk/plugins/Machine_Learning/.settings/org.eclipse.jdt.core.prefs
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: gate/trunk/plugins/Machine_Learning/build.xml
===================================================================
--- gate/trunk/plugins/Machine_Learning/build.xml 2013-09-26 15:10:36 UTC (rev 16941)
+++ gate/trunk/plugins/Machine_Learning/build.xml 2013-09-26 16:03:07 UTC (rev 16942)
@@ -5,7 +5,7 @@
<property file="build.properties" />
<property name="src" location="src"/>
- <property name="build" location="build"/>
+ <property name="build" location="classes"/>
<property name="dist" location="dist"/>
<property name="jar.location" location="machinelearning.jar" />
<property name="test.jar.location" location="mltests.jar" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|