<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-108</id>
	<title>Nabble - Ant - Dev</title>
	<updated>2009-11-12T13:23:31Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Ant---Dev-f108.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Ant---Dev-f108.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26326682</id>
	<title>Re: Ivy Indexer</title>
	<published>2009-11-12T13:23:31Z</published>
	<updated>2009-11-12T13:23:31Z</updated>
	<author>
		<name>Nicolas Lalevée</name>
	</author>
	<content type="html">&lt;br&gt;Le 11 nov. 2009 à 16:21, Jon Schneider a écrit :
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I've been thinking about IVYDE-134 (Quick Search feature for dependencies in
&lt;br&gt;&amp;gt; repositories) and related IVY-866. If we add support for the Nexus Indexer
&lt;br&gt;&amp;gt; (which would be nice in its own right), we would still be lacking this
&lt;br&gt;&amp;gt; feature for Ivy repositories. Also, what about ivysettings whose default
&lt;br&gt;&amp;gt; resolver is a chain resolver of a Maven repository and an Ivy repository? In
&lt;br&gt;&amp;gt; this case, without some all-encompassing index, the quick search feature
&lt;br&gt;&amp;gt; would find Java types in only the Maven repository within the chain
&lt;br&gt;&amp;gt; resolver, which I think would be counterintuitive to a user.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; My first thought was to build an extension to Nexus or Archiva for Ivy, but
&lt;br&gt;&amp;gt; somehow I just really dislike the idea of making an otherwise stateless
&lt;br&gt;&amp;gt; repository stateful (or should I say, having a manager, however thin,
&lt;br&gt;&amp;gt; continuously running to proxy modifications to the repository). Also, these
&lt;br&gt;&amp;gt; two products are so Maven-centric (due to their intended use) that any
&lt;br&gt;&amp;gt; extension would amount to an abuse of their intended use.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So my compromising proposal is centered around a Lucene index that should be
&lt;br&gt;&amp;gt; modified (1) whenever a deliver/publish/install task is ran. Also, since
&lt;br&gt;&amp;gt; nothing stops a repository administrator from manually
&lt;br&gt;&amp;gt; deleting/adding/updating files in the repository, we should provide (2) a
&lt;br&gt;&amp;gt; new &amp;lt;ivy:index&amp;gt; task.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (1) is accomplished through a new resolver type extending from ChainResolver
&lt;br&gt;&amp;gt; that proxies publishing to its delegate resolvers, indexing the published
&lt;br&gt;&amp;gt; artifacts in the process. As an example, adding this proxy would look like
&lt;br&gt;&amp;gt; this in ivysettings.xml:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;resolvers&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;indexed name=&amp;quot;indexable&amp;quot; index=&amp;quot;${ivy.settings.dir}/index&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;filesystem name=&amp;quot;1&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;ivy
&lt;br&gt;&amp;gt; pattern=&amp;quot;${ivy.settings.dir}/[organisation]/[module]/ivy-[revision].xml&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;artifact
&lt;br&gt;&amp;gt; pattern=&amp;quot;${ivy.settings.dir}/[organisation]/[module]/[type]/[artifact]-[revision].[ext]&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/filesystem&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;!-- other resolvers here... --&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/indexed&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/resolvers&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (2) allows a repository administrator to force clean the index via an Ant
&lt;br&gt;&amp;gt; task when it is known to be stale. It also provides an alternative to using
&lt;br&gt;&amp;gt; the proxy mechanism described in (1); the index task could be run
&lt;br&gt;&amp;gt; periodically (e.g. nightly) as a task on a continuous integration tool.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The index task itself explores the repository, opening jars and listing the
&lt;br&gt;&amp;gt; fully qualified types found in each jar in the index and associating these
&lt;br&gt;&amp;gt; types with a particular ModuleRevisionId. With the code I have written so
&lt;br&gt;&amp;gt; far, I have been able to index up to 10,000 jars in less than 10 seconds
&lt;br&gt;&amp;gt; when the index task is running against a repository on the same machine
&lt;br&gt;&amp;gt; (indexing a repository through a network path slows down considerably).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; IvyDE can then search for types against the optimized Lucene index, making
&lt;br&gt;&amp;gt; it very fast.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thoughts on this approach?
&lt;/div&gt;&lt;br&gt;Nothing to say special apart that it sounds good :)
&lt;br&gt;&lt;br&gt;I am just not sure about how to declare it in the ivysettings. Maybe we could declare them just like the caches:
&lt;br&gt;&amp;lt;resolvers&amp;gt;
&lt;br&gt;&amp;lt;filesystem name=&amp;quot;1&amp;quot; index=&amp;quot;index1&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;ivy pattern=&amp;quot;${ivy.settings.dir}/[organisation]/[module]/ivy-[revision].xml&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;artifact pattern=&amp;quot;${ivy.settings.dir}/[organisation]/[module]/[type]/[artifact]-[revision].[ext]&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;/filesystem&amp;gt;
&lt;br&gt;&amp;lt;/resolvers&amp;gt;
&lt;br&gt;&amp;lt;indexes&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;index name=&amp;quot;index1&amp;quot; dir=&amp;quot;${ivy.settings.dir}/index&amp;quot; /&amp;gt;
&lt;br&gt;&amp;lt;/indexes&amp;gt;
&lt;br&gt;&lt;br&gt;Nicolas
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26326682&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26326682&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Ivy-Indexer-tp26303097p26326682.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26326078</id>
	<title>Re: CI builds at Apaches Hudson instance</title>
	<published>2009-11-12T12:46:28Z</published>
	<updated>2009-11-12T12:46:28Z</updated>
	<author>
		<name>Nicolas Lalevée</name>
	</author>
	<content type="html">&lt;br&gt;Le 6 nov. 2009 à 12:05, &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26326078&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jan.Materne@...&lt;/a&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26326078&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jan.Materne@...&lt;/a&gt;&amp;gt; a écrit :
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have set up a CI build. (Without emailing at the moment).
&lt;br&gt;&amp;gt; &amp;nbsp;$build.sh test
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20(JDK%201.4)/las&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20(JDK%201.4)/las&lt;/a&gt;&lt;br&gt;&amp;gt; tBuild/console
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But while on my local Win7 box the tests pass, the
&lt;br&gt;&amp;gt; org.apache.tools.ant.taskdefs.JavaTest runs until killing by Hudsons
&lt;br&gt;&amp;gt; timeout mechanism (20minutes configured).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Any ideas how to solve that? The job runs in an unix environment.
&lt;/div&gt;&lt;br&gt;I did a kill -3 when the build was running to get a stack trace and here it is:
&lt;br&gt;&lt;br&gt;&amp;quot;main&amp;quot; prio=3 tid=0x08074430 nid=0x1 runnable [0x08046000..0x08047188]
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.util.VectorSet.doAdd(VectorSet.java:64)
&lt;br&gt;&amp;nbsp; &amp;nbsp; - waiting to lock &amp;lt;0xdc1b5980&amp;gt; (a org.apache.tools.ant.util.VectorSet)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.util.VectorSet.addElement(VectorSet.java:75)
&lt;br&gt;&amp;nbsp; &amp;nbsp; - locked &amp;lt;0xdc1b5980&amp;gt; (a org.apache.tools.ant.util.VectorSet)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.DirectoryScanner.scandir(DirectoryScanner.java:1236)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.DirectoryScanner.scandir(DirectoryScanner.java:1184)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.DirectoryScanner.scandir(DirectoryScanner.java:1146)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.DirectoryScanner.checkIncludePatterns(DirectoryScanner.java:928)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.DirectoryScanner.scan(DirectoryScanner.java:882)
&lt;br&gt;&amp;nbsp; &amp;nbsp; - locked &amp;lt;0xdc1b57e8&amp;gt; (a org.apache.tools.ant.DirectoryScanner)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.types.AbstractFileSet.getDirectoryScanner(AbstractFileSet.java:490)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.types.AbstractFileSet.getDirectoryScanner(AbstractFileSet.java:451)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.taskdefs.Delete.execute(Delete.java:612)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:585)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Task.perform(Task.java:348)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Target.execute(Target.java:390)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Target.performTasks(Target.java:411)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1360)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Project.executeTarget(Project.java:1329)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.taskdefs.JavaTest.tearDown(JavaTest.java:69)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at junit.framework.TestCase.runBare(TestCase.java:136)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at junit.framework.TestResult$1.protect(TestResult.java:106)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at junit.framework.TestResult.runProtected(TestResult.java:124)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at junit.framework.TestResult.run(TestResult.java:109)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at junit.framework.TestCase.run(TestCase.java:120)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at junit.framework.TestSuite.runTest(TestSuite.java:230)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at junit.framework.TestSuite.run(TestSuite.java:225)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:421)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.executeInVM(JUnitTask.java:1339)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:807)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.executeOrQueue(JUnitTask.java:1794)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.execute(JUnitTask.java:761)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:585)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Task.perform(Task.java:348)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:68)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:585)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Task.perform(Task.java:348)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:398)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:585)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Task.perform(Task.java:348)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Target.execute(Target.java:390)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Target.performTasks(Target.java:411)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1360)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Project.executeTarget(Project.java:1329)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Project.executeTargets(Project.java:1212)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Main.runBuild(Main.java:799)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.Main.startAnt(Main.java:218)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109)
&lt;br&gt;&lt;br&gt;So it is stuck in the cleanup target of trunk/src/etc/testcases/taskdefs/java.xml
&lt;br&gt;And there is quite a lot of files there so the delete take quite some time obviously:
&lt;br&gt;-bash-3.00$ ls /var/tmp | wc -l
&lt;br&gt;&amp;nbsp; 594285
&lt;br&gt;&lt;br&gt;I am not sure how to handle it thought.
&lt;br&gt;&lt;br&gt;Nicolas
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26326078&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26326078&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CI-builds-at-Apaches-Hudson-instance-tp26230163p26326078.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26303097</id>
	<title>Ivy Indexer</title>
	<published>2009-11-11T07:21:38Z</published>
	<updated>2009-11-11T07:21:38Z</updated>
	<author>
		<name>JKSchneider</name>
	</author>
	<content type="html">I've been thinking about IVYDE-134 (Quick Search feature for dependencies in
&lt;br&gt;repositories) and related IVY-866. If we add support for the Nexus Indexer
&lt;br&gt;(which would be nice in its own right), we would still be lacking this
&lt;br&gt;feature for Ivy repositories. Also, what about ivysettings whose default
&lt;br&gt;resolver is a chain resolver of a Maven repository and an Ivy repository? In
&lt;br&gt;this case, without some all-encompassing index, the quick search feature
&lt;br&gt;would find Java types in only the Maven repository within the chain
&lt;br&gt;resolver, which I think would be counterintuitive to a user.
&lt;br&gt;&lt;br&gt;My first thought was to build an extension to Nexus or Archiva for Ivy, but
&lt;br&gt;somehow I just really dislike the idea of making an otherwise stateless
&lt;br&gt;repository stateful (or should I say, having a manager, however thin,
&lt;br&gt;continuously running to proxy modifications to the repository). Also, these
&lt;br&gt;two products are so Maven-centric (due to their intended use) that any
&lt;br&gt;extension would amount to an abuse of their intended use.
&lt;br&gt;&lt;br&gt;So my compromising proposal is centered around a Lucene index that should be
&lt;br&gt;modified (1) whenever a deliver/publish/install task is ran. Also, since
&lt;br&gt;nothing stops a repository administrator from manually
&lt;br&gt;deleting/adding/updating files in the repository, we should provide (2) a
&lt;br&gt;new &amp;lt;ivy:index&amp;gt; task.
&lt;br&gt;&lt;br&gt;(1) is accomplished through a new resolver type extending from ChainResolver
&lt;br&gt;that proxies publishing to its delegate resolvers, indexing the published
&lt;br&gt;artifacts in the process. As an example, adding this proxy would look like
&lt;br&gt;this in ivysettings.xml:
&lt;br&gt;&lt;br&gt;&amp;lt;resolvers&amp;gt;
&lt;br&gt;&amp;lt;indexed name=&amp;quot;indexable&amp;quot; index=&amp;quot;${ivy.settings.dir}/index&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;filesystem name=&amp;quot;1&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;ivy
&lt;br&gt;pattern=&amp;quot;${ivy.settings.dir}/[organisation]/[module]/ivy-[revision].xml&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;artifact
&lt;br&gt;pattern=&amp;quot;${ivy.settings.dir}/[organisation]/[module]/[type]/[artifact]-[revision].[ext]&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;/filesystem&amp;gt;
&lt;br&gt;&amp;lt;!-- other resolvers here... --&amp;gt;
&lt;br&gt;&amp;lt;/indexed&amp;gt;
&lt;br&gt;&amp;lt;/resolvers&amp;gt;
&lt;br&gt;&lt;br&gt;(2) allows a repository administrator to force clean the index via an Ant
&lt;br&gt;task when it is known to be stale. It also provides an alternative to using
&lt;br&gt;the proxy mechanism described in (1); the index task could be run
&lt;br&gt;periodically (e.g. nightly) as a task on a continuous integration tool.
&lt;br&gt;&lt;br&gt;The index task itself explores the repository, opening jars and listing the
&lt;br&gt;fully qualified types found in each jar in the index and associating these
&lt;br&gt;types with a particular ModuleRevisionId. With the code I have written so
&lt;br&gt;far, I have been able to index up to 10,000 jars in less than 10 seconds
&lt;br&gt;when the index task is running against a repository on the same machine
&lt;br&gt;(indexing a repository through a network path slows down considerably).
&lt;br&gt;&lt;br&gt;IvyDE can then search for types against the optimized Lucene index, making
&lt;br&gt;it very fast.
&lt;br&gt;&lt;br&gt;Thoughts on this approach?
&lt;br&gt;Jon
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Ivy-Indexer-tp26303097p26303097.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26300169</id>
	<title>catching stream within ExecTask</title>
	<published>2009-11-11T04:00:37Z</published>
	<updated>2009-11-11T04:00:37Z</updated>
	<author>
		<name>jamin</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;I'm working on a project : ant4hg which aims to surround hg executable 
