Revision: 19301
          http://sourceforge.net/p/gate/code/19301
Author:   markagreenwood
Date:     2016-05-11 12:44:28 +0000 (Wed, 11 May 2016)
Log Message:
-----------
and now we have a pom we can blow away the ivy.xml

Removed Paths:
-------------
    gate/branches/sawdust2/ivy.xml
    gate/branches/sawdust2/prj.el

Deleted: gate/branches/sawdust2/ivy.xml
===================================================================
--- gate/branches/sawdust2/ivy.xml      2016-05-11 12:41:23 UTC (rev 19300)
+++ gate/branches/sawdust2/ivy.xml      2016-05-11 12:44:28 UTC (rev 19301)
@@ -1,153 +0,0 @@
-<ivy-module version="2.0">
-
-  <info organisation="uk.ac.gate" module="gate-core" revision="8.1-SNAPSHOT">
-    <ivyauthor name="Mark A. Greenwood" />
-    <description homepage="http://gate.ac.uk"; />
-  </info>
- 
-  <!-- by default we want the master artifact and its runtime dependencies
-       for each of the dependencies we include - if we want more/less then it
-       is trivial to specify a conf attribute on the dependency itself -->
-  <configurations defaultconfmapping="required->master,runtime">
-    <conf name="required" visibility="private" description="all these 
dependencies are always needed" />
-    <conf name="compile" extends="required" description="all the required 
stuff plus things only needed for compilation (i.e. javacc)" />
-    <conf name="runtime" extends="required" description="all the required 
stuff plus things needed at runtime (i.e. the tika parsers)" />
-    <conf name="test" extends="runtime,compile" description="we need 
everything if we want to run the tests" />
-    <conf name="all" extends="runtime,compile" description="absolutely every 
dependency we have listed" />
-
-    <!-- these are used if someone else references us -->
-    <conf name="master" />
-    <conf name="default" extends="master,all" />
-  </configurations>
-
-  <dependencies>       
-  
-  <!-- the Aether stuff for dependency resolution - odd to have this in an ivy 
file! -->
-    <dependency org="org.eclipse.aether" name="aether-api" rev="1.1.0" />
-    <dependency org="org.eclipse.aether" name="aether-util" rev="1.1.0" />
-    <dependency org="org.eclipse.aether" name="aether-impl" rev="1.1.0" />
-    <dependency org="org.eclipse.aether" name="aether-connector-basic" 
rev="1.1.0" />
-    <dependency org="org.eclipse.aether" name="aether-transport-file" 
rev="1.1.0" />
-    <dependency org="org.eclipse.aether" name="aether-transport-http" 
rev="1.1.0" />
-    <dependency org="org.eclipse.aether" name="aether-transport-wagon" 
rev="1.1.0" />
-    <dependency org="org.apache.maven" name="maven-aether-provider" 
rev="3.3.9" />
-    <dependency org="org.apache.maven.wagon" name="wagon-ssh" rev="2.10" />
-  
-    <!-- things that we repackage under an alternative package name -->
-    <dependency org="uk.ac.gate" name="gate-asm" rev="5.0.3" 
conf="required->master" />
-    
-    <!-- needed to ensure the same version across configurations -->
-    <dependency org="commons-logging" name="commons-logging" rev="1.1.3" />
-
-    <!-- used for escaping strings in the Annotation Stack and elsewhere -->
-    <dependency org="commons-lang" name="commons-lang" rev="2.6" />
-
-    <!-- used to load files into String variables as well as helping to close 
streams etc. -->
-    <dependency org="commons-io" name="commons-io" rev="2.4" />
-
-    <!-- the logging framework GATE uses -->
-    <dependency org="log4j" name="log4j" rev="1.2.17" />
-
-    <!-- used extensively throughout GATE for processing XML files -->
-    <dependency org="org.jdom" name="jdom" rev="1.1.3"/>
-
-    <!-- used to parse and load HTML documents into GATE -->
-    <dependency org="net.sourceforge.nekohtml" name="nekohtml" rev="1.9.14" />
-
-    <!-- we use Tika to handle most document formats other than XML, HTML and 
TXT -->
-    <dependency org="org.apache.tika" name="tika-parsers" rev="1.7" 
conf="runtime->master,runtime" >
-      <!-- we don't currently use the RSS/ATOM aspects of Tika so we don't 
need ROME -->
-      <exclude org="rome" module="rome" />
-
-      <!-- we don't currently support netCDF documents so we don't need this 
-->
-      <exclude org="edu.ucar" module="netcdf" />
-
-      <!-- we don't use Tika to parse HTML so we don't need it's HTML parser 
-->
-      <exclude org="org.ccil.cowan.tagsoup" module="tagsoup" />
-
-      <!-- we don't use Tika to parse Java classes so we don't need ASM -->
-      <exclude org="asm" module="asm" />
-      <exclude org="org.ow2.asm" module="asm-debug-all" />
-      
-      <!-- we aren't using any of the GUI aspects of tika so we don't need to 
be
-           able to do syntax highlighting -->
-      <exclude org="com.uwyn" module="jhighlight" />
-
-      <!-- we exclude boilerpipe as it isn't required for Tika given the way we
-           currently configure it, and it contains a copy of NekoHTML which 
causes
-           HTML parsing in GATE to change, and the tests to break -->
-      <exclude org="de.l3s.boilerpipe" module="boilerpipe" />
-      
-      <!-- we don't handle audio files so we don't need the following -->
-      <exclude org="org.gagravarr" module="vorbis-java-tika" />
-      <exclude org="org.gagravarr" module="vorbis-java-core" />
-      <exclude org="com.googlecode.mp4parser" module="isoparser" />
-      
-      <!-- no idea what these are used for internally to tika but we don't 
seem to need them -->
-      <exclude org="com.googlecode.juniversalchardet" 
module="juniversalchardet" />
-      <exclude org="org.tukaani" module="xz" />
-      <exclude org="com.adobe.xmp" module="xmpcore" />
-
-      <!-- we are not handling Matlab files so we don't need this -->
-      <exclude org="net.sourceforge.jmatio" module="jmatio" />
-
-      <!-- we are most certainly not supporting the parsing of Outlook PST 
files! -->
-      <exclude org="com.pff" module="java-libpst" />
-
-      <!-- we don't support images so we don't need their metadata -->
-      <exclude org="com.drewnoakes" module="metadata-extractor" />
-    </dependency>
-
-    <!-- We use Woodstox instead of the default Sun StAX implementation as it 
seems to behave better.
-         NOTE: I don't know if this is still the case but it seems safer not 
to break things! -->
-    <dependency org="org.codehaus.woodstox" name="woodstox-core-lgpl" 
rev="4.2.0">
-      <exclude org="javax.xml.stream" module="stax-api" />
-    </dependency>
-
-    <!-- we need Ivy both for processing this file and for creole plugins 
which use the IVY element -->
-    <dependency org="org.apache.ivy" name="ivy" rev="2.3.0" />
-
-    <!-- ANT is used internally by GATE for some tasks, such as the export for 
GATECloud.net -->
-    <dependency org="org.apache.ant" name="ant" rev="1.9.3" />
-        
-    <!--required for loading and saving .gapp files and by sime plugins.
-        we pull in the full XPP3 so we only need XStream's master artifact -->
-    <dependency org="com.thoughtworks.xstream" name="xstream" rev="1.4.7" 
conf="required->master" />
-
-    <!-- XPP3 provides the actual implementation under pinning our use of 
XStream -->
-    <dependency org="xpp3" name="xpp3" rev="1.1.4c" 
conf="runtime->master,runtime" />
-
-    <!-- needed by XSteam at runtime -->
-    <dependency org="jaxen" name="jaxen" rev="1.1.6" conf="runtime->master" />
-
-    <!-- used to parse command line options passed to the GATE GUI -->
-    <dependency org="gnu.getopt" name="java-getopt" rev="1.0.13" />
-
-    <!-- required for Spring Framework support in GATE -->
-    <dependency org="org.springframework" name="spring-aop" rev="2.5.6.SEC01" 
/>
-    
-    <!-- required for outputting documents as JSON -->
-    <dependency org="com.fasterxml.jackson.core" name="jackson-databind" 
rev="2.3.2" />
-    
-    <!-- required for the new controller metadata viewer -->
-    <dependency org="org.xhtmlrenderer" name="flying-saucer-core" rev="9.0.4" 
/>
-
-    <!-- Used for comparing XML files during some of the GATE tests -->
-    <dependency org="xmlunit" name="xmlunit" rev="1.5" conf="required->master" 
/>
-
-    <!-- Used for date and time formatting and parsing -->
-    <dependency org="joda-time" name="joda-time" rev="2.9.2" />
-
-    <!-- Used for testing GATE -->
-    <dependency org="junit" name="junit" rev="4.11" 
conf="compile->master,compile" />
-
-    <!-- exclude stuff that is part of Java 6 core -->
-    <exclude org="xml-apis" module="xml-apis" />
-    <exclude org="stax" module="stax-api" />
-    <exclude org="org.apache.geronimo.specs" 
module="geronimo-stax-api_1.0_spec" />
-    
-    
-    
-  </dependencies>
-
-</ivy-module>

