|
From: <lac...@us...> - 2007-10-04 12:54:19
|
Revision: 49
http://td2jira.svn.sourceforge.net/td2jira/?rev=49&view=rev
Author: lacostej
Date: 2007-10-04 05:54:23 -0700 (Thu, 04 Oct 2007)
Log Message:
-----------
Copy jacob.dll locally before running
Modified Paths:
--------------
trunk/td2jira/build.xml
trunk/td2jira/src/td2jira/Sync.java
Modified: trunk/td2jira/build.xml
===================================================================
--- trunk/td2jira/build.xml 2007-10-04 12:41:54 UTC (rev 48)
+++ trunk/td2jira/build.xml 2007-10-04 12:54:23 UTC (rev 49)
@@ -22,7 +22,8 @@
<target name="run_sync">
<echo>Syncing TD to JIRA ...</echo>
- <java dir="${basedir}/lib" classname="td2jira.Sync" failonerror="true" fork="true" maxmemory="1024m">
+ <copy file="${basedir}/lib/jacob.dll" todir="."/>
+ <java dir="${basedir}" classname="td2jira.Sync" failonerror="true" fork="true" maxmemory="1024m">
<sysproperty key="com.jacob.autogc" value="true"/>
<classpath refid="build.path"/>
</java>
Modified: trunk/td2jira/src/td2jira/Sync.java
===================================================================
--- trunk/td2jira/src/td2jira/Sync.java 2007-10-04 12:41:54 UTC (rev 48)
+++ trunk/td2jira/src/td2jira/Sync.java 2007-10-04 12:54:23 UTC (rev 49)
@@ -22,6 +22,11 @@
import td2jira.td.api.IBug;
import td2jira.td.api.Utils;
+/**
+ * Start the synchronization.
+ *
+ * Jacob DLL must be available.
+ */
public class Sync {
private static Logger logger = Logger.getLogger(Sync.class);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|