&lt;br&gt;using ExecTask.
&lt;br&gt;I have a problem with : 'hg clone 
&lt;br&gt;ssh://&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300169&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bdedardel@...&lt;/a&gt;/hgroot/ant4hg/ant4hg'
&lt;br&gt;because it uses a third party tool : ssh.exe.
&lt;br&gt;&lt;br&gt;It's OK for (without third party tool) :
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;echo message=&amp;quot;hg clone
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://ant4hg.hg.sourceforge.net:8000/hgroot/ant4hg/ant4hg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ant4hg.hg.sourceforge.net:8000/hgroot/ant4hg/ant4hg&lt;/a&gt;&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;exec dir=&amp;quot;.&amp;quot; executable=&amp;quot;hg&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;arg line=&amp;quot;clone&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;arg
&lt;br&gt;&amp;nbsp; &amp;nbsp; line=&amp;quot;&lt;a href=&quot;http://ant4hg.hg.sourceforge.net:8000/hgroot/ant4hg/ant4hg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ant4hg.hg.sourceforge.net:8000/hgroot/ant4hg/ant4hg&lt;/a&gt;&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/exec&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /[echo] hg clone
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://ant4hg.hg.sourceforge.net:8000/hgroot/ant4hg/ant4hg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ant4hg.hg.sourceforge.net:8000/hgroot/ant4hg/ant4hg&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; [exec] destination directory: ant4hg
&lt;br&gt;&amp;nbsp; &amp;nbsp; [exec] no changes found
&lt;br&gt;&amp;nbsp; &amp;nbsp; [exec] updating working directory
&lt;br&gt;&amp;nbsp; &amp;nbsp; [exec] 0 files updated, 0 files merged, 0 files removed, 0 files
&lt;br&gt;&amp;nbsp; &amp;nbsp; unresolve
&lt;br&gt;&amp;nbsp; &amp;nbsp; /
&lt;br&gt;&lt;br&gt;&lt;br&gt;But not for :
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;echo message=&amp;quot;hg clone
&lt;br&gt;&amp;nbsp; &amp;nbsp; ssh://&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300169&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bdedardel@...&lt;/a&gt;/hgroot/ant4hg/ant4hg &amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;exec dir=&amp;quot;.&amp;quot; executable=&amp;quot;hg&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;arg line=&amp;quot;clone&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;arg
&lt;br&gt;&amp;nbsp; &amp;nbsp; line=&amp;quot;ssh://&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300169&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bdedardel@...&lt;/a&gt;/hgroot/ant4hg/ant4hg
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/exec&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /[echo] hg clone
&lt;br&gt;&amp;nbsp; &amp;nbsp; ssh://&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300169&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bdedardel@...&lt;/a&gt;/hgroot/ant4hg/ant4hg &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; /
&lt;br&gt;&lt;br&gt;... waiting ...
&lt;br&gt;&lt;br&gt;Here is the shell command line (it asks me for password) :
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;gt; hg clone
&lt;br&gt;&amp;nbsp; &amp;nbsp; ssh://&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300169&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bdedardel@...&lt;/a&gt;/hgroot/ant4hg/ant4hg
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300169&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bdedardel@...&lt;/a&gt;'s password:
&lt;br&gt;&amp;nbsp; &amp;nbsp; destination directory: ant4hg
&lt;br&gt;&amp;nbsp; &amp;nbsp; no changes found
&lt;br&gt;&amp;nbsp; &amp;nbsp; updating working directory
&lt;br&gt;&amp;nbsp; &amp;nbsp; 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
&lt;br&gt;&lt;br&gt;Do you have any idea about catching ssh stream ???
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Benjamin
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/catching-stream-within-ExecTask-tp26300169p26300169.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26286943</id>
	<title>[RESULT] [VOTE] Jon Schneider as committer</title>
	<published>2009-11-10T08:50:28Z</published>
	<updated>2009-11-10T08:50:28Z</updated>
	<author>
		<name>Matt Benson-2</name>
	</author>
	<content type="html">This vote has passed with the following +1 votes:
&lt;br&gt;&lt;br&gt;Matt Benson
&lt;br&gt;Maarten Coene
&lt;br&gt;Gilles Scokart
&lt;br&gt;Stefan Bodewig
&lt;br&gt;Martijn Kruithof
&lt;br&gt;Kevin Jackson
&lt;br&gt;Nicolas Lalevée
&lt;br&gt;Conor MacNeill
&lt;br&gt;Jan Materne
&lt;br&gt;Peter Reilly
&lt;br&gt;Antoine Levy Lambert
&lt;br&gt;Xavier Hanin
&lt;br&gt;Bruce Atherton
&lt;br&gt;&lt;br&gt;No +/-0 votes, and no -1 votes.
&lt;br&gt;&lt;br&gt;Congratulations Jon!
&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26286943&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26286943&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-RESULT---VOTE--Jon-Schneider-as-committer-tp26286943p26286943.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26278328</id>
	<title>Re: Querying ant context</title>
	<published>2009-11-09T20:58:44Z</published>
	<updated>2009-11-09T20:58:44Z</updated>
	<author>
		<name>Stefan Bodewig</name>
	</author>
	<content type="html">On 2009-11-09, Jean-Louis Boudart &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26278328&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeanlouis.boudart@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Here we're not able to know the task defined outside the target (import,
&lt;br&gt;&amp;gt; myTask in the previous example).
&lt;br&gt;&amp;gt; All this tasks seems to be attached to a virtual target (a target
&lt;br&gt;&amp;gt; without name)
&lt;br&gt;&lt;br&gt;Almost. &amp;nbsp;It's name is the empty string.
&lt;br&gt;&lt;br&gt;&amp;gt; referenced by the XMLContext instance which is all the time
&lt;br&gt;&amp;gt; overwritten during &amp;lt;import&amp;gt;. &amp;nbsp;Did i miss something?
&lt;br&gt;&lt;br&gt;It is overwritten, executed at the end of import and restored.
&lt;br&gt;&lt;br&gt;&amp;gt; Any idea of how this could be done?
&lt;br&gt;&lt;br&gt;You get all tasks except for the import tasks from the target named &amp;quot;&amp;quot;,
&lt;br&gt;but for the imports and in particular for the contents of import I don't
&lt;br&gt;see any way. &amp;nbsp;Handling of import is too tightly integrated with parsing
&lt;br&gt;the project, the rest of Ant's classes isn't even aware of it.
&lt;br&gt;&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26278328&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26278328&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Querying-ant-context-tp26265623p26278328.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26265623</id>
	<title>Querying ant context</title>
	<published>2009-11-09T04:28:49Z</published>
	<updated>2009-11-09T04:28:49Z</updated>
	<author>
		<name>Jean-Louis BOUDART</name>
	</author>
	<content type="html">Hi there,
&lt;br&gt;&lt;br&gt;The new abstraction layer on ProjectHelper is awesome !
&lt;br&gt;&lt;br&gt;But now i'm wondering how can we make (in a generic way) reports for our
&lt;br&gt;builds?
&lt;br&gt;There were a few existing projects (AntDoc for example) but there were all
&lt;br&gt;XML based.
&lt;br&gt;What solution could we use to generate such report?
&lt;br&gt;&lt;br&gt;I've tried to play with the infos accessible in the Project instance.
&lt;br&gt;It seems that we are able to access every task used/defined in a target
&lt;br&gt;(using the method getTasks() on Target.java). Here we can have a lot of
&lt;br&gt;infos.
&lt;br&gt;However it seems that we're not able to access all tasks defined outside of
&lt;br&gt;the target.
&lt;br&gt;A quick example:
&lt;br&gt;&lt;br&gt;&amp;lt;project&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;import file=&amp;quot;myfile&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;myTask/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;target name=&amp;quot;foobar&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;thisTaskCanBeDocumentedBecauseWeAreInsideATarget/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/target&amp;gt;
&lt;br&gt;&amp;lt;/project&amp;gt;
&lt;br&gt;&lt;br&gt;Here we're not able to know the task defined outside the target (import,
&lt;br&gt;myTask in the previous example).
&lt;br&gt;All this tasks seems to be attached to a virtual target (a target without
&lt;br&gt;name) referenced by the XMLContext instance which is all the time
&lt;br&gt;overwritten during &amp;lt;import&amp;gt;.
&lt;br&gt;Did i miss something?
&lt;br&gt;&lt;br&gt;Any idea of how this could be done?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks for you help.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jean Louis Boudart
&lt;br&gt;Independent consultant
&lt;br&gt;Project Lead &lt;a href=&quot;http://www.easyant.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.easyant.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Querying-ant-context-tp26265623p26265623.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26261347</id>
	<title>Re: For every usage of Ant class api, different class loader</title>
	<published>2009-11-08T21:01:44Z</published>
	<updated>2009-11-08T21:01:44Z</updated>
	<author>
		<name>Stefan Bodewig</name>
	</author>
	<content type="html">On 2009-11-07, Gilles Scokart &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26261347&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gscokart@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; An other aproach is to specify a loader id when declaring the tasks in the
&lt;br&gt;&amp;gt; parent project (and make sure your inherit this id in the subclass).
&lt;br&gt;&lt;br&gt;IIRC Raja's problem was that static blocks didn't get re-run for
&lt;br&gt;projects if the tasks where sharing the same classloader (because the
&lt;br&gt;system classloader was used)
&lt;br&gt;&lt;br&gt;&amp;gt; On 2009-11-05, Raja Nagendra Kumar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26261347&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nagendra.Raja@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; The issue we are seeing is when we load our custom tasks though
&lt;br&gt;&amp;gt;&amp;gt; taskdef, new classloader is being used for every programmatic ant
&lt;br&gt;&amp;gt;&amp;gt; call there fore static blocks are reinitialised for every sub ant
&lt;br&gt;&amp;gt;&amp;gt; project, however when when we put it in lib or in system classpath,
&lt;br&gt;&amp;gt;&amp;gt; distinct classloader is not used..hence we have issue with some
&lt;br&gt;&amp;gt;&amp;gt; static code :) not being reinitialized.
&lt;br&gt;&lt;br&gt;loaderref would make things consistent, but different from what Raja
&lt;br&gt;actually wants.
&lt;br&gt;&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26261347&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26261347&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/For-every-usage-of-Ant-class-api%2C-different-class-loader-tp26208572p26261347.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26259053</id>
	<title>Bug report for Ant [2009/11/08]</title>
	<published>2009-11-08T15:08:02Z</published>
	<updated>2009-11-08T15:08:02Z</updated>
	<author>
		<name>Bugzilla from bugzilla@apache.org</name>
	</author>
	<content type="html">+---------------------------------------------------------------------------+
