User ILikeCoffee - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T15:56:38Zhttp://stackoverflow.com/feeds/user/25270http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/627007/how-to-dynamically-generate-a-fileset/627171#6271712Answer by ILikeCoffee for How to "dynamically" generate a fileset?ILikeCoffee2009-03-09T17:16:38Z2009-03-09T17:16:38Z<p>Use foreach from antcontrib <a href="http://ant-contrib.sourceforge.net/tasks/tasks/foreach.html" rel="nofollow">foreach</a>:</p>
<pre><code>ant -Ddirectory="dir1,dir3"
<project name="build" default="zip" basedir=".">
<!-- declare ant-contrib -->
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath>
<pathelement location="${basedir}/ant-contrib-1.0b3.jar"/>
</classpath>
</taskdef>
<property name="root" value ="folder"/>
<target name="zip">
<delete file="${root}/archive.zip"/>
<foreach list="${directory}" param="folder" target="zipdir"/>
</target>
<target name="zipdir">
<echo>${folder}</echo>
<zip destfile="${root}/archive.zip" update="true">
<fileset dir="${root}">
<include name="${folder}/**/*"/>
</fileset>
</zip>
</target>
</code></pre>
<p></p>
http://stackoverflow.com/questions/183083/need-help-writing-a-custom-buildlistener/188700#1887000Answer by ILikeCoffee for Need help writing a custom BuildListenerILikeCoffee2008-10-09T19:02:41Z2008-10-10T09:32:58Z<p>I had this problem when I had two plugins providing an ant.jar.
<br>Make sure you use the org.apache.ant plugin and that there is no other plugin providing another ant.jar.</p>
<p>Another thing I just stumbled upon: The jar containing your contribution must not be in the plugins classpath (Runtime -> Classpath).<br>
See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=34466" rel="nofollow">Eclipse Bug 34466</a></p>
http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line/172127#1721271Answer by ILikeCoffee for Building Eclipse plugins and features on the command lineILikeCoffee2008-10-05T15:17:58Z2008-10-05T15:17:58Z<p>We are currently using PDE to automatically build features and our complete product. It works quite well. Make sure you use the right script for product build or feature build.
<a href="http://help.eclipse.org/ganymede/nav/4_2" rel="nofollow">Eclipse Help on using PDE</a></p>
http://stackoverflow.com/questions/171824/programmatically-showing-a-view-from-an-eclipse-plug-in/172082#1720826Answer by ILikeCoffee for Programmatically showing a View from an Eclipse Plug-inILikeCoffee2008-10-05T14:44:33Z2008-10-05T14:44:33Z<p>You are probably looking for this:</p>
<pre><code>PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(arg0);
</code></pre>
http://stackoverflow.com/questions/115685/code-compiling-in-eclipse-but-not-on-command-line/172032#1720323Answer by ILikeCoffee for Code compiling in eclipse but not on command lineILikeCoffee2008-10-05T14:04:37Z2008-10-05T14:04:37Z<p>Eclipse has it's own compiler. The Eclipse JDT compiler seems to handle your array differently than javac.</p>