Deleted: gate/branches/sawdust2/prj.el
===================================================================
--- gate/branches/sawdust2/prj.el       2016-05-11 12:41:23 UTC (rev 19300)
+++ gate/branches/sawdust2/prj.el       2016-05-11 12:44:28 UTC (rev 19301)
@@ -1,67 +0,0 @@
-
-(jde-set-project-name "default")
-(jde-set-variables 
- '(jde-run-option-properties nil)
- '(jde-run-option-stack-size (quote ((128 . "kilobytes") (400 . "kilobytes"))))
- '(jde-gen-buffer-templates (quote (("Class" . jde-gen-class) ("Console" . 
jde-gen-console) ("Swing App" . jde-gen-jfc-app))))
- '(jde-compile-option-command-line-args "")
- '(jde-gen-action-listener-template (quote ("'& (P \"Component name: \")" 
"\".addActionListener(new ActionListener() {\" 'n>" "\"public void 
actionPerformed(ActionEvent e) {\" 'n>" "\"}});\" 'n>")))
- '(jde-compile-option-depend nil)
- '(jde-compile-option-optimize nil)
- '(jde-run-option-verify (quote (nil t)))
- '(jde-gen-inner-class-template (quote ("'& \"class \" (P \"Class name: \" 
class)" "(P \"Superclass: \" super t)" "(let ((parent (jde-gen-lookup-named 
'super)))" "(if (not (string= parent \"\"))" "(concat \" extends \" parent))) 
\" {\" 'n>" "\"public \" (s class) \"() {\" 'n> \"}\" 'n> \"}\" 'n>")))
- '(jde-run-read-vm-args nil)
- '(jde-entering-java-buffer-hooks (quote (jde-reload-project-file)))
- '(jde-run-applet-viewer "")
- '(jde-compile-option-debug (quote ("selected" (t nil nil))))
- '(jde-project-file-name "prj.el")
- '(jde-run-option-verbose (quote (nil nil nil)))
- '(jde-run-application-class "")
- '(jde-db-option-vm-args nil)
- '(jde-run-option-heap-size (quote ((1 . "megabytes") (16 . "megabytes"))))
- '(jde-compile-option-target (quote ("1.1")))
- '(jde-appletviewer-option-encoding "")
- '(jde-db-read-vm-args nil)
- '(jde-db-option-heap-profile (quote (nil "./java.hprof" 5 20 "Allocation 
objects")))
- '(jde-db-mode-hook nil)
- '(jde-run-option-garbage-collection (quote (t t)))
- '(jde-compile-option-vm-args nil)
- '(jde-run-applet-doc "")
- '(jde-compile-option-depend-switch (quote ("-Xdepend")))
- '(jde-db-option-java-profile (quote (nil . "./java.prof")))
- '(jde-compile-option-sourcepath nil)
- '(jde-gen-get-set-var-template (quote ("'n>" "(P \"Variable type: \" type) \" 
\"" "(P \"Variable name: \" name) \";\" 'n> 'n>" "\"/**\" 'n>" "\"* Get the 
value of \" (s name) \".\" 'n>" "\"* @return Value of \" (s name) \".\" 'n>" 
"\"*/\" 'n>" "\"public \" (s type) \" get\" (jde-gen-init-cap 
(jde-gen-lookup-named 'name))" "\"() {return \" (s name) \";}\" 'n> 'n>" 
"\"/**\" 'n>" "\"* Set the value of \" (s name) \".\" 'n>" "\"* @param v  Value 
to assign to \" (s name) \".\" 'n>" "\"*/\" 'n>" "\"public void set\" 
(jde-gen-init-cap (jde-gen-lookup-named 'name))" "\"(\" (s type) \"  v) 
{this.\" (s name) \" = v;}\" 'n>")))
- '(jde-compile-option-extdirs nil)
- '(jde-db-option-verify (quote (nil t)))
- '(jde-run-mode-hook nil)
- '(jde-db-option-classpath nil)
- '(jde-compile-option-deprecation nil)
- '(jde-db-startup-commands nil)
- '(jde-gen-boilerplate-function (quote jde-gen-create-buffer-boilerplate))
- '(jde-compile-option-classpath nil)
- '(jde-build-use-make nil)
- '(jde-quote-classpath t)
- '(jde-gen-to-string-method-template (quote ("'&" "\"public String toString() 
{\" 'n>" "\"return super.toString();\" 'n>" "\"}\" 'n>")))
- '(jde-run-read-app-args nil)
- '(jde-db-source-directories nil)
- '(jde-db-option-properties nil)
- '(jde-db-option-stack-size (quote ((128 . "kilobytes") (400 . "kilobytes"))))
- '(jde-db-set-initial-breakpoint t)
- '(jde-run-option-application-args nil)
- '(jde-gen-mouse-listener-template (quote ("'& (P \"Component name: \")" 
"\".addMouseListener(new MouseAdapter() {\" 'n>" "\"public void 
mouseClicked(MouseEvent e) {}\" 'n>" "\"public void mouseEntered(MouseEvent e) 
{}\" 'n>" "\"public void mouseExited(MouseEvent e) {}\" 'n>" "\"public void 
mousePressed(MouseEvent e) {}\" 'n>" "\"public void mouseReleased(MouseEvent e) 
{}});\" 'n>")))
- '(jde-gen-console-buffer-template (quote ("(funcall 
jde-gen-boilerplate-function) 'n" "\"/**\" 'n" "\" * \"" 
"(file-name-nondirectory buffer-file-name) 'n" "\" *\" 'n" "\" *\" 'n" "\" * 
Created: \" (current-time-string) 'n" "\" *\" 'n" "\" * @author \" 
(user-full-name) 'n" "\" * @version\" 'n" "\" */\" 'n>" "'n>" "\"public class 
\"" "(file-name-sans-extension (file-name-nondirectory buffer-file-name))" "\" 
{\" 'n> 'n>" "\"public \"" "(file-name-sans-extension (file-name-nondirectory 
buffer-file-name))" "\"() {\" 'n>" "'n>" "\"}\" 'n>" "'n>" "\"public static 
void main(String[] args) {\" 'n>" "'p 'n>" "\"}\" 'n> 'n>" "\"} // \"" 
"(file-name-sans-extension (file-name-nondirectory buffer-file-name))" "'n>")))
- '(jde-compile-option-directory "")
- '(jde-run-option-vm-args nil)
- '(jde-make-program "make")
- '(jde-compile-option-bootclasspath nil)
- '(jde-use-font-lock t)
- '(jde-db-option-garbage-collection (quote (t t)))
- '(jde-appletviewer-option-vm-args nil)
- '(jde-gen-class-buffer-template (quote ("(funcall 
jde-gen-boilerplate-function) 'n" "\"/**\" 'n" "\" * \"" 
"(file-name-nondirectory buffer-file-name) 'n" "\" *\" 'n" "\" *\" 'n" "\" * 
Created: \" (current-time-string) 'n" "\" *\" 'n" "\" * @author \" 
(user-full-name) 'n" "\" * @version\" 'n" "\" */\" 'n>" "'n>" "\"public class 
\"" "(file-name-sans-extension (file-name-nondirectory buffer-file-name))" "\" 
\" (jde-gen-get-super-class) \" {\" 'n> 'n>" "\"public \"" 
"(file-name-sans-extension (file-name-nondirectory buffer-file-name))" "\"() 
{\" 'n>" "'p 'n>" "\"}\" 'n>" "'n>" "\"} // \"" "(file-name-sans-extension 
(file-name-nondirectory buffer-file-name))" "'n>")))
- '(jde-compiler "javac")
- '(jde-jdk-doc-url "http://www.javasoft.com/products/jdk/1.1/docs/index.html";)
- '(jde-db-debugger (quote ("jdb" . "Executable")))
- '(jde-compile-option-verbose-path nil)
- '(jde-run-option-classpath nil)
- '(jde-key-bindings (quote (("" . jde-compile) ("" . jde-run) ("" . 
jde-db) ("" . jde-build) ("" . jde-run-menu-run-applet) ("" . 
jde-db-menu-debug-applet) ("
-" . bsh) ("" . speedbar-frame-mode) ("" . jde-wiz-implement-interface) 
("
\ No newline at end of file

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to