User ILikeCoffee - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T15:56:38Z http://stackoverflow.com/feeds/user/25270 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/627007/how-to-dynamically-generate-a-fileset/627171#627171 2 Answer by ILikeCoffee for How to "dynamically" generate a fileset? ILikeCoffee 2009-03-09T17:16:38Z 2009-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" &lt;project name="build" default="zip" basedir="."&gt; &lt;!-- declare ant-contrib --&gt; &lt;taskdef resource="net/sf/antcontrib/antcontrib.properties"&gt; &lt;classpath&gt; &lt;pathelement location="${basedir}/ant-contrib-1.0b3.jar"/&gt; &lt;/classpath&gt; &lt;/taskdef&gt; &lt;property name="root" value ="folder"/&gt; &lt;target name="zip"&gt; &lt;delete file="${root}/archive.zip"/&gt; &lt;foreach list="${directory}" param="folder" target="zipdir"/&gt; &lt;/target&gt; &lt;target name="zipdir"&gt; &lt;echo&gt;${folder}&lt;/echo&gt; &lt;zip destfile="${root}/archive.zip" update="true"&gt; &lt;fileset dir="${root}"&gt; &lt;include name="${folder}/**/*"/&gt; &lt;/fileset&gt; &lt;/zip&gt; &lt;/target&gt; </code></pre> <p></p> http://stackoverflow.com/questions/183083/need-help-writing-a-custom-buildlistener/188700#188700 0 Answer by ILikeCoffee for Need help writing a custom BuildListener ILikeCoffee 2008-10-09T19:02:41Z 2008-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#172127 1 Answer by ILikeCoffee for Building Eclipse plugins and features on the command line ILikeCoffee 2008-10-05T15:17:58Z 2008-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#172082 6 Answer by ILikeCoffee for Programmatically showing a View from an Eclipse Plug-in ILikeCoffee 2008-10-05T14:44:33Z 2008-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#172032 3 Answer by ILikeCoffee for Code compiling in eclipse but not on command line ILikeCoffee 2008-10-05T14:04:37Z 2008-10-05T14:04:37Z <p>Eclipse has it's own compiler. The Eclipse JDT compiler seems to handle your array differently than javac.</p>