Revision: 19983
          http://sourceforge.net/p/gate/code/19983
Author:   markagreenwood
Date:     2017-01-25 13:03:14 +0000 (Wed, 25 Jan 2017)
Log Message:
-----------
fixed the launcher so the Log4J properties files is found again, and stopped 
aether from loading slf4j for no good reason

Modified Paths:
--------------
    gate/branches/sawdust2/gate-core/build/launcher/src/gate/Launcher.java
    gate/branches/sawdust2/gate-core/pom.xml

Added Paths:
-----------
    gate/branches/sawdust2/gate-core/bin/gateLauncher.jar

Added: gate/branches/sawdust2/gate-core/bin/gateLauncher.jar
===================================================================
(Binary files differ)

Index: gate/branches/sawdust2/gate-core/bin/gateLauncher.jar
===================================================================
--- gate/branches/sawdust2/gate-core/bin/gateLauncher.jar       2017-01-25 
09:52:04 UTC (rev 19982)
+++ gate/branches/sawdust2/gate-core/bin/gateLauncher.jar       2017-01-25 
13:03:14 UTC (rev 19983)

Property changes on: gate/branches/sawdust2/gate-core/bin/gateLauncher.jar
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Modified: gate/branches/sawdust2/gate-core/build/launcher/src/gate/Launcher.java
===================================================================
--- gate/branches/sawdust2/gate-core/build/launcher/src/gate/Launcher.java      
2017-01-25 09:52:04 UTC (rev 19982)
+++ gate/branches/sawdust2/gate-core/build/launcher/src/gate/Launcher.java      
2017-01-25 13:03:14 UTC (rev 19983)
@@ -144,11 +144,12 @@
         if(!"".equals(entry)) addUrlsForFile(new File(entry), urls);
       }
     }
-    File binDir = new File(gateHome, "target");
+    File binDir = new File(gateHome, "bin");
     // gate/bin (for log4j.properties)
     addUrlsForFile(binDir, urls);
     // bin/gate.jar
-    addUrlsForFile(new File(binDir, "*"), urls);
+    File targetDir = new File(gateHome, "target");
+    addUrlsForFile(new File(targetDir, "*"), urls);
     // and lib/*.jar
     File libDir = new File(gateHome, "lib");
     addUrlsForFile(new File(libDir, "*"), urls);

Modified: gate/branches/sawdust2/gate-core/pom.xml
===================================================================
--- gate/branches/sawdust2/gate-core/pom.xml    2017-01-25 09:52:04 UTC (rev 
19982)
+++ gate/branches/sawdust2/gate-core/pom.xml    2017-01-25 13:03:14 UTC (rev 
19983)
@@ -116,6 +116,12 @@
                        <artifactId>aether-transport-http</artifactId>
                        <version>1.1.0</version>
                        <scope>compile</scope>
+                       <exclusions>
+                               <exclusion>
+                                       <groupId>org.slf4j</groupId>
+                                       <artifactId>jcl-over-slf4j</artifactId>
+                               </exclusion>
+                       </exclusions>
                </dependency>
 
                <dependency>

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


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
GATE-cvs mailing list
GATE-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to