&lt;br&gt;| Bugzilla Bug ID &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;| &amp;nbsp; &amp;nbsp; +---------------------------------------------------------------------+
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | Status: UNC=Unconfirmed NEW=New &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ASS=Assigned &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OPN=Reopened &amp;nbsp; &amp;nbsp;VER=Verified &amp;nbsp; &amp;nbsp;(Skipped Closed/Resolved) &amp;nbsp; |
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | &amp;nbsp; +-----------------------------------------------------------------+
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | &amp;nbsp; | Severity: BLK=Blocker CRI=Critical &amp;nbsp;REG=Regression &amp;nbsp;MAJ=Major &amp;nbsp; |
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | &amp;nbsp; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MIN=Minor &amp;nbsp; NOR=Normal &amp;nbsp; &amp;nbsp;ENH=Enhancement TRV=Trivial |
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | &amp;nbsp; | &amp;nbsp; +-------------------------------------------------------------+
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | &amp;nbsp; | &amp;nbsp; | Date Posted &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | &amp;nbsp; | &amp;nbsp; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;+--------------------------------------------------+
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | &amp;nbsp; | &amp;nbsp; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| Description &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| &amp;nbsp; &amp;nbsp; | &amp;nbsp; | &amp;nbsp; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| 1509|Opn|Enh|2001-04-25|Project object not fully functional in BuildEvents|
&lt;br&gt;| 2743|New|Enh|2001-07-23|More sophisticated dependency analysis &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| 2811|New|Enh|2001-07-25|&amp;lt;depend&amp;gt; does not work when static final primitive|
&lt;br&gt;| 3310|New|Enh|2001-08-28|Clear case files and directories &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| 5748|New|Enh|2002-01-08|Filtering, Default Filter &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;| 5789|New|Enh|2002-01-10|Enhanced PVCS task. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;| 6606|Opn|Enh|2002-02-21|META-BUG problems with delegating classloaders &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| 6757|New|Enh|2002-02-28|adding visibility to tasks &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| 7546|New|Enh|2002-03-27|EjbJar:Borland Task doesn't allow alternate compil|
&lt;br&gt;| 7712|New|Enh|2002-04-03|Provide patternset support for VSSGET task? &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;| 8294|New|Enh|2002-04-19|&amp;lt;apply&amp;gt;: Allow &amp;lt;srcfile/&amp;gt; and &amp;lt;targetfile/&amp;gt; to app|
&lt;br&gt;| 8866|New|Enh|2002-05-07|Signal handling in java task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| 8895|New|Enh|2002-05-08|ant and/or antcall should support forking &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;| 8972|New|Enh|2002-05-10|allow property expansion in &amp;lt;filterset&amp;gt; property v|
&lt;br&gt;| 8981|New|Enh|2002-05-10|Tar task command additional features &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| 9294|New|Enh|2002-05-21|[PATCH] optional/j2ee/ServerDeploy OC4J Support &amp;nbsp; |
&lt;br&gt;| 9481|New|Enh|2002-05-29|Add a &amp;quot;prefix&amp;quot; attribute to ExpandProperties filte|
&lt;br&gt;| 9784|New|Enh|2002-06-11|BuildNumber task: make more extendable... &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;| 9995|Ass|Enh|2002-06-19|MKS Source Integrity tasks &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|10020|New|Enh|2002-06-19|&amp;lt;ejbjar&amp;gt;'s dependency behaviour should be more con|
&lt;br&gt;|10231|New|Enh|2002-06-25|Need access to current file in SQLExec &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|10283|New|Enh|2002-06-27|Add a destfile to the uptodate task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|10402|New|Enh|2002-07-02|adding the ability of html like whitespace preserv|
&lt;br&gt;|11113|New|Enh|2002-07-24|keytool task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|11560|Opn|Enh|2002-08-08|Taskdef does not apply reverseLoader policy on sta|
&lt;br&gt;|12267|New|Enh|2002-09-03|Add ability to unzip into separate folders &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|12292|New|Enh|2002-09-04|[PATCH] enable &amp;lt;depends target=&amp;quot;&amp;quot;/&amp;gt; tag inside tar|
&lt;br&gt;|12334|New|Enh|2002-09-05|REQUEST: Ant task doesn't allow attachment of a bu|
&lt;br&gt;|12518|New|Enh|2002-09-11|Gunzip &amp; BUnZip2 add filesets, patternsets, and ov|
&lt;br&gt;|12765|New|Enh|2002-09-18|&amp;quot;rmdir&amp;quot; and &amp;quot;deltree&amp;quot; patches for ftp task enhance|
&lt;br&gt;|12964|New|Enh|2002-09-24|ANTLR only takes one input file at a time &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|13047|Inf|Enh|2002-09-26|Support for &amp;lt;property environment&amp;gt; and &amp;lt;exec&amp;gt; on O|
&lt;br&gt;|13048|New|Enh|2002-09-26|Add an optional containsall attribute to LineConta|
&lt;br&gt;|13371|New|Enh|2002-10-07|[PATCH] Contributed new CvsExportDiff task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|13847|New|Nor|2002-10-22|pvcs task: wrong option (-r) specified for get (sh|
&lt;br&gt;|13934|New|Enh|2002-10-24|Translate task shouldn't load default locale prope|
&lt;br&gt;|13939|New|Enh|2002-10-24|Translate task should have better key matching cap|
&lt;br&gt;|14320|New|Enh|2002-11-06|copy fileset followsymlinks=&amp;quot;false&amp;quot; does not copy |
&lt;br&gt;|14393|New|Enh|2002-11-08|Support use of jndi within ant &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|14512|New|Enh|2002-11-13|Allow creating database connection similar to &amp;lt;pat|
&lt;br&gt;|14525|New|Enh|2002-11-13|Add failonerror attribute to serverdeploy vendor-s|
&lt;br&gt;|14901|New|Enh|2002-11-27|[PATCH] Stub Generation enhancement for Borland J2|
&lt;br&gt;|15031|Opn|Nor|2002-12-03|ANT &amp;lt;copy&amp;gt; with &amp;lt;fileset&amp;gt; does not spot bad symlin|
&lt;br&gt;|15149|New|Enh|2002-12-06|Replace task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|15244|New|Enh|2002-12-10|tar task should be able to store symbolic links as|
&lt;br&gt;|15430|New|Enh|2002-12-17|Enhancement to ReplaceRegExp.java &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|15596|New|Enh|2002-12-21|Identity mapper in uptodate task. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|15729|Ass|Nor|2002-12-31|StarTeam rootLocalFolder should be java.io.File &amp;nbsp; |
&lt;br&gt;|15747|New|Enh|2003-01-01|change tasks (e.g. Ant) to take urls as well as fi|
&lt;br&gt;|15853|New|Enh|2003-01-07|Allow to plug-in different XML Catalog resolver in|
&lt;br&gt;|15949|Opn|Enh|2003-01-10|please provide links to docs.xml and jakarta-site2|
&lt;br&gt;|16131|New|Enh|2003-01-15|not possible to suppress &amp;quot;BUILD SUCCESSFUL&amp;quot; messag|
&lt;br&gt;|16255|New|Enh|2003-01-20|XmlLogger without DOM tree &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|16427|New|Enh|2003-01-26|Output return value of setLastModified/document be|
&lt;br&gt;|16469|New|Enh|2003-01-27|Apply task should allow parallel execution on diff|
&lt;br&gt;|16494|New|Enh|2003-01-28|[PATCH] accessibility of Ant documentation &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|16562|New|Enh|2003-01-29|Can not accept characters &amp;nbsp;from keyboard in a thre|
&lt;br&gt;|16860|New|Enh|2003-02-06|Silent or Debug a single target &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|16896|New|Enh|2003-02-07|Support in ProjectHelper / ProjectHelperImpl to op|
&lt;br&gt;|17074|New|Enh|2003-02-14|Contribution for WLSTOP &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|17181|New|Nor|2003-02-18|Build fails while trying to get VSS files by label|
&lt;br&gt;|17372|New|Enh|2003-02-25|Enhancement of replace Task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|17742|New|Maj|2003-03-06|PVCS task generates GET with promotion group incor|
&lt;br&gt;|17781|New|Enh|2003-03-07|name attribute of record task is not relative to b|
&lt;br&gt;|17829|New|Enh|2003-03-10|Allow ejbjar task to accept nested manifest &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|17850|New|Nor|2003-03-10|PVCS task dont work with promotion group &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|17961|New|Enh|2003-03-13|New task to collect services from a JAR &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|18043|New|Enh|2003-03-16|untar should recognize non-tar files instead of ex|
&lt;br&gt;|18093|New|Enh|2003-03-18|&amp;lt;EAR&amp;gt; task proposed nested tasks to ease applicati|
&lt;br&gt;|18154|New|Enh|2003-03-19|Improve exceptions and logging behavior of p4chang|
&lt;br&gt;|18391|Opn|Enh|2003-03-26|RFE : ignoreMissingBuildFiles option for subant &amp;nbsp; |
&lt;br&gt;|18581|New|Enh|2003-04-01|ClearCase ChangeLog Task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|18633|Ass|Nor|2003-04-02|starteam checkin task ignores the includes paramet|
&lt;br&gt;|18732|New|Enh|2003-04-05|expand properties during -propertyfile processing |
&lt;br&gt;|18807|New|Enh|2003-04-08|Pro*C &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|18850|New|Nor|2003-04-09|Visual Source Safe History Does Not Allow Specific|
&lt;br&gt;|18930|New|Enh|2003-04-11|SQLExec Task does not work well with MS SQL Server|
&lt;br&gt;|18997|New|Min|2003-04-14|Streateam: Call to BuildNumber.getDisplayString() |
&lt;br&gt;|19077|New|Enh|2003-04-16|Telnet task doesn't support failure &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|19118|New|Enh|2003-04-17|JUnitReport does not fail when it encounters an in|
&lt;br&gt;|19224|New|Enh|2003-04-22|The &amp;lt;javac&amp;gt; task should accept the 'dependcache' a|
&lt;br&gt;|19252|New|Enh|2003-04-23|&amp;lt;untar&amp;gt; does not untar symbolic links properly &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|19386|New|Enh|2003-04-28|&amp;lt;filesmatch&amp;gt; condition evaluates to true when both|
&lt;br&gt;|19470|New|Enh|2003-04-30|Use createViewLabel method of View class to create|
&lt;br&gt;|19516|New|Enh|2003-05-01|uncompressed zipping takes too much memory &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|19673|New|Enh|2003-05-05|Add timeout attribute to serverdeploy vendor-speci|
&lt;br&gt;|19712|New|Enh|2003-05-07|Add a task for SQLJ compilation &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|19714|New|Enh|2003-05-07|Nested element (&amp;quot;weblogic&amp;quot;) of the &amp;quot;serverdeploy&amp;quot; |
&lt;br&gt;|19964|New|Enh|2003-05-15|system property for a default timeout for tests &amp;nbsp; |
&lt;br&gt;|20128|New|Maj|2003-05-21|vssget command label problem &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|20207|New|Enh|2003-05-24|enhance telnet task to be able to gather read outp|
&lt;br&gt;|20262|New|Enh|2003-05-27|RFE: allow not arround patternsets &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|20344|Opn|Enh|2003-05-29|[PATCH]Allows record task to use XmlRecorder &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|20485|New|Enh|2003-06-04|The &amp;lt;sync&amp;gt; task doesn't support the nested &amp;quot;filter|
&lt;br&gt;|20547|New|Enh|2003-06-06|Make &amp;lt;batchtest&amp;gt; to ignore abstract test cases &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|20721|New|Enh|2003-06-12|no comment option for vsscheckout task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|20867|Opn|Enh|2003-06-18|The possibility of getting properties from ant scr|
&lt;br&gt;|20956|New|Enh|2003-06-20|java debugging and profiling &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|21058|New|Enh|2003-06-24|The ejbjar task should support the xmlcatalog data|
&lt;br&gt;|21065|New|Enh|2003-06-24|new core task - MergeJavaDocs &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|21071|New|Enh|2003-06-25|Improve JUnit XML reporting when not using batchte|
&lt;br&gt;|21192|New|Enh|2003-06-30|documentation hard to read because of incorrect bl|
&lt;br&gt;|21249|New|Enh|2003-07-01|Add &amp;quot;getXxx()&amp;quot; and &amp;quot;clearXxx()&amp;quot; methods to Javadoc|
&lt;br&gt;|21384|New|Nor|2003-07-07|vssget hanging &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|21414|New|Enh|2003-07-08|Bugzilla Report Generator Task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|21424|New|Nor|2003-07-09|stcheckout task fails to obey &amp;quot;deleteuncontrolled |
&lt;br&gt;|21494|New|Enh|2003-07-11|&amp;lt;property&amp;gt;: version of location to search parent d|
&lt;br&gt;|21770|New|Enh|2003-07-21|ClassFileset should resolve vs. a classpath &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|22020|Opn|Enh|2003-07-31|[PATCH] addition of access atribute to &amp;lt;target..&amp;gt; |
&lt;br&gt;|22067|Inf|Enh|2003-08-01|Logging of &amp;quot;Buildfile: *&amp;quot; directly to System.out i|
&lt;br&gt;|22269|Opn|Enh|2003-08-09|files pattern in &amp;lt;import/&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|22338|New|Enh|2003-08-12|add a &amp;quot;minversion&amp;quot; and a &amp;quot;version&amp;quot; attribute to ta|
&lt;br&gt;|22370|New|Enh|2003-08-13|enhance &amp;lt;available&amp;gt; to test for owner, group and p|
&lt;br&gt;|22378|New|Enh|2003-08-13|Borland Delphi/Kylix compiler support &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|22389|New|Enh|2003-08-13|Ant task to build VS.Net project file &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|22428|New|Enh|2003-08-14|PATCH - option to run tasks inside a loop &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|22460|New|Enh|2003-08-15|No access to the message output level from API &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|22554|New|Enh|2003-08-19|allow to specify Build file from OS environment va|
&lt;br&gt;|22567|New|Enh|2003-08-19|Enhance &amp;quot;includes&amp;quot; and &amp;quot;excludes&amp;quot; attributes for S|
&lt;br&gt;|22661|Opn|Nor|2003-08-22|Replace does not preserve line endings in multi li|
&lt;br&gt;|22709|New|Enh|2003-08-25|SOS tasks should allow forward slashes in vssserve|
&lt;br&gt;|22859|New|Enh|2003-09-01|Cross buildfile dependency &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|22883|New|Enh|2003-09-02|Enhancement to pvcs Operational Task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|22889|New|Enh|2003-09-02|Add string formatting options to &amp;lt;property&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|22901|Opn|Enh|2003-09-02|[Patch] -only option to execute target(s) without |
&lt;br&gt;|23037|New|Enh|2003-09-09|[Patch] enhancement of org.apache.tools.ant.types.|
&lt;br&gt;|23244|New|Enh|2003-09-18|New ImageSizeSelector &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|23261|New|Enh|2003-09-18|enhance &amp;lt;available type=&amp;quot;symbolic_link&amp;quot; /&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|23273|New|Nor|2003-09-19|Java task interprets it's arguments incorrectly if|
&lt;br&gt;|23278|Unc|Enh|2003-09-19|Project.setName() does not replaceProperties() &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|23396|New|Enh|2003-09-24|New optional task ejbclientjar added &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|23404|New|Enh|2003-09-25|Allow Ant command-line property files to be loaded|
&lt;br&gt;|23510|New|Enh|2003-09-30|provide a &amp;quot;append_unique&amp;quot; attribute for echo task |
&lt;br&gt;|23541|Ass|Enh|2003-10-01|Enhance error messages of taskdef to say what real|
&lt;br&gt;|23649|New|Enh|2003-10-07|Requirement for a method to not make entries in th|
&lt;br&gt;|23660|New|Enh|2003-10-07|Added &amp;quot;Rename&amp;quot; action to the FTP task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|23785|New|Enh|2003-10-13|[patch] Having &amp;lt;uptodate&amp;gt; execute a nested &amp;lt;sequen|
&lt;br&gt;|23789|New|Enh|2003-10-13|warn if &amp;lt;delete task contains a fileset AND a dir |
&lt;br&gt;|23829|New|Enh|2003-10-15|Enhancement to the Image Task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|23869|New|Enh|2003-10-16|Add FTP prune capability &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|23873|New|Enh|2003-10-16|wlstop should allow user to stop a managed server |
&lt;br&gt;|23874|New|Enh|2003-10-16|New wlstart task to start weblogic managed servers|
&lt;br&gt;|23920|New|Nor|2003-10-19|Contains selector test fails on JDK 1.2.2 and IBM |
&lt;br&gt;|23981|New|Nor|2003-10-21|Perforce tasks handle 'force' option oddly &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|23997|New|Enh|2003-10-22|Zip does not report &amp;quot;Nothing to do:&amp;quot;, unlike tar a|
&lt;br&gt;|24067|New|Enh|2003-10-23|[PATCH] &amp;lt;propertyfile&amp;gt; should not touch a file it |
&lt;br&gt;|24089|New|Enh|2003-10-24|JSP whitespace reduction &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|24103|New|Enh|2003-10-24|edit the Windows registry &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|24106|New|Nor|2003-10-24|Suites are not reported correctly in JUnitReport &amp;nbsp;|
&lt;br&gt;|24167|New|Enh|2003-10-28|Enable password protection for zip creation. &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|24231|New|Enh|2003-10-29|command-line option to signify no more options &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|24259|New|Enh|2003-10-30|&amp;lt;unzip&amp;gt; to extract files with current time and dat|
&lt;br&gt;|24260|New|Enh|2003-10-30|&amp;lt;unzip&amp;gt; seem extracting all files all the time. &amp;nbsp; |
&lt;br&gt;|24348|New|Nor|2003-11-03|soslabel task doesn't have certain attributes list|
&lt;br&gt;|24431|New|Enh|2003-11-05|XML Logger marks compile-errors as warnings &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|24513|New|Enh|2003-11-07|vssget displays too much &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|24532|New|Enh|2003-11-09|ProjectHelp - refactored project help output &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|24694|Opn|Enh|2003-11-13|JAVA_HOME should be exported &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|24711|Opn|Enh|2003-11-14|[PATCH] macrodef child elements should use their d|
&lt;br&gt;|24806|New|Enh|2003-11-19|Add merge as valid option for vssget writablefiles|
&lt;br&gt;|24877|New|Enh|2003-11-21|exec task doesn't handle error conditions well &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|25205|New|Nor|2003-12-04|timeout on &amp;lt;junit&amp;gt; results in wrong timing informa|
&lt;br&gt;|25379|New|Enh|2003-12-10|Cvs Tasks doesn't handle wildcards, so why not add|
&lt;br&gt;|25601|New|Enh|2003-12-17|Please add force option to archival tasks jar/zip/|
&lt;br&gt;|25655|New|Enh|2003-12-19|[PATCH] Dependencies with regular expressions &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|25704|New|Enh|2003-12-22|Support for Sun Solaris' Tar Format for long file |
&lt;br&gt;|25745|New|Nor|2003-12-24|ClearCase Update task does not allow usage of the |
&lt;br&gt;|25767|New|Enh|2003-12-26|Performance issues in JAXPUtils' use of SAXParser |
&lt;br&gt;|25976|New|Enh|2004-01-08|ejbjar-support for orion-server &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|25998|Opn|Nor|2004-01-08|PropertyHelper - getPropertyHelper method should c|
&lt;br&gt;|26026|New|Enh|2004-01-09|deleteuncontrolled parameter of stcheckout task sh|
&lt;br&gt;|26027|New|Enh|2004-01-09|stcheckout and stcheckin are a little verbose &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|26145|New|Enh|2004-01-14|delete task and missing folders &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|26165|New|Enh|2004-01-15|Type checking in JUnit batchtest &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|26197|New|Nor|2004-01-16|Reference to realThing in UnknownElement.execute d|
&lt;br&gt;|26308|New|Enh|2004-01-21|fail on verify errors in borland deployment tool &amp;nbsp;|
&lt;br&gt;|26453|New|Enh|2004-01-27|Exec task displays 'error' mesage &amp;quot;Result: XX&amp;quot; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|26454|New|Enh|2004-01-27|exec task should not run if the resultproperty fla|
&lt;br&gt;|26849|New|Enh|2004-02-11|[PATCH] Pathconvert output in xml format and write|
&lt;br&gt;|26947|New|Enh|2004-02-15|ant.bat should detect if ANT_HOME ends in a backsl|
&lt;br&gt;|27078|New|Enh|2004-02-19|add all optional jars to the classpath manifiest o|
&lt;br&gt;|27118|New|Enh|2004-02-20|Add type overrides for import &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|27355|Inf|Cri|2004-03-02|question about VSS task in Ant1.5 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|27596|New|Enh|2004-03-11|no way to verify JAR files as validly signed in An|
&lt;br&gt;|27722|New|Enh|2004-03-16|Project description contains target description &amp;nbsp; |
&lt;br&gt;|27739|Ass|Nor|2004-03-17|sql insert statement fails on '--' strings &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|27771|New|Enh|2004-03-18|Make &amp;quot;Time Taken&amp;quot; in DefaultLogger optional &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|28049|New|Min|2004-03-30|sql task not able to import &amp;quot;windows UTF-8&amp;quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|28099|New|Maj|2004-03-31|Problem with quotes in path &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|28101|New|Nor|2004-03-31|bootstrap.sh fails::qsh has limited space when run|
&lt;br&gt;|28111|New|Nor|2004-03-31|property substitution is broken on os/400 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|28124|New|Enh|2004-04-01|logging useless when using parallel task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|28128|New|Enh|2004-04-01|&amp;lt;parallel&amp;gt; task needs cascade option &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|28228|New|Enh|2004-04-06|&amp;lt;classloader&amp;gt; task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|28320|New|Enh|2004-04-09|copy task preserving permissions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|28394|New|Enh|2004-04-14|Add &amp;quot;commentchars&amp;quot; attribute to Sql task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|28398|New|Enh|2004-04-14|Add &amp;quot;file&amp;quot; option to PropertyFile's inner &amp;quot;entry&amp;quot; |
&lt;br&gt;|28403|New|Enh|2004-04-15|Floating attribute for import task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|28446|New|Enh|2004-04-17|Annotation or documentation nodes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|28504|New|Enh|2004-04-20|[PATCH] Capitalize /ZIP|[JWE]AR/; update Zip.reset|
&lt;br&gt;|28546|New|Enh|2004-04-22|Ant should offer hierarchical resource containment|
&lt;br&gt;|28681|New|Enh|2004-04-29|[PATCH] Xml output for the SQL task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|28729|New|Enh|2004-05-02|Introducing an &amp;lt;annotation&amp;gt; element &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|28882|New|Enh|2004-05-10|Add if and unless attributes to ProjectComponent. |
&lt;br&gt;|28935|New|Enh|2004-05-12|Create .NET solution files &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|28984|New|Nor|2004-05-14|Optional ccm tasks only run on windows, patch for |
&lt;br&gt;|28990|New|Enh|2004-05-14|Extend &amp;lt;java&amp;gt; task to provide &amp;lt;apply&amp;gt;-like feature|
&lt;br&gt;|29045|New|Enh|2004-05-17|Updates to Move &amp; Copy &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|29085|New|Enh|2004-05-19|Timestamps in jar-Manifest &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|29097|New|Enh|2004-05-19|&amp;lt;signjar&amp;gt; should be inside &amp;lt;jar&amp;gt; task in order for|
&lt;br&gt;|29236|New|Enh|2004-05-26|Ant options on ant task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|29248|New|Enh|2004-05-27|Ant does not automatically parallelize independent|
&lt;br&gt;|29251|New|Enh|2004-05-27|[patch] add @url to &amp;lt;import&amp;gt; task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|29282|New|Enh|2004-05-28|Need a way to get generated jar file from EjbJar t|
&lt;br&gt;|29347|New|Enh|2004-06-02|Recursive property expansion &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|29374|New|Enh|2004-06-03|Adding ant build script validation support &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|29396|New|Enh|2004-06-04|Allow P4Change to edit changelists as well &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|29633|New|Enh|2004-06-17|Need DirDiff Task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|29729|New|Enh|2004-06-22|XSL StyleSheet for build scripts &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|29797|New|Enh|2004-06-25|Calling Ant from other Java Applications &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|29870|New|Enh|2004-06-30|Need a way to specify proxyHost and proxyPort to j|
&lt;br&gt;|29986|New|Enh|2004-07-08|Recursive dependencies. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|29997|Opn|Enh|2004-07-09|Implement wish list of functionality for &amp;lt;record/&amp;gt;|
&lt;br&gt;|30145|New|Enh|2004-07-16|Sync/Copy task - add option to set property if som|
&lt;br&gt;|30254|New|Enh|2004-07-22|xslt/style task not taking META-INF/services/javax|
&lt;br&gt;|30288|New|Enh|2004-07-23|symmetric key generation &amp; file encryption task &amp;nbsp; |
&lt;br&gt;|30380|New|Enh|2004-07-29|shutdown hook for xmllogger &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|30422|New|Enh|2004-07-31|[Patch] Mutual Exclusion Tasks &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|30488|New|Enh|2004-08-05|Option to show tasks in menu &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|30651|New|Enh|2004-08-13|Add ability to pass arbitrary arguments after a sp|
&lt;br&gt;|30716|New|Enh|2004-08-17|javac task should have built in dependancy finder |
&lt;br&gt;|30760|New|Nor|2004-08-19|sql task handle pl/sql with ';' in pl/sql code. (p|
&lt;br&gt;|30795|New|Enh|2004-08-23|Delete task needs a 'verify' safety attribute &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|31005|New|Enh|2004-09-01|When a filter throws a BuildException, no indicati|
&lt;br&gt;|31070|New|Enh|2004-09-06|Task for ISO cd image file generation. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|31087|New|Enh|2004-09-07|Allow filtersets to be initialized from propertyse|
&lt;br&gt;|31088|New|Enh|2004-09-07|Permit the token replacement filterreader to be in|
&lt;br&gt;|31093|New|Nor|2004-09-07|tar task on Win2K incompatible with GNU tar 1.14 ?|
&lt;br&gt;|31121|New|Enh|2004-09-08|echoproperties: Add suffix attribute and property |
&lt;br&gt;|31165|New|Enh|2004-09-10|should we set networkaddress.cache.ttl to somethin|
&lt;br&gt;|31235|New|Enh|2004-09-15|split junit-showoutput-tag in stdout/stderr &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|31258|New|Enh|2004-09-16|add build.compiler.executable default property &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|31271|New|Enh|2004-09-17|enhance copy task: error if tokenvalues are missin|
&lt;br&gt;|31452|New|Enh|2004-09-28|StarTeam checlout enhancement &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|31588|New|Enh|2004-10-07|xdoc generation enhancements for Ant1.7 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|31589|New|Nor|2004-10-07|Problems specific to OpenVMS &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|31591|New|Enh|2004-10-07|List of Java1.5 features to consider adding to Ant|
&lt;br&gt;|31610|New|Enh|2004-10-09|[RFE][Patch] errorproperty attribute to &amp;lt;subant&amp;gt; t|
&lt;br&gt;|31665|New|Enh|2004-10-12|[PATCH] set filename of default buildfile to allow|
&lt;br&gt;|31744|New|Enh|2004-10-16|FTP subtasks should all share one connection &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|31779|New|Enh|2004-10-19|Problem with &amp;lt;input&amp;gt; task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|31909|New|Nor|2004-10-27|vsscheckout doesn't support &amp;quot;writable&amp;quot; but the doc|
&lt;br&gt;|32004|New|Enh|2004-11-01|junit's formatter using class name rather than tes|
&lt;br&gt;|32041|New|Enh|2004-11-03|want to remember a value set within a task next ti|
&lt;br&gt;|32089|New|Nor|2004-11-05|stcheckout sometimes creates folders instead of fi|
&lt;br&gt;|32114|New|Enh|2004-11-08|javadoc package specifications &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|32129|New|Enh|2004-11-09|request to add purge, with recursive option comman|
&lt;br&gt;|32142|New|Enh|2004-11-10|[PROPOSAL, PATCH] External public entity and new s|
&lt;br&gt;|32379|New|Enh|2004-11-24|Enhance token definition for replacefilterfile in |
&lt;br&gt;|32422|New|Nor|2004-11-28|[Patch] Additional clearcase task mkview/rmview &amp;nbsp; |
&lt;br&gt;|32526|New|Enh|2004-12-04|Add &amp;quot;whenempty&amp;quot; attribute to &amp;lt;fileset&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|32545|New|Enh|2004-12-06|Add &amp;quot;p4tag&amp;quot; ant task for perforce optional tasks &amp;nbsp;|
&lt;br&gt;|32551|New|Enh|2004-12-07|Add vpath-like support (priority-based file collec|
&lt;br&gt;|32632|Opn|Enh|2004-12-10|pattern / nested patternset in filterset &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|32638|New|Enh|2004-12-10|Enhancement to &amp;lt;macrodef&amp;gt; to support new feature. |
&lt;br&gt;|32683|New|Enh|2004-12-14|Java Target Needs Improved bootclasspath options &amp;nbsp;|
&lt;br&gt;|32725|New|Enh|2004-12-16|Default value for macrodef element parameter &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|32827|New|Enh|2004-12-23|Request for option to fail when filter tokens unde|
&lt;br&gt;|32895|New|Enh|2004-12-30|add an invokation mode to xslt &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|32897|New|Enh|2004-12-31|[PATCH] New Logger: displays target's source file |
&lt;br&gt;|32975|New|Enh|2005-01-06|Make XmlFormatter for junittask (optinally) lighte|
&lt;br&gt;|32995|New|Nor|2005-01-07|StarTeam &amp;lt;checkin&amp;gt; doesn't add comment to new file|
&lt;br&gt;|33026|New|Enh|2005-01-10|jar task fails when zipgroupfileset contains zip f|
&lt;br&gt;|33031|New|Enh|2005-01-10|Building ejb for Websphere 5.1.1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|33057|New|Min|2005-01-12|VSS tasks do not handle CRLF in comments &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|33073|New|Enh|2005-01-12|Tasks created by &amp;lt;scriptdef&amp;gt; do not support nested|
&lt;br&gt;|33169|New|Enh|2005-01-19|ClearCase update produces verbose output---request|
&lt;br&gt;|33243|New|Enh|2005-01-25|Need a &amp;quot;meta data&amp;quot; facility. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|33260|New|Nor|2005-01-27|p4change task does not set p4.change property corr|
&lt;br&gt;|33333|New|Enh|2005-02-01|Enable &amp;lt;import&amp;gt; task within targets &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|33404|New|Enh|2005-02-04|Jar task supporting &amp;quot;replace token&amp;quot; using filterse|
&lt;br&gt;|33480|New|Nor|2005-02-10|Please update doc with this note on why VSSGET get|
&lt;br&gt;|33482|New|Enh|2005-02-10|include &amp;quot;ecj&amp;quot; build.compiler option &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|33506|New|Enh|2005-02-11|Provide a dateFormat attribute in the &amp;lt;stlabel&amp;gt; ta|
&lt;br&gt;|33507|New|Enh|2005-02-11|Need way to have files retrieved via the &amp;lt;stchecko|
&lt;br&gt;|33859|New|Nor|2005-03-05|SCP remoteTofile attribute not fully implemented &amp;nbsp;|
&lt;br&gt;|33868|New|Enh|2005-03-06|[PATCH] Xslt task should support &amp;quot;&amp;lt;?xml-stylesheet|
&lt;br&gt;|33902|New|Nor|2005-03-08|clearcase clearaudit error after moving directorie|
&lt;br&gt;|33928|New|Maj|2005-03-09|Output of &amp;quot;java&amp;quot; task and left quote &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|33939|New|Enh|2005-03-09|Added 'preservelastmodified' to scp task to retain|
&lt;br&gt;|33955|New|Enh|2005-03-11|Tar task - username/uid settings are not carried o|
&lt;br&gt;|34005|New|Enh|2005-03-14|spellcheck results from ant.apache.org manual &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|34054|New|Enh|2005-03-17|JUnitReport - Allow it to take name of xml files i|
&lt;br&gt;|34116|New|Enh|2005-03-21|Example XML syntax for Ant manual + matching XSLs |
&lt;br&gt;|34138|New|Enh|2005-03-22|Ant should use other compilers when Sun's Javac ca|
&lt;br&gt;|34145|New|Enh|2005-03-23|InputRequest enhancement &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|34151|New|Nor|2005-03-23|need to propagage proxy information to &amp;lt;jarsigner&amp;gt;|
&lt;br&gt;|34229|New|Nor|2005-03-30|Need ability to intercept calls to System.setSecur|
&lt;br&gt;|34366|New|Enh|2005-04-08|Should be able to use &amp;lt;manifest&amp;gt; as a data type fo|
&lt;br&gt;|34382|New|Nor|2005-04-09|Loss of Location information for sequential task o|
&lt;br&gt;|34462|New|Enh|2005-04-14|Move optional jar files to a separate directory. &amp;nbsp;|
&lt;br&gt;|34507|New|Nor|2005-04-18|runant.py doesn't handle command with spaces in pr|
&lt;br&gt;|34748|New|Enh|2005-05-04|[PATCH] JUnit Task enhancement to allow a single t|
&lt;br&gt;|34777|New|Enh|2005-05-06|Support for Callable Statements in SQL task &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|34894|New|Enh|2005-05-12|ZIP integrity condition needed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|34907|New|Enh|2005-05-13|Add Multipart subtype setting to MimeMailer &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|35044|New|Nor|2005-05-24|ccmcheckintask requires a file to work &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|35142|Opn|Enh|2005-05-31|generated manual pages do not adapt browser width;|
&lt;br&gt;|35158|New|Enh|2005-06-01|Standard BuildListener for profiling Ant build &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|35192|New|Cri|2005-06-02|Receiving MessageFormat Parse Error when executing|
&lt;br&gt;|35215|New|Nor|2005-06-03|Ant.bat with all parameters in ANT_ARGS always exi|
&lt;br&gt;|35231|New|Enh|2005-06-06|Non-verbose 'preserve' in task 'zip' and 'jar' &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|35234|New|Enh|2005-06-06|Make the javah task fall back to executing javah c|
&lt;br&gt;|35313|New|Cri|2005-06-10|PVCS task doesnt pull data &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|35464|New|Enh|2005-06-22|Add a dry run mode &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|35522|Opn|Nor|2005-06-28|no way to set java system options from comand line|
&lt;br&gt;|35557|New|Enh|2005-06-30|Feature Request: XSLT pipe line task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|35562|New|Nor|2005-06-30|sshexec corrupts output written to STDERR &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|35653|New|Nor|2005-07-07|PropertySet defined as a nested element in antcall|
&lt;br&gt;|35657|New|Enh|2005-07-08|Add a &amp;quot;haltonerror&amp;quot; parameter to &amp;quot;xmlvalidate&amp;quot; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|35776|Opn|Enh|2005-07-18|amend FileUtils to properly handle cygwin symbolic|
&lt;br&gt;|35866|Ass|Enh|2005-07-26|JUnit task should show which test case failed &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|36048|New|Nor|2005-08-05|delete task option includeemptydirs: no deletion o|
&lt;br&gt;|36085|New|Min|2005-08-08|p4counter task documentation is incorrect &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|36174|Ass|Enh|2005-08-12|Consider enabling java.net.useSystemProxies by def|
&lt;br&gt;|36194|New|Nor|2005-08-15|FTP-Task cannot chmod directory permissions &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|36195|New|Enh|2005-08-15|upon failure - list the target(s) that were pursue|
&lt;br&gt;|36270|New|Enh|2005-08-19|[PATCH] code to support browse task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|36347|New|Nor|2005-08-24|antRun doesnt work properly on Solaris, so exec wi|
&lt;br&gt;|36357|New|Enh|2005-08-25|Enhance P4Change by the ability to delete change l|
&lt;br&gt;|36458|New|Nor|2005-09-01|problem with utf-8 encoding in &amp;lt;input&amp;gt; task &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|36464|New|Nor|2005-09-01|Wrong &amp;nbsp;directory permissions from &amp;quot;tar&amp;quot; task &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|36503|New|Nor|2005-09-05|Starteam &amp;nbsp;folders might have different working fol|
&lt;br&gt;|36523|Ass|Nor|2005-09-06|&amp;lt;java&amp;gt; task, incompatibleWithSpawn is too restrict|
&lt;br&gt;|36589|New|Enh|2005-09-10|You could enhance ant by &amp;quot;AOP&amp;quot; task,very useful in|
&lt;br&gt;|36629|New|Nor|2005-09-13|Apt task fails when compile=&amp;quot;false&amp;quot; specified &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|36641|Inf|Nor|2005-09-13|Problem in ClearCase task in SCM Optional SCM task|
&lt;br&gt;|36653|Opn|Enh|2005-09-14|enable a &amp;quot;forking&amp;quot; XSLT task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|36667|New|Enh|2005-09-15|Allow specification of a different logger for subt|
&lt;br&gt;|36670|Inf|Enh|2005-09-15|xslt: support xalan traces &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|36851|New|Nor|2005-09-29|&amp;lt;tar&amp;gt; Task does not support multi-byte file names |
&lt;br&gt;|36965|New|Nor|2005-10-07|Regression in wlserver task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|37032|New|Enh|2005-10-11|2 new tasks for clearcase intregration &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|37127|Opn|Enh|2005-10-17|The Apt task needs a way to reference options decl|
&lt;br&gt;|37200|New|Enh|2005-10-21|Split task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|37286|New|Enh|2005-10-28|MacroDef Element Namespaces &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|37405|New|Enh|2005-11-08|optional delimiter attribute &amp;nbsp;to the Replace task |
&lt;br&gt;|37501|New|Nor|2005-11-14|IntrospectionHelper is not thread-safe &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|37728|New|Enh|2005-12-01|create a warningproperty attribute for the javadoc|
&lt;br&gt;|37897|New|Nor|2005-12-14|ftp task very slow when depends=yes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|37913|New|Enh|2005-12-14|Get and Post tasks: cookies not set when redirect |
&lt;br&gt;|38245|Ass|Maj|2006-01-12|&amp;lt;sql&amp;gt; lacks any decent tests &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|38598|New|Enh|2006-02-09|SubSet Filter &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|38844|New|Enh|2006-03-03|ProjectHelper implementation that avoids re-parsin|
&lt;br&gt;|38915|New|Enh|2006-03-10|${property_value} doesn't expand in description (F|
&lt;br&gt;|38918|New|Enh|2006-03-10|Add 'real' overwrite support to Zip-based tasks &amp;nbsp; |
&lt;br&gt;|39000|New|Min|2006-03-16|j.u.concurrent in junit4 stack traces with timeout|
&lt;br&gt;|39009|New|Enh|2006-03-17|scp task: &amp;nbsp;includeEmptyDirs &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|39049|New|Enh|2006-03-21|Java task: add attribute to &amp;lt;sysproperty&amp;gt; which ta|
&lt;br&gt;|39108|Opn|Nor|2006-03-26|FTP.java missing checks when file type is unknown |
&lt;br&gt;|39164|Opn|Enh|2006-03-31|antlr task doesn't create output directory &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|39359|New|Nor|2006-04-19|Problems with OSD-5 filespecs and return codes on |
&lt;br&gt;|39541|New|Enh|2006-05-10|&amp;lt;sql&amp;gt; output encoding support &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|39544|New|Enh|2006-05-10|&amp;lt;copy verbose=&amp;quot;true&amp;quot; overwrite=&amp;quot;false&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|39554|New|Enh|2006-05-11|Make sysproperty a top level element to set system|
&lt;br&gt;|39597|New|Maj|2006-05-17|Reference not seen by top level tasks in sub-proje|
&lt;br&gt;|39617|Opn|Enh|2006-05-19|The &amp;lt;tar&amp;gt; task should have an append attribute &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|39745|Inf|Enh|2006-06-07|Parts of ant cannot be compiled with sablevm &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|39782|New|Enh|2006-06-12|Add HelpTask &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|39786|New|Nor|2006-06-12|project.createTask() does not work for presets &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|39802|New|Enh|2006-06-13|Have &amp;quot;quiet&amp;quot; attribute for more file-based tasks &amp;nbsp;|
&lt;br&gt;|39841|New|Enh|2006-06-20|Support for POSIX.1-2001-compatible tars &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|39901|Inf|Enh|2006-06-26|Log4j Configurator Task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|40059|New|Enh|2006-07-17|Add method to explicitly define symlinks in &amp;lt;tar&amp;gt; |
&lt;br&gt;|40093|Opn|Nor|2006-07-22|ant.PropertyHelper reference not passed to called |
&lt;br&gt;|40139|New|Enh|2006-07-30|support for properties within SELECTs of SQL task |
&lt;br&gt;|40140|New|Enh|2006-07-31|Let task/types receive unexpanded attribute(s) &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|40157|New|Enh|2006-08-01|&amp;lt;scp&amp;gt; and &amp;lt;sshexec&amp;gt; Tasks to give meaningful errro|
&lt;br&gt;|40235|New|Enh|2006-08-11|Subclass of JUnitTask that manages classpath depen|
&lt;br&gt;|40448|New|Enh|2006-09-08|&amp;lt;exec&amp;gt;/&amp;lt;java&amp;gt;/&amp;lt;apply&amp;gt; should accept &amp;lt;envset&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|40455|New|Nor|2006-09-10|ReaderInputStream handling character sets having p|
&lt;br&gt;|40522|New|Nor|2006-09-15|[Patch] Fix coreloader so that it works &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|40561|New|Maj|2006-09-20|property expansion with prefix troubles in propert|
&lt;br&gt;|40566|New|Nor|2006-09-21|Antunit doesnt exec sub java process; gets executi|
&lt;br&gt;|40608|New|Enh|2006-09-26|&amp;lt;xmlvalidate&amp;gt;/&amp;lt;schemavalidate&amp;gt; would gain from a g|
&lt;br&gt;|40632|New|Nor|2006-09-28|spawned process through exec task blocks parent ex|
&lt;br&gt;|40642|New|Enh|2006-09-29|[PATCH] Ant.java support for logger configuration |
&lt;br&gt;|40643|Inf|Enh|2006-09-29|Allow dependency injection on child tasks &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|40678|New|Enh|2006-10-04|[Patch] Allow macrodef to have arbitary xml elemen|
&lt;br&gt;|40703|New|Enh|2006-10-07|Demo build file &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|40706|New|Enh|2006-10-07|SVN changelog task should use Subversion's --xml p|
&lt;br&gt;|40725|New|Nor|2006-10-11|build does not fail if &amp;lt;property environment... fa|
&lt;br&gt;|40760|New|Enh|2006-10-16|Notify property expansion &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|40871|New|Enh|2006-11-02|JJTree task doesn't support the new JJTree NODE_EX|
&lt;br&gt;|40922|New|Enh|2006-11-07|Patch for MySQL support. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|40946|New|Nor|2006-11-10|stcheckout ignores convertEOL when used with &amp;quot;asof|
&lt;br&gt;|40977|New|Enh|2006-11-15|echoxml output encoding &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|40998|New|Enh|2006-11-19|fixcrlf should allow removing trailing spaces &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|41039|New|Nor|2006-11-24|ant.bat exit strategy improvements and issues &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|41125|New|Enh|2006-12-07|FilterReader classes should offer classpath, class|
&lt;br&gt;|41237|Inf|Blk|2006-12-24|ANT_HOME is incorrectly... &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|41280|Opn|Nor|2007-01-02|APT Task doesn't fail if forked process dies with |
&lt;br&gt;|41292|New|Nor|2007-01-04|javadoc task: sourcepath for JDK sources broken &amp;nbsp; |
&lt;br&gt;|41303|New|Nor|2007-01-05|P4Label task does not set label owner &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|41307|New|Nor|2007-01-05|Single quoted command line properties are evaluate|
&lt;br&gt;|41356|New|Enh|2007-01-12|Output all checksums to single file &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|41400|New|Nor|2007-01-18|properties get double expanded in &amp;lt;assertPropertyE|
&lt;br&gt;|41402|New|Maj|2007-01-18|The task ChangeLog doesn't work if the svn server |
&lt;br&gt;|41413|Ass|Reg|2007-01-19|woproject woapplication copy to wrong directory &amp;nbsp; |
&lt;br&gt;|41534|New|Enh|2007-02-02|&amp;quot;quiet&amp;quot; Formatter for Ant's JUnit Task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|41602|New|Nor|2007-02-13|Ant jython attributes are not thread-safe &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|41622|Opn|Blk|2007-02-15|ant.bat not working on win2k &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|41630|New|Maj|2007-02-16|missing -follow attribute to the CCMKLabel Task &amp;nbsp; |
&lt;br&gt;|41737|New|Min|2007-02-28|sqltask: Semicolon in c-style multiline comments f|
&lt;br&gt;|41784|New|Enh|2007-03-07|for the apply task, resultproperty should be set w|
&lt;br&gt;|41890|New|Nor|2007-03-19|exec &amp;gt; env &amp;gt; key value not set correctly. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|41907|New|Enh|2007-03-20|Its nice to have a Task that can genarate certific|
&lt;br&gt;|41924|New|Nor|2007-03-21|Untar target does not handle long filenames in POS|
&lt;br&gt;|41961|New|Nor|2007-03-27|StarTeam Checkout does not update case of filename|
&lt;br&gt;|41985|New|Enh|2007-03-29|Zip task doesnt pick up the read-only state of fil|
&lt;br&gt;|41986|New|Enh|2007-03-29|Add 'quiet' attribute to 'copy' task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|42044|New|Enh|2007-04-04|Multiple/composite logs for ant builds &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|42046|New|Nor|2007-04-04|properties get double-expanded in macrodefs &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|42143|New|Enh|2007-04-17|Boolean expressions in if and unless attributes &amp;nbsp; |
&lt;br&gt;|42304|New|Nor|2007-04-30|P4Label task doesn't support the new 'revision' fi|
&lt;br&gt;|42410|New|Enh|2007-05-14|New ant task sugestion... &amp;lt;inject-xml&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|42447|New|Enh|2007-05-17|Add support for conditions to echo task and arg el|
&lt;br&gt;|42462|New|Enh|2007-05-20|Contributing optional task for ClearCase findmerge|
&lt;br&gt;|42482|New|Nor|2007-05-21|ant and subant improperly passes references to mac|
&lt;br&gt;|42500|New|Nor|2007-05-23|tar task is incompatible with BusyBox v1.3.1 (the |
&lt;br&gt;|42511|New|Nor|2007-05-24|FixCrLf task changes file security settings on Win|
&lt;br&gt;|42519|New|Nor|2007-05-25|Incomplete Junit reporter &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|42544|New|Nor|2007-05-29|cannot have multiple input tasks with command line|
&lt;br&gt;|42594|New|Enh|2007-06-05|add a &amp;lt;checksummed&amp;gt; resource which can checksum a |
&lt;br&gt;|42609|New|Min|2007-06-06|ant.bat -noclasspath in ANT_ARGS should clearclass|
&lt;br&gt;|42631|New|Nor|2007-06-11|Antlib's xmlns &amp;quot;ant:current&amp;quot; ignored in scriptdef |
&lt;br&gt;|42696|New|Maj|2007-06-19|OutOfMemoryError using unzip Task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|42702|New|Enh|2007-06-20|resource enable ReplaceTokens filter &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|42742|New|Nor|2007-06-26|big Ant/Ivy builds run out of permanent memory. Cl|
&lt;br&gt;|42787|New|Min|2007-07-01|Relax restricion on quiet and failonerror attribut|
&lt;br&gt;|42788|New|Enh|2007-07-01|Add 'quiet' attribute to 'mkdir' task &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|42824|New|Nor|2007-07-05|p4labelsync cannot use revision paths with timesta|
&lt;br&gt;|42828|New|Enh|2007-07-06|Preserve return code of called batch files from ex|
&lt;br&gt;|42838|New|Enh|2007-07-09|Support for JSR 199: Java Compiler API &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|42964|Ass|Maj|2007-07-24|wrong target invoked (when project name is prefix |
&lt;br&gt;|43004|New|Nor|2007-07-31|OutOfMemory caused by System.out when running simp|
&lt;br&gt;|43032|New|Reg|2007-08-04|jar reports warning class modified in future on Wi|
&lt;br&gt;|43139|New|Nor|2007-08-15|unjar task does NOT unjar JAR files &amp;gt; 10Gigabytes |
&lt;br&gt;|43144|New|Nor|2007-08-16|tar task is very slow when a &amp;lt;zipfileset&amp;gt; is used |
&lt;br&gt;|43186|New|Nor|2007-08-22|tar task does not add entries for folders &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|43271|New|Enh|2007-08-31|scp task should support setting permissions &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|43315|New|Enh|2007-09-05|scriptdef should be able to load multiple script f|
&lt;br&gt;|43349|New|Enh|2007-09-10|Add ability to specify a multiplier to all memory |
&lt;br&gt;|43362|New|Enh|2007-09-12|Add conditional attributes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|43368|New|Enh|2007-09-12|ClearCase lsco fileset selector &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|43413|New|Maj|2007-09-18|ant sql task tries to execute commented lines with|
&lt;br&gt;|43428|New|Enh|2007-09-19|Resource Framework: Reading attributes of a resour|
&lt;br&gt;|43443|New|Nor|2007-09-21|STCHECKIN ignores the Include arg when AddUncontro|
&lt;br&gt;|43447|New|Enh|2007-09-21|Use Java 5 attributes as a replacement for XDoclet|
&lt;br&gt;|43546|New|Enh|2007-10-04|JUnit Test Filtering, junit task extension &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|43558|Opn|Enh|2007-10-04|Ant created zips do not set internal_file_attribut|
&lt;br&gt;|43582|New|Enh|2007-10-09|Write log messages from test to AntUnit's log &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|43586|Opn|Nor|2007-10-10|java.io.FileNotFoundException: /home/***/apache-an|
&lt;br&gt;|43630|New|Enh|2007-10-15|Add a &amp;quot;wsdl&amp;quot; Nested element to the Ant WAR task &amp;nbsp; |
&lt;br&gt;|43794|New|Nor|2007-11-04|Message about JAVA_HOME is confusing &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|43852|New|Nor|2007-11-13|No encoding support for &amp;lt;junitreport&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|43907|New|Enh|2007-11-19|Feature request : Minify a set of JS/CSS files &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|43921|New|Nor|2007-11-20|JavaEnvUtils.getJreExecutable() returns wrong exec|
&lt;br&gt;|43969|New|Nor|2007-11-26|JUnit4 tests marked @Ignore do not appear in XML o|
&lt;br&gt;|44045|New|Enh|2007-12-08|example unit test cases to create new JUnitReport |
&lt;br&gt;|44081|New|Enh|2007-12-14|compilerarg should support ranges &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|44220|New|Enh|2008-01-14|[Patch] Link to log files from junitreport generat|
&lt;br&gt;|44236|New|Nor|2008-01-14|IsReachable Issue &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|44239|New|Enh|2008-01-15|Add ability of Ant resource classes to act as fact|
&lt;br&gt;|44241|New|Enh|2008-01-15|add JavaConstantResource to read string constants.|
&lt;br&gt;|44242|New|Enh|2008-01-15|Add &amp;lt;funtest&amp;gt; task for functional testing &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|44549|New|Cri|2008-03-06|Delete with an empty includesfile deletes all file|
&lt;br&gt;|44660|New|Enh|2008-03-23|Task 'get' should display human readable error mes|
&lt;br&gt;|44661|New|Enh|2008-03-23|Task 'get' should should allow alternative paths. |
&lt;br&gt;|44718|New|Enh|2008-03-31|allow 'if' and 'unless' on macrodef &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|44740|New|Enh|2008-04-02|scp task (sftp) delete remote files &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|44756|Opn|Maj|2008-04-04|Can't get a class name or stack trace &amp;nbsp;for NoClass|
&lt;br&gt;|44795|New|Enh|2008-04-10|Provide facility to copy nested tasks as in MacroI|
&lt;br&gt;|44816|New|Enh|2008-04-13|Enhancement to tar-task (and maybe zip-task) &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|44868|New|Enh|2008-04-24|tar - lzma compression &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|44900|Ass|Maj|2008-04-29|Using ant java api: Exec: Nested args are not pass|
&lt;br&gt;|45057|New|Enh|2008-05-21|Support EOL conversion in tar/zip tasks &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|45089|New|Enh|2008-05-28|tstamp granularity attribute &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|45135|Opn|Reg|2008-06-05|Ant 1.7.0: a patternset reference cannot be redefi|
&lt;br&gt;|45142|New|Maj|2008-06-05|Delete Action does not delete unix path with &amp;quot;\&amp;quot; i|
&lt;br&gt;|45143|New|Nor|2008-06-05|add property setting to existing property evaluato|
&lt;br&gt;|45228|New|Enh|2008-06-18|more specific Error Starting Modern Compiler messa|
&lt;br&gt;|45262|New|Enh|2008-06-23|Request viewpathing support for Ant &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|45316|Opn|Maj|2008-07-01|Ant RPM task is unable to build RPM package due to|
&lt;br&gt;|45429|New|Enh|2008-07-18|the zip package should support &amp;quot;more modern&amp;quot; zip f|
&lt;br&gt;|45530|New|Nor|2008-08-03|ANT incorrectly copies env.variables with non-lati|
&lt;br&gt;|45536|New|Nor|2008-08-04|JUnit PlainJUnitResultFormatter goes OOM at the en|
&lt;br&gt;|45612|New|Enh|2008-08-11|[Patch] Subproject Addressing and Simulation Mode |
&lt;br&gt;|45692|New|Enh|2008-08-26|Allow Antlibs to contribute version information &amp; |
&lt;br&gt;|45696|New|Enh|2008-08-27|Slow classpath building with referenced paths. &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|45718|New|Enh|2008-08-31|Enhance bzip2 for Hadoop &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|45750|New|Enh|2008-09-05|URI support as source &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|45786|Inf|Maj|2008-09-11|ANT and NFS, Delete task - &amp;quot;Unable to delete direc|
&lt;br&gt;|45807|New|Enh|2008-09-15|Ant and optional libs as OSGi Bundles &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|45819|New|Enh|2008-09-16|[FilterSet] allow inclusion / exclusion patterns o|
&lt;br&gt;|45860|New|Enh|2008-09-22|Optional classpath entry support for FTP task &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|46034|New|Enh|2008-10-17|[Main] Add support for build.ant as default build |
&lt;br&gt;|46058|New|Maj|2008-10-21|Ant needs a streamable log format &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|46060|New|Trv|2008-10-21|ClassLoader task - will need manual documentation |
&lt;br&gt;|46087|Inf|Enh|2008-10-25|Aggregating filesets is *functionally* possible an|
&lt;br&gt;|46088|New|Enh|2008-10-25|Performance (speed) of large path(s) must be impro|
&lt;br&gt;|46117|New|Enh|2008-10-29|Append property prefix to entries in property file|
&lt;br&gt;|46135|Inf|Nor|2008-10-31|Regression: scriptcondition fails on 1.7.1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|46171|New|Enh|2008-11-09|Define standard directory layout &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|46305|Inf|Nor|2008-11-26|Hung forked JVM when reading from standard input &amp;nbsp;|
&lt;br&gt;|46326|Opn|Enh|2008-12-02|StarTeam: Use Cache Agent for Checkouts &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|46328|Inf|Nor|2008-12-02|Ant 1.6.5: FIXCRLF on Windows XP fails with IOExce|
&lt;br&gt;|46331|New|Enh|2008-12-03|Get the related Task object from the Condition imp|
&lt;br&gt;|46488|New|Enh|2009-01-07|Missing i18n support in ANT &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|46625|New|Nor|2009-01-29|large outputs from sshexec &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|46781|New|Enh|2009-02-27|&amp;lt;input&amp;gt;&amp;lt;handler type=&amp;quot;secure&amp;quot;/&amp;gt;&amp;lt;/input&amp;gt; with impl |
&lt;br&gt;|46783|New|Nor|2009-03-01|erroronmissingdir not supported by javac task &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|46794|New|Enh|2009-03-03|ssl with ftp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|46805|Opn|Nor|2009-03-05|ant exec hangs when invoking &amp;quot;asadmin.bat start-do|
&lt;br&gt;|46842|New|Enh|2009-03-12|Support Classpath Wildcards &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|46877|New|Nor|2009-03-19|Taskdef uses wrong class loader &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|46895|New|Min|2009-03-23|Caching documents from ant.apache.org requires add|
&lt;br&gt;|47002|New|Enh|2009-04-08|junitreport: expose classpath of internal XSLTProc|
&lt;br&gt;|47003|New|Enh|2009-04-08|Add to ant lib classpath from within project file |
&lt;br&gt;|47007|New|Nor|2009-04-09|On z/OS, environment variables mishandled when spe|
&lt;br&gt;|47010|Inf|Enh|2009-04-09|Sync task cannot compare file contents &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|47035|Opn|Enh|2009-04-15|Property expansion in macro attributes and element|
&lt;br&gt;|47047|New|Enh|2009-04-17|Add buildroot to RPM &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|47117|New|Enh|2009-04-29|Concat resource doesn't calculate its size &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|47119|New|Nor|2009-04-29|properties not expanded in default attributes &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|47126|New|Nor|2009-04-30|cvschangelog force &amp;lt;msg&amp;gt; encoding to platform defa|
&lt;br&gt;|47153|New|Enh|2009-05-05|Support tar files &amp;gt; 8 GByte &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|47163|New|Enh|2009-05-07|Contributed task: #include &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|47168|New|Min|2009-05-08|Zipfileset does not include empty directories &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|47218|New|Enh|2009-05-19|Include element and attribute reference in manual |
&lt;br&gt;|47254|New|Enh|2009-05-22|switch between light.exe and lit.exe &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|47303|New|Trv|2009-06-02|Copy failonerror is internally inconsistent with W|
&lt;br&gt;|47373|New|Enh|2009-06-16|Zip.java patch to support setting last modified da|
&lt;br&gt;|47381|New|Nor|2009-06-17|XmlProperty doesn't allow propertvalues with only |
&lt;br&gt;|47414|New|Enh|2009-06-24|Add Ftp ant task timeout &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|47423|New|Enh|2009-06-25|next to attribute granularity: offset &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|47529|New|Nor|2009-07-14|[PATCH] allow flexible trunk, tag, and branch loca|
&lt;br&gt;|47552|New|Enh|2009-07-20|scp task should support compression &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|47558|New|Nor|2009-07-22|Assertion status silently ignored by &amp;lt;junit&amp;gt; if un|
&lt;br&gt;|47642|New|Nor|2009-08-04|PumpStreamHandler can interleave I/O in incorrect |
&lt;br&gt;|47702|New|Enh|2009-08-18|enable resource collections in rmic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|47704|New|Enh|2009-08-18|Allow Project to take an XMLCatalog instance for u|
&lt;br&gt;|47715|New|Enh|2009-08-20|filterchain-based validation identifies line numbe|
&lt;br&gt;|47775|New|Nor|2009-09-01|non forked ant java task exits immediately on Mac |
&lt;br&gt;|47787|Inf|Reg|2009-09-04|FTP Optional task is not found ONLY WHEN run using|
&lt;br&gt;|47790|Inf|Blk|2009-09-05|javadoc: don't create packagenames option if files|
&lt;br&gt;|47821|Opn|Nor|2009-09-11|Touch task doesn't work on Solaris for a file whic|
&lt;br&gt;|47854|New|Enh|2009-09-16|Ant can't run within another Java program &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|47860|New|Enh|2009-09-17|[PATCH] ftp task to provide feedback on succeeded/|
&lt;br&gt;|47914|New|Maj|2009-09-28|&amp;lt; and &amp;gt; not quoted by quoteArgument causes failure|
&lt;br&gt;|47955|New|Nor|2009-10-07|SchemaValidate doc. doesn't show task element name|
&lt;br&gt;|47984|New|Maj|2009-10-12|Ant's regexp mapper expects that the regex matches|
&lt;br&gt;|47995|New|Nor|2009-10-14|StarTeam: The 'StarTeam exclusive lock' option is |
&lt;br&gt;|47996|New|Nor|2009-10-14|StarTeam: addUncontrolled option doesn't work &amp;nbsp; &amp;nbsp; |
&lt;br&gt;|48001|New|Nor|2009-10-15|Document differences between tasks' usage of mappe|
&lt;br&gt;|48010|Inf|Cri|2009-10-16|'timeout' parameter not working in Sshexec task &amp;nbsp; |
&lt;br&gt;|48041|Inf|Maj|2009-10-22|javadoc task offline=&amp;quot;true&amp;quot; doesn't work &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|48058|New|Enh|2009-10-26|tar task looses file permissions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|48078|New|Nor|2009-10-28|Clarification for documentation for difference sel|
&lt;br&gt;|48127|New|Maj|2009-11-04|build.xml:target crash &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;|48128|New|Maj|2009-11-04|Ant input task failing to read input from console |
&lt;br&gt;|48152|New|Nor|2009-11-06|Task ManifestClassPath fail to find suitable relat|
&lt;br&gt;|48156|New|Nor|2009-11-06|isfileselected doesn't support the nested &amp;quot;contain|
&lt;br&gt;+-----+---+---+----------+--------------------------------------------------+
&lt;br&gt;| Total &amp;nbsp;573 bugs &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;+---------------------------------------------------------------------------+
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26259053&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26259053&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Bug-report-for-Ant--2009-11-08--tp26259053p26259053.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26244660</id>
	<title>Re: For every usage of Ant class api, different class loader</title>
	<published>2009-11-07T05:09:47Z</published>
	<updated>2009-11-07T05:09:47Z</updated>
	<author>
		<name>Gilles Scokart</name>
	</author>
	<content type="html">An other aproach is to specify a loader id when declaring the tasks in the
&lt;br&gt;parent project (and make sure your inherit this id in the subclass).
&lt;br&gt;&lt;br&gt;&lt;br&gt;Gilles Scokart
&lt;br&gt;&lt;br&gt;&lt;br&gt;2009/11/5 Stefan Bodewig &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26244660&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bodewig@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On 2009-11-05, Raja Nagendra Kumar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26244660&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nagendra.Raja@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; When we are using Ant.java/class api Is it possible to explicitly set the
&lt;br&gt;&amp;gt; &amp;gt; new class loader, even if the initial classes existed in system
&lt;br&gt;&amp;gt; classloader(
&lt;br&gt;&amp;gt; &amp;gt; i.e though classpath or in ant lib directory.)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The issue we are seeing is when we load our custom tasks though taskdef,
&lt;br&gt;&amp;gt; new
&lt;br&gt;&amp;gt; &amp;gt; classloader is being used for every programmatic ant call there fore
&lt;br&gt;&amp;gt; static
&lt;br&gt;&amp;gt; &amp;gt; blocks are reinitialised for every sub ant project, however when &amp;nbsp;when we
&lt;br&gt;&amp;gt; &amp;gt; put it in lib or in system classpath, distinct classloader is not
&lt;br&gt;&amp;gt; &amp;gt; used..hence we have issue with some static code :) not being
&lt;br&gt;&amp;gt; reinitialized.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Don't use static blocks 8-)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Alternatively, don't make your jars available in the system classloader
&lt;br&gt;&amp;gt; or use the (deprecated) reverseloader attribute of taskdef.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Once we understand classloder &amp;nbsp;behaviors in ant based on project vs
&lt;br&gt;&amp;gt; &amp;gt; subproject and TaskDef classpath way and systemclasspath way, then we
&lt;br&gt;&amp;gt; could
&lt;br&gt;&amp;gt; &amp;gt; be more confident to fix the current issue.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It doesn't have any real relation to subprojects at all. &amp;nbsp;Ant normally
&lt;br&gt;&amp;gt; delegates loading of any classes up the classloader chain.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Stefan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26244660&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26244660&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/For-every-usage-of-Ant-class-api%2C-different-class-loader-tp26208572p26244660.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26232720</id>
	<title>Re: Guide to IvyDE development in Eclipse?</title>
	<published>2009-11-06T06:17:53Z</published>
	<updated>2009-11-06T06:17:53Z</updated>
	<author>
		<name>JKSchneider</name>
	</author>
	<content type="html">Hi Lennart,
&lt;br&gt;&lt;br&gt;1. &amp;nbsp;IvyDE should build out of the gate when you download the source. &amp;nbsp;Are
&lt;br&gt;you seeing errors?
&lt;br&gt;2. &amp;nbsp;Debug As -&amp;gt; Eclipse Application. &amp;nbsp;Accepting the default launch
&lt;br&gt;configuration will enable plugins associated with any plugin projects in the
&lt;br&gt;workspace.
&lt;br&gt;3. &amp;nbsp;Unsure what you are unsure about here...
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;On Fri, Nov 6, 2009 at 5:47 AM, Lennart Schedin
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26232720&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lennart.schedin@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm a Java developer but I have no experience with Eclipse plugin
&lt;br&gt;&amp;gt; development. I found a bug in IvyDE and I would like to contribute (or
&lt;br&gt;&amp;gt; at least point in the direction to the error in the code).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is there a guide on how to develop IvyDE? I have checked out the code
&lt;br&gt;&amp;gt; and I would now like to perform the following steps:
&lt;br&gt;&amp;gt; 1. Build the source code inside Eclipse
&lt;br&gt;&amp;gt; 2. Launch and debug the plugin in a new Eclipse window
&lt;br&gt;&amp;gt; 3. Write a test case and run that before and after I change the main code.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Lennart
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26232720&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26232720&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Guide-to-IvyDE-development-in-Eclipse--tp26232197p26232720.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26232197</id>
	<title>Guide to IvyDE development in Eclipse?</title>
	<published>2009-11-06T03:47:30Z</published>
	<updated>2009-11-06T03:47:30Z</updated>
	<author>
		<name>Lennart Schedin</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm a Java developer but I have no experience with Eclipse plugin
&lt;br&gt;development. I found a bug in IvyDE and I would like to contribute (or
&lt;br&gt;at least point in the direction to the error in the code).
&lt;br&gt;&lt;br&gt;Is there a guide on how to develop IvyDE? I have checked out the code
&lt;br&gt;and I would now like to perform the following steps:
&lt;br&gt;1. Build the source code inside Eclipse
&lt;br&gt;2. Launch and debug the plugin in a new Eclipse window
&lt;br&gt;3. Write a test case and run that before and after I change the main code.
&lt;br&gt;&lt;br&gt;&lt;br&gt;regards,
&lt;br&gt;&lt;br&gt;Lennart
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26232197&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26232197&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Guide-to-IvyDE-development-in-Eclipse--tp26232197p26232197.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26230167</id>
	<title>Nightly builds at Apaches Hudson instance</title>
	<published>2009-11-06T03:05:13Z</published>
	<updated>2009-11-06T03:05:13Z</updated>
	<author>
		<name>Jan.Materne</name>
	</author>
	<content type="html">I have set up a nightly build.
&lt;br&gt;It runs an
&lt;br&gt;&amp;nbsp; $ant -f build.xml distribution
&lt;br&gt;&amp;nbsp; $ant -f check.xml dumphtml findbugs
&lt;br&gt;and publishes the source- and binary distro and has violations reports
&lt;br&gt;(findbugs+checkstyle) and javadocs.
&lt;br&gt;&lt;br&gt;Old runs will be deleted, so only the actual results are online.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20Nightly/lastBui&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20Nightly/lastBui&lt;/a&gt;&lt;br&gt;ld/console
&lt;br&gt;Entry site
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20Nightly/violati&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20Nightly/violati&lt;/a&gt;&lt;br&gt;ons/file/zonestorage/hudson/home/hudson/hudson/jobs/Ant%20Nightly/worksp
&lt;br&gt;ace/trunk/src/main/org/apache/tools/zip/ZipEncodingHelper.java/
&lt;br&gt;sample violations report for one class (checkstyle + findbugs including
&lt;br&gt;source view)
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20Nightly/javadoc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20Nightly/javadoc&lt;/a&gt;&lt;br&gt;/
&lt;br&gt;Javadocs
&lt;br&gt;&lt;br&gt;&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26230167&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26230167&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Nightly-builds-at-Apaches-Hudson-instance-tp26230167p26230167.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26230163</id>
	<title>CI builds at Apaches Hudson instance</title>
	<published>2009-11-06T03:05:07Z</published>
	<updated>2009-11-06T03:05:07Z</updated>
	<author>
		<name>Jan.Materne</name>
	</author>
	<content type="html">I have set up a CI build. (Without emailing at the moment).
&lt;br&gt;&amp;nbsp; $build.sh test
&lt;br&gt;&lt;a href=&quot;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20(JDK%201.4)/las&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.zones.apache.org/hudson/view/Ant/job/Ant%20(JDK%201.4)/las&lt;/a&gt;&lt;br&gt;tBuild/console
&lt;br&gt;&lt;br&gt;But while on my local Win7 box the tests pass, the
&lt;br&gt;org.apache.tools.ant.taskdefs.JavaTest runs until killing by Hudsons
&lt;br&gt;timeout mechanism (20minutes configured).
&lt;br&gt;&lt;br&gt;Any ideas how to solve that? The job runs in an unix environment.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26230163&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26230163&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CI-builds-at-Apaches-Hudson-instance-tp26230163p26230163.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26228783</id>
	<title>Re: Feature Request - Executor setting though the script</title>
	<published>2009-11-06T01:07:17Z</published>
	<updated>2009-11-06T01:07:17Z</updated>
	<author>
		<name>Stefan Bodewig</name>
	</author>
	<content type="html">On 2009-11-06, Raja Nagendra Kumar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26228783&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nagendra.Raja@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Your suggestion works.. small change was the name of the attribute was
&lt;br&gt;&amp;gt; classname instead of class
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;lt;typedef name=&amp;quot;TejaExecutor&amp;quot;
&lt;br&gt;&amp;gt; 	 &amp;nbsp; &amp;nbsp; classname=&amp;quot;com.tejasoft.ant.TejaGlobalExecutor&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; 	&amp;lt;classpath&amp;gt;
&lt;br&gt;&amp;gt; 	 &amp;nbsp; &amp;nbsp;&amp;lt;path refid=&amp;quot;cp.teja.ant&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; 	&amp;lt;/classpath&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/typedef&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;lt;TejaExecutor id=&amp;quot;ant.executor&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt; This takes care of it.
&lt;br&gt;&lt;br&gt;Great.
&lt;br&gt;&lt;br&gt;&amp;gt; Stefan, when we supply it as ANT_ARGS, we used 'ant.executor.class'
&lt;br&gt;&amp;gt; instead of 'ant.executor' .. Not sure why such difference..
&lt;br&gt;&lt;br&gt;ant.executor.class is the name of a property that can be used to specify
&lt;br&gt;the executor implementation - but that approach doesn't give you control
&lt;br&gt;over the classpath.
&lt;br&gt;&lt;br&gt;ant.executor is the name of the reference which holds the current
&lt;br&gt;executor instance. &amp;nbsp;references and properties are two different concepts
&lt;br&gt;and don't share the same namespace. &amp;nbsp;You can't define references on the
&lt;br&gt;command line.
&lt;br&gt;&lt;br&gt;&amp;gt; is this approach works with all other ANT_ARGS, such as -listener
&lt;br&gt;&lt;br&gt;in general: no. &amp;nbsp;I don't think we actually provide a built-in way to
&lt;br&gt;attach build listeners from inside the build file. &amp;nbsp;But it isn't that
&lt;br&gt;hard to do, the record task or Jan's autoconf work do so, for example.
&lt;br&gt;&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26228783&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26228783&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Feature-Request---Executor-setting-though-the-script-tp26208582p26228783.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26226565</id>
	<title>Re: Feature Request - Executor setting though the script</title>
	<published>2009-11-05T21:53:36Z</published>
	<updated>2009-11-05T21:53:36Z</updated>
	<author>
		<name>Raja Nagendra Kumar</name>
	</author>
	<content type="html">Woh..
&lt;br&gt;&lt;br&gt;Ant seems to have most of what we are looking for..
&lt;br&gt;Your suggestion works.. small change was the name of the attribute was classname instead of class
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;typedef name=&amp;quot;TejaExecutor&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;classname=&amp;quot;com.tejasoft.ant.TejaGlobalExecutor&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;classpath&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;path refid=&amp;quot;cp.teja.ant&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/classpath&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/typedef&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;TejaExecutor id=&amp;quot;ant.executor&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;This takes care of it. 
&lt;br&gt;&lt;br&gt;Stefan, when we supply it as ANT_ARGS, we used 'ant.executor.class' instead of 'ant.executor' .. Not sure why such difference.. 
&lt;br&gt;&lt;br&gt;Stefan, is this approach works with all other ANT_ARGS, such as -listener &amp;nbsp;etc.. if yes, could you let me know how to find the respective id name. Trying to get to know org.apache.tools.ant.Main better.
&lt;br&gt;&lt;br&gt;Basically we want to elinate any changes batch/sh files and put every thing in script so that we take advantage of platform independence of ant.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Raja Nagendra Kumar,
&lt;br&gt;C.T.O
&lt;br&gt;www.tejasoft.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Feature-Request---Executor-setting-though-the-script-tp26208582p26226565.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26223981</id>
	<title>Re: [VOTE] New committer - Jon Schneider</title>
	<published>2009-11-05T15:06:23Z</published>
	<updated>2009-11-05T15:06:23Z</updated>
	<author>
		<name>Bruce Atherton</name>
	</author>
	<content type="html">+1 for Jon Schneider as an Ant committer.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223981&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26223981&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-VOTE--New-committer---Jon-Schneider-tp26165122p26223981.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26215759</id>
	<title>Re: For every usage of Ant class api, different class loader</title>
	<published>2009-11-05T07:26:57Z</published>
	<updated>2009-11-05T07:26:57Z</updated>
	<author>
		<name>Raja Nagendra Kumar</name>
	</author>
	<content type="html">&amp;gt; Unless I'm mistaken there has been less than four hours between your mail and my response ...
&lt;br&gt;&lt;br&gt;Stefan, I am very impressed by your level of knowledge and your passion to help others. I was really needing your help and hence was very glad to receive your reply. Pl. don't think other wise.
&lt;br&gt;&lt;br&gt;Having come out of enterprise like sun and we started this small company 5 years ago around java product refactoring and test automation services. I understand the value of your kind of services. 
&lt;br&gt;&lt;br&gt;Are u working on Tortoise also.. if yes, how do you manage c++ and java world.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Nagendra
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/For-every-usage-of-Ant-class-api%2C-different-class-loader-tp26208572p26215759.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26214943</id>
	<title>RE: For every usage of Ant class api, different class loader</title>
	<published>2009-11-05T05:50:50Z</published>
	<updated>2009-11-05T05:50:50Z</updated>
	<author>
		<name>mgainty</name>
	</author>
	<content type="html">&lt;br&gt;came up on maven users where a build engineer wanted to call a custom task which would load using his provided classloader
&lt;br&gt;the only way I knew how to implement any ant task using supplied classloader was for the classloader to create a whole new project (build.xml) 
&lt;br&gt;&lt;br&gt;(i suspect reverseloader would have at least provided the build engineer the custom classpath he desired)
&lt;br&gt;unsure as to all the implications of using custom classloader over default system classloader
&lt;br&gt;?
&lt;br&gt;*gruss*
&lt;br&gt;Martin Gainty 
&lt;br&gt;______________________________________________ 
&lt;br&gt;Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen.
&lt;br&gt;Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire informez l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est interdite. Ce message sert à l'information seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214943&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bodewig@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214943&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Re: For every usage of Ant class api, different class loader
&lt;br&gt;&amp;gt; Date: Thu, 5 Nov 2009 14:29:41 +0100
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On 2009-11-05, Raja Nagendra Kumar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214943&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nagendra.Raja@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I was waiting for you replies.. all these days.. Thank you for answering
&lt;br&gt;&amp;gt; &amp;gt; this..
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Unless I'm mistaken there has been less than four hours between your
&lt;br&gt;&amp;gt; mail and my response ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Please understand that I work on open source projects on my free time
&lt;br&gt;&amp;gt; like early mornings (when I reponded to your mail) or my lunchbreak
&lt;br&gt;&amp;gt; (right now) and that Ant is not the only project I work on.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; or use the (deprecated) reverseloader attribute of taskdef.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; ok, in this approach, could you pl. let me know how this attribute change
&lt;br&gt;&amp;gt; &amp;gt; the class loading.. and its impact with static blocks
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Usually when you have a nested classpath Ant will still consult the
&lt;br&gt;&amp;gt; system classloader before the classpath you've specified when trying to
&lt;br&gt;&amp;gt; load a class (this usually is what you want). &amp;nbsp;If you set reverseloader
&lt;br&gt;&amp;gt; to true it will look into the specified classpath before consulting the
&lt;br&gt;&amp;gt; system classloader.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Stefan
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214943&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214943&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&amp;nbsp;		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Hotmail: Trusted email with Microsoft's powerful SPAM protection.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/GBL/go/177141664/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/GBL/go/177141664/direct/01/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/GBL/go/177141664/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/GBL/go/177141664/direct/01/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/For-every-usage-of-Ant-class-api%2C-different-class-loader-tp26208572p26214943.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26214732</id>
	<title>Re: Feature Request - Executor setting though the script</title>
	<published>2009-11-05T05:40:26Z</published>
	<updated>2009-11-05T05:40:26Z</updated>
	<author>
		<name>Stefan Bodewig</name>
	</author>
	<content type="html">On 2009-11-05, Raja Nagendra Kumar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214732&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nagendra.Raja@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Instead of specifying the executor though ANT_OPTS is it possible to set the
&lt;br&gt;&amp;gt; executor though the ant build.xml script.
&lt;br&gt;&lt;br&gt;If you use a task at the top level, may work. &amp;nbsp;Setting the executor via
&lt;br&gt;a task is a matter of invoking Project.setExecutor.
&lt;br&gt;&lt;br&gt;I'm not too familiar with Executor but it seems to be enough to simply
&lt;br&gt;declare a reference with the correct name. &amp;nbsp;I.e. you don't even need a
&lt;br&gt;custom task.
&lt;br&gt;&lt;br&gt;Something like
&lt;br&gt;&lt;br&gt;&amp;lt;typedef name=&amp;quot;some-name&amp;quot; class=&amp;quot;your.executor.here&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;classpath location=&amp;quot;if-necessary&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;/typedef&amp;gt;
&lt;br&gt;&amp;lt;some-name id=&amp;quot;ant.executor&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214732&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214732&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Feature-Request---Executor-setting-though-the-script-tp26208582p26214732.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26214567</id>
	<title>Re: For every usage of Ant class api, different class loader</title>
	<published>2009-11-05T05:29:41Z</published>
	<updated>2009-11-05T05:29:41Z</updated>
	<author>
		<name>Stefan Bodewig</name>
	</author>
	<content type="html">On 2009-11-05, Raja Nagendra Kumar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214567&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nagendra.Raja@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I was waiting for you replies.. all these days.. Thank you for answering
&lt;br&gt;&amp;gt; this..
&lt;br&gt;&lt;br&gt;Unless I'm mistaken there has been less than four hours between your
&lt;br&gt;mail and my response ...
&lt;br&gt;&lt;br&gt;Please understand that I work on open source projects on my free time
&lt;br&gt;like early mornings (when I reponded to your mail) or my lunchbreak
&lt;br&gt;(right now) and that Ant is not the only project I work on.
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; or use the (deprecated) reverseloader attribute of taskdef.
&lt;br&gt;&lt;br&gt;&amp;gt; ok, in this approach, could you pl. let me know how this attribute change
&lt;br&gt;&amp;gt; the class loading.. and its impact with static blocks
&lt;br&gt;&lt;br&gt;Usually when you have a nested classpath Ant will still consult the
&lt;br&gt;system classloader before the classpath you've specified when trying to
&lt;br&gt;load a class (this usually is what you want). &amp;nbsp;If you set reverseloader
&lt;br&gt;to true it will look into the specified classpath before consulting the
&lt;br&gt;system classloader.
&lt;br&gt;&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214567&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214567&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/For-every-usage-of-Ant-class-api%2C-different-class-loader-tp26208572p26214567.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26214429</id>
	<title>Re: Project vs Sub Project - Why such Design</title>
	<published>2009-11-05T05:22:01Z</published>
	<updated>2009-11-05T05:22:01Z</updated>
	<author>
		<name>Stefan Bodewig</name>
	</author>
	<content type="html">On 2009-11-05, Raja Nagendra Kumar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214429&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nagendra.Raja@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; For a task inside the called build file, getProject will not return the
&lt;br&gt;&amp;gt;&amp;gt; parent but the current project.
&lt;br&gt;&lt;br&gt;&amp;gt; Stefan, we are using Ant class with in a custom task and see that
&lt;br&gt;&amp;gt; getProject() is returning the parents context.
&lt;br&gt;&lt;br&gt;No, the context of the Ant task (which is a task inside the &amp;quot;parent
&lt;br&gt;project&amp;quot;, not the subproject).
&lt;br&gt;&lt;br&gt;This is the expected behavior.
&lt;br&gt;&lt;br&gt;&amp;gt; //due to few internal initalisations with in execute some where getProject()
&lt;br&gt;&amp;gt; may be changing so that subproject would see getNewproject() value..
&lt;br&gt;&lt;br&gt;No, tasks inside the build file called by the Ant task will see the new
&lt;br&gt;project, the Ant task itself is not part of that new project and never
&lt;br&gt;becomes part of it.
&lt;br&gt;&lt;br&gt;&amp;gt; Trying to understand why subproject was introduced with Ant.java.. it would
&lt;br&gt;&amp;gt; have very well been a new independent project it self. What are we gaining
&lt;br&gt;&amp;gt; as subproject and keeping its relation with parent project.
&lt;br&gt;&lt;br&gt;It is a new Project instance, I'm not really sure what kind of relation
&lt;br&gt;you see that is causing any harm.
&lt;br&gt;&lt;br&gt;One thing that would be useful would be to fork a completely separate
&lt;br&gt;Java VM for the subbuild but this comes with a lot of other problems
&lt;br&gt;(sharing of BuildListeners or references is not possible for example).
&lt;br&gt;&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214429&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26214429&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Project-vs-Sub-Project---Why-such-Design-tp26208567p26214429.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26212468</id>
	<title>Re: Project vs Sub Project - Why such Design</title>
	<published>2009-11-05T04:01:42Z</published>
	<updated>2009-11-05T04:01:42Z</updated>
	<author>
		<name>Raja Nagendra Kumar</name>
	</author>
	<content type="html">&amp;gt;For a task inside the called build file, getProject will not return the
&lt;br&gt;&amp;gt;parent but the current project.
&lt;br&gt;&lt;br&gt;Stefan, we are using Ant class with in a custom task and see that getProject() is returning the parents context.
&lt;br&gt;&lt;br&gt;I went though the code and find that lot of initialisation is done with in the execute() method, which may be the reason for such behavior. May be this could be relooked.. or there is some thing wrong with our Ant object creating and preparation.
&lt;br&gt;&lt;br&gt;Ant lAnt = new Ant();
&lt;br&gt;lAnt.bindToOwner(currentTask);
&lt;br&gt;lAnt.setTaskName(currentTask.getTaskName());
&lt;br&gt;lAnt.init();
&lt;br&gt;lAnt.setDir(createFile(aDir));
&lt;br&gt;lAnt.setInheritAll(false);
&lt;br&gt;lAnt.setInheritRefs(false);
&lt;br&gt;//&lt;b&gt;lAnt.getProject()&lt;/b&gt;&amp;nbsp;- when we call getProject() here.. it gives parent one.. 
&lt;br&gt;lAnt.execute(); 
&lt;br&gt;&lt;br&gt;//due to few internal initalisations with in execute some where getProject() may be changing so that subproject would see getNewproject() value.. but not sure how such things are needed to be done with the custom task code.. however in xml script every thing is working fine.
&lt;br&gt;&lt;br&gt;&amp;gt; Why did ant decide to with sub project approach rather than calling each ant
&lt;br&gt;&amp;gt; call as independent project by it self but it may have just one parent.
&lt;br&gt;&lt;br&gt;Trying to understand why subproject was introduced with Ant.java.. it would have very well been a new independent project it self. What are we gaining as subproject and keeping its relation with parent project. &amp;nbsp;Due to protected nature of getNewProject(), we had to go with inheritance of Ant and define a new class.
&lt;br&gt;&lt;br&gt;The context of &amp;nbsp;comments is w.r.t &amp;nbsp;to writing of custom tasks..
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Nagendra
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Project-vs-Sub-Project---Why-such-Design-tp26208567p26212468.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26211694</id>
	<title>Re: For every usage of Ant class api, different class loader</title>
	<published>2009-11-05T03:33:17Z</published>
	<updated>2009-11-05T03:33:17Z</updated>
	<author>
		<name>Raja Nagendra Kumar</name>
	</author>
	<content type="html">Hi Stefan,
&lt;br&gt;&lt;br&gt;I was waiting for you replies.. all these days.. Thank you for answering this..
&lt;br&gt;&lt;br&gt;&amp;gt;Don't use static blocks 8-)
&lt;br&gt;&lt;br&gt;Sure we shall change this.
&lt;br&gt;&lt;br&gt;&amp;gt;Alternatively, don't make your jars available in the system classloader
&lt;br&gt;This we have to put it in system class loader as we started using the Custom Executor &amp;nbsp;for the purpose of Virtual Targets handling.
&lt;br&gt;&lt;br&gt;If ant could consider such needs, and expose a property approach as in the feature request.. 
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/Feature-Request---Executor-setting-though-the-script-td26208582.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Feature-Request---Executor-setting-though-the-script-td26208582.html&lt;/a&gt;&lt;br&gt;we could avoid it. I would appricate your comments on this feature.
&lt;br&gt;&lt;br&gt;&amp;gt;or use the (deprecated) reverseloader attribute of taskdef.
&lt;br&gt;&lt;br&gt;ok, in this approach, could you pl. let me know how this attribute change the class loading.. and its impact with static blocks
&lt;br&gt;&lt;br&gt;&amp;gt; subproject and TaskDef classpath way and systemclasspath way, then we could
&lt;br&gt;&lt;br&gt;When we give a jar both in TaskDef classpath inner task and also in system classpath, 
&lt;br&gt;would the class be loaded from system or from taskdef classpath.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Nagendra
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/For-every-usage-of-Ant-class-api%2C-different-class-loader-tp26208572p26211694.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26208582</id>
	<title>Feature Request - Executor setting though the script</title>
	<published>2009-11-04T22:00:02Z</published>
	<updated>2009-11-04T22:00:02Z</updated>
	<author>
		<name>Raja Nagendra Kumar</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Instead of specifying the executor though ANT_OPTS is it possible to set the executor though the ant build.xml script.
&lt;br&gt;&lt;br&gt;In this approach of setting property ant executor etc.. (needed class path could also be set accrodingly like in taskdef) one could easily change the executor at build level or at each module level and do the custom pre and post target innovation.
&lt;br&gt;&lt;br&gt;Would like to have forum views on such feature.
&lt;br&gt;&lt;br&gt;We see such need for the reason of supporting virtual targets.. which are specific to each module. This approach can simplify a lot rather than one gaint executor which has info of each of the module and submodules.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Raja Nagendra Kumar,
&lt;br&gt;C.T.O
&lt;br&gt;www.tejasoft.com</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Feature-Request---Executor-setting-though-the-script-tp26208582p26208582.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26209543</id>
	<title>Re: For every usage of Ant class api, different class loader</title>
	<published>2009-11-04T21:35:05Z</published>
	<updated>2009-11-04T21:35:05Z</updated>
	<author>
		<name>Stefan Bodewig</name>
	</author>
	<content type="html">On 2009-11-05, Raja Nagendra Kumar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26209543&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nagendra.Raja@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; When we are using Ant.java/class api Is it possible to explicitly set the
&lt;br&gt;&amp;gt; new class loader, even if the initial classes existed in system classloader(
&lt;br&gt;&amp;gt; i.e though classpath or in ant lib directory.)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The issue we are seeing is when we load our custom tasks though taskdef, new
&lt;br&gt;&amp;gt; classloader is being used for every programmatic ant call there fore static
&lt;br&gt;&amp;gt; blocks are reinitialised for every sub ant project, however when &amp;nbsp;when we
&lt;br&gt;&amp;gt; put it in lib or in system classpath, distinct classloader is not
&lt;br&gt;&amp;gt; used..hence we have issue with some static code :) not being reinitialized.
&lt;br&gt;&lt;br&gt;Don't use static blocks 8-)
&lt;br&gt;&lt;br&gt;Alternatively, don't make your jars available in the system classloader
&lt;br&gt;or use the (deprecated) reverseloader attribute of taskdef.
&lt;br&gt;&lt;br&gt;&amp;gt; Once we understand classloder &amp;nbsp;behaviors in ant based on project vs
&lt;br&gt;&amp;gt; subproject and TaskDef classpath way and systemclasspath way, then we could
&lt;br&gt;&amp;gt; be more confident to fix the current issue.
&lt;br&gt;&lt;br&gt;It doesn't have any real relation to subprojects at all. &amp;nbsp;Ant normally
&lt;br&gt;delegates loading of any classes up the classloader chain.
&lt;br&gt;&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26209543&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26209543&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/For-every-usage-of-Ant-class-api%2C-different-class-loader-tp26208572p26209543.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26209517</id>
	<title>Re: Project vs Sub Project - Why such Design</title>
	<published>2009-11-04T21:30:04Z</published>
	<updated>2009-11-04T21:30:04Z</updated>
	<author>
		<name>Stefan Bodewig</name>
	</author>
	<content type="html">On 2009-11-05, Raja Nagendra Kumar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26209517&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nagendra.Raja@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I see a protected method getNewProject()
&lt;br&gt;&lt;br&gt;&amp;gt; The sub project getProject() seems to give the value of parent project..
&lt;br&gt;&lt;br&gt;Both is inside the &amp;lt;ant&amp;gt; task?
&lt;br&gt;&lt;br&gt;&amp;lt;ant&amp;gt; is the task that creates the subproject (using getNewProject) and
&lt;br&gt;executes the targets inside of it. &amp;nbsp;The task itself is in the calling
&lt;br&gt;project and thus getProject returns the parent project (like it does for
&lt;br&gt;any other task in that project as well).
&lt;br&gt;&lt;br&gt;For a task inside the called build file, getProject will not return the
&lt;br&gt;parent but the current project.
&lt;br&gt;&lt;br&gt;&amp;gt; What is the senario
&lt;br&gt;&lt;br&gt;&amp;gt; A.xml -&amp;gt; calls B.xml --&amp;gt; c.xml
&lt;br&gt;&lt;br&gt;&amp;gt; When c.xml is called, is c the sub project of B and also A..
&lt;br&gt;&lt;br&gt;c is a sub project of B, yes.
&lt;br&gt;&lt;br&gt;&amp;gt; Why did ant decide to with sub project approach rather than calling each ant
&lt;br&gt;&amp;gt; call as independent project by it self but it may have just one parent.
&lt;br&gt;&lt;br&gt;I don't think I understand the question. &amp;nbsp;Are you asking why c is not a
&lt;br&gt;sub project of A instead of B? &amp;nbsp;Why should it? &amp;nbsp;If B.xml contains an
&lt;br&gt;&amp;lt;ant&amp;gt; task invoking c.xml the build file writer of B.xml will certainly
&lt;br&gt;expect that B.xml will be the parent. &amp;nbsp;B.xml could be invoked directly
&lt;br&gt;from the command line rather than via an &amp;lt;ant&amp;gt; task in any other build
&lt;br&gt;file after all.
&lt;br&gt;&lt;br&gt;&amp;gt; I am sure this must be having some thing to do with class loaders,
&lt;br&gt;&amp;gt; parallelization etc..
&lt;br&gt;&lt;br&gt;Not at all.
&lt;br&gt;&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26209517&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26209517&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Project-vs-Sub-Project---Why-such-Design-tp26208567p26209517.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26208572</id>
	<title>For every usage of Ant class api, different class loader</title>
	<published>2009-11-04T20:54:01Z</published>
	<updated>2009-11-04T20:54:01Z</updated>
	<author>
		<name>Raja Nagendra Kumar</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;When we are using Ant.java/class api Is it possible to explicitly set the new class loader, even if the initial classes existed in system classloader( i.e though classpath or in ant lib directory.)
&lt;br&gt;&lt;br&gt;The issue we are seeing is when we load our custom tasks though taskdef, new classloader is being used for every programmatic ant call there fore static blocks are reinitialised for every sub ant project, however when &amp;nbsp;when we put it in lib or in system classpath, distinct classloader is not used..hence we have issue with some static code :) not being reinitialized.
&lt;br&gt;&lt;br&gt;Once we understand classloder &amp;nbsp;behaviors in ant based on project vs subproject and TaskDef classpath way and systemclasspath way, then we could be more confident to fix the current issue.
&lt;br&gt;&lt;br&gt;Looking for experts help.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Raja Nagendra Kumar,
&lt;br&gt;C.T.O
&lt;br&gt;www.tejasoft.com
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/For-every-usage-of-Ant-class-api%2C-different-class-loader-tp26208572p26208572.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26208567</id>
	<title>Project vs Sub Project - Why such Design</title>
	<published>2009-11-04T20:30:34Z</published>
	<updated>2009-11-04T20:30:34Z</updated>
	<author>
		<name>Raja Nagendra Kumar</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Is there a good documentation or the details about how ant's project and sub project design.
&lt;br&gt;&lt;br&gt;I see a protected method getNewProject()
&lt;br&gt;&lt;br&gt;The sub project getProject() seems to give the value of parent project.. 
&lt;br&gt;&lt;br&gt;What is the senario
&lt;br&gt;&lt;br&gt;A.xml -&amp;gt; calls B.xml --&amp;gt; c.xml
&lt;br&gt;&lt;br&gt;When c.xml is called, is c the sub project of B and also A..
&lt;br&gt;&lt;br&gt;Why did ant decide to with sub project approach rather than calling each ant call as independent project by it self but it may have just one parent.
&lt;br&gt;&lt;br&gt;I am sure this must be having some thing to do with class loaders, parallelization etc.. Any deep inputs in this would be of great help.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Raja Nagendra Kumar,
&lt;br&gt;C.T.O
&lt;br&gt;www.tejasoft.com
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Project-vs-Sub-Project---Why-such-Design-tp26208567p26208567.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26204714</id>
	<title>Re: [VOTE] New committer - Jon Schneider</title>
	<published>2009-11-04T13:12:26Z</published>
	<updated>2009-11-04T13:12:26Z</updated>
	<author>
		<name>Xavier Hanin</name>
	</author>
	<content type="html">+1
&lt;br&gt;&lt;br&gt;Congrats and welcome!
&lt;br&gt;&lt;br&gt;On Tue, Nov 3, 2009 at 22:25, Antoine Levy Lambert &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26204714&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;antoine@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; +1 Antoine
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Matt Benson wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Please vote whether to admit Jon Schneider as an Ant committer for his
&lt;br&gt;&amp;gt;&amp;gt; contributions to Ivy and IvyDE. &amp;nbsp;Voting is open for one week. &amp;nbsp;Remember that
&lt;br&gt;&amp;gt;&amp;gt; although only PMC votes are binding, anyone may give his opinion.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; [ ] +1 Welcome!
&lt;br&gt;&amp;gt;&amp;gt; [ ] -1 I don't want him (because of: ...)
&lt;br&gt;&amp;gt;&amp;gt; [ ] +/-0 I don't care
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26204714&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26204714&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Xavier Hanin - 4SH France - &lt;a href=&quot;http://www.4sh.fr/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.4sh.fr/&lt;/a&gt;&lt;br&gt;BordeauxJUG creator &amp; leader - &lt;a href=&quot;http://www.bordeauxjug.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bordeauxjug.org/&lt;/a&gt;&lt;br&gt;Apache Ivy Creator - &lt;a href=&quot;http://ant.apache.org/ivy/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ant.apache.org/ivy/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-VOTE--New-committer---Jon-Schneider-tp26165122p26204714.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26202366</id>
	<title>Re: if/unless Attributes</title>
	<published>2009-11-04T10:47:33Z</published>
	<updated>2009-11-04T10:47:33Z</updated>
	<author>
		<name>Jesse Glick</name>
	</author>
	<content type="html">Stefan Bodewig wrote:
&lt;br&gt;&amp;gt;&amp;gt; Should there be an entry in WHATSNEW, and updates to the manual?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Absolutely. &amp;nbsp;Unfortunately I'm pretty much maxed out for the next few
&lt;br&gt;&amp;gt; weeks and struggle to get some open source coding time.
&lt;br&gt;&lt;br&gt;I can try to document it then.
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26202366&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26202366&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/if-unless-Attributes-tp25593520p26202366.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26190960</id>
	<title>Re: if/unless Attributes</title>
	<published>2009-11-03T20:43:18Z</published>
	<updated>2009-11-03T20:43:18Z</updated>
	<author>
		<name>Stefan Bodewig</name>
	</author>
	<content type="html">On 2009-11-04, Jesse Glick &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26190960&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jesse.glick@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; So it looks like all this is now implemented
&lt;br&gt;&lt;br&gt;Yep, including tests.
&lt;br&gt;&lt;br&gt;&amp;gt; Should there be an entry in WHATSNEW, and updates to the manual?
&lt;br&gt;&lt;br&gt;Absolutely. &amp;nbsp;Unfortunately I'm pretty much maxed out for the next few
&lt;br&gt;weeks and struggle to get some open source coding time.
&lt;br&gt;&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26190960&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26190960&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/if-unless-Attributes-tp25593520p26190960.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26189373</id>
	<title>Re: if/unless Attributes</title>
	<published>2009-11-03T16:52:10Z</published>
	<updated>2009-11-03T16:52:10Z</updated>
	<author>
		<name>Jesse Glick</name>
	</author>
	<content type="html">Stefan Bodewig wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; 2. Introduce Project.isTrueOrSet(String val) which would return true
&lt;br&gt;&amp;gt;&amp;gt; if toBoolean(val) || getProperty(val) != null.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; PropertyHelper likely is the better place for this, otherwise I agree,
&lt;br&gt;&amp;gt; the code has to move out of Target and needs the described semantics. &amp;nbsp;[...]
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; 3. Call iTOS from &amp;lt;target&amp;gt;, &amp;lt;fail&amp;gt;, etc. - anything with if/unless
&lt;br&gt;&amp;gt;&amp;gt; attributes with the standard meaning.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Sounds good.
&lt;/div&gt;&lt;br&gt;So it looks like all this is now implemented - nice! Should there be an entry in WHATSNEW, and updates to the manual?
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26189373&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26189373&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/if-unless-Attributes-tp25593520p26189373.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26186885</id>
	<title>Re: [VOTE] New committer - Jon Schneider</title>
	<published>2009-11-03T13:25:02Z</published>
	<updated>2009-11-03T13:25:02Z</updated>
	<author>
		<name>antoinell</name>
	</author>
	<content type="html">+1 Antoine
&lt;br&gt;&lt;br&gt;Matt Benson wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Please vote whether to admit Jon Schneider as an Ant committer for his contributions to Ivy and IvyDE. &amp;nbsp;Voting is open for one week. &amp;nbsp;Remember that although only PMC votes are binding, anyone may give his opinion.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [ ] +1 Welcome!
&lt;br&gt;&amp;gt; [ ] -1 I don't want him (because of: ...)
&lt;br&gt;&amp;gt; [ ] +/-0 I don't care
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26186885&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26186885&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-VOTE--New-committer---Jon-Schneider-tp26165122p26186885.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26177825</id>
	<title>Re: [VOTE] New committer - Jon Schneider</title>
	<published>2009-11-03T02:40:24Z</published>
	<updated>2009-11-03T02:40:24Z</updated>
	<author>
		<name>Peter Reilly-2</name>
	</author>
	<content type="html">+1
&lt;br&gt;Peter
&lt;br&gt;&lt;br&gt;On Tue, Nov 3, 2009 at 7:25 AM, &amp;nbsp;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26177825&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jan.Materne@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; +1
&lt;br&gt;&amp;gt; Jan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;-----Ursprüngliche Nachricht-----
&lt;br&gt;&amp;gt;&amp;gt;Von: Conor MacNeill [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26177825&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;conor@...&lt;/a&gt;]
&lt;br&gt;&amp;gt;&amp;gt;Gesendet: Montag, 2. November 2009 23:06
&lt;br&gt;&amp;gt;&amp;gt;An: Ant Developers List
&lt;br&gt;&amp;gt;&amp;gt;Betreff: Re: [VOTE] New committer - Jon Schneider
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;Matt Benson wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Please vote whether to admit Jon Schneider as an Ant
&lt;br&gt;&amp;gt;&amp;gt;committer for his contributions to Ivy and IvyDE.  Voting is
&lt;br&gt;&amp;gt;&amp;gt;open for one week.  Remember that although only PMC votes are
&lt;br&gt;&amp;gt;&amp;gt;binding, anyone may give his opinion.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;+1
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;Conor
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26177825&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26177825&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26177825&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26177825&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26177825&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26177825&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-VOTE--New-committer---Jon-Schneider-tp26165122p26177825.html" />
</entry>

</feed>
