svn commit: r1201494 - /ant/ivy/core/trunk/ivy.xml

2011-11-13 Thread hibou
Author: hibou
Date: Sun Nov 13 19:51:02 2011
New Revision: 1201494

URL: http://svn.apache.org/viewvc?rev=1201494view=rev
Log:
Maven central is boring slow, so let's stick with a fixed revision

Modified:
ant/ivy/core/trunk/ivy.xml

Modified: ant/ivy/core/trunk/ivy.xml
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/ivy.xml?rev=1201494r1=1201493r2=1201494view=diff
==
--- ant/ivy/core/trunk/ivy.xml (original)
+++ ant/ivy/core/trunk/ivy.xml Sun Nov 13 19:51:02 2011
@@ -55,7 +55,7 @@
 
!-- Test dependencies --
dependency org=junit name=junit rev=3.8.2 
conf=test-default /
-   dependency org=commons-lang name=commons-lang 
rev=[1.0,3.0[ conf=test-default /
+   dependency org=commons-lang name=commons-lang rev=2.6 
conf=test-default /
dependency org=org.apache.ant name=ant-testutil 
rev=1.7.0 conf=test-default transitive=false /
 dependency org=ant name=ant-launcher rev=1.6.2 
conf=test-default transitive=false/
 dependency org=ant-contrib name=ant-contrib rev=1.0b3 
conf=test-default transitive=false/




svn commit: r1201495 - in /ant/ivy/core/trunk: src/java/org/apache/ivy/osgi/repo/RepoDescriptorBasedResolver.java test/java/org/apache/ivy/osgi/obr/OBRResolverTest.java

2011-11-13 Thread hibou
Author: hibou
Date: Sun Nov 13 19:52:37 2011
New Revision: 1201495

URL: http://svn.apache.org/viewvc?rev=1201495view=rev
Log:
Fix setter for RequirementStrategy

Modified:

ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/repo/RepoDescriptorBasedResolver.java
ant/ivy/core/trunk/test/java/org/apache/ivy/osgi/obr/OBRResolverTest.java

Modified: 
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/repo/RepoDescriptorBasedResolver.java
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/repo/RepoDescriptorBasedResolver.java?rev=1201495r1=1201494r2=1201495view=diff
==
--- 
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/repo/RepoDescriptorBasedResolver.java
 (original)
+++ 
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/repo/RepoDescriptorBasedResolver.java
 Sun Nov 13 19:52:37 2011
@@ -80,12 +80,12 @@ public abstract class RepoDescriptorBase
 
 private RequirementStrategy requirementStrategy = 
RequirementStrategy.noambiguity;
 
-public void setImportPackageStrategy(RequirementStrategy 
importPackageStrategy) {
+public void setRequirementStrategy(RequirementStrategy 
importPackageStrategy) {
 this.requirementStrategy = importPackageStrategy;
 }
 
-public void setImportPackageStrategy(String strategy) {
-setImportPackageStrategy(RequirementStrategy.valueOf(strategy));
+public void setRequirementStrategy(String strategy) {
+setRequirementStrategy(RequirementStrategy.valueOf(strategy));
 }
 
 protected void setRepoDescriptor(RepoDescriptor repoDescriptor) {

Modified: 
ant/ivy/core/trunk/test/java/org/apache/ivy/osgi/obr/OBRResolverTest.java
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/java/org/apache/ivy/osgi/obr/OBRResolverTest.java?rev=1201495r1=1201494r2=1201495view=diff
==
--- ant/ivy/core/trunk/test/java/org/apache/ivy/osgi/obr/OBRResolverTest.java 
(original)
+++ ant/ivy/core/trunk/test/java/org/apache/ivy/osgi/obr/OBRResolverTest.java 
Sun Nov 13 19:52:37 2011
@@ -252,7 +252,7 @@ public class OBRResolverTest extends Tes
 
 public void testResolveImportAmbiguity() throws Exception {
 String jarName = 
org.apache.ivy.osgi.testbundle.importing.ambiguity_3.2.1.jar;
-bundleResolver.setImportPackageStrategy(RequirementStrategy.first);
+bundleResolver.setRequirementStrategy(RequirementStrategy.first);
 genericTestResolve(jarName, default,
 new ModuleRevisionId[] {MRID_TEST_BUNDLE_EXPORTING_AMBIGUITY}, new 
ModuleRevisionId[] {
 MRID_TEST_BUNDLE, MRID_TEST_BUNDLE_IMPORTING_VERSION});
@@ -260,13 +260,13 @@ public class OBRResolverTest extends Tes
 
 public void testResolveImportNoAmbiguity() throws Exception {
 String jarName = 
org.apache.ivy.osgi.testbundle.importing.ambiguity_3.2.1.jar;
-
bundleResolver.setImportPackageStrategy(RequirementStrategy.noambiguity);
+bundleResolver.setRequirementStrategy(RequirementStrategy.noambiguity);
 genericTestFailingResolve(jarName, default);
 }
 
 public void testResolveRequireAmbiguity() throws Exception {
 String jarName = 
org.apache.ivy.osgi.testbundle.require.ambiguity_1.1.1.jar;
-
bundleResolver.setImportPackageStrategy(RequirementStrategy.noambiguity);
+bundleResolver.setRequirementStrategy(RequirementStrategy.noambiguity);
 genericTestResolve(jarName, default, new ModuleRevisionId[] 
{MRID_TEST_BUNDLE,
 MRID_TEST_BUNDLE_IMPORTING_VERSION});
 }




svn commit: r1201497 - in /ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core: BundleInfo.java BundleInfoAdapter.java

2011-11-13 Thread hibou
Author: hibou
Date: Sun Nov 13 19:54:16 2011
New Revision: 1201497

URL: http://svn.apache.org/viewvc?rev=1201497view=rev
Log:
avoid NPE

Modified:
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfo.java
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java

Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfo.java
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfo.java?rev=1201497r1=1201496r2=1201497view=diff
==
--- ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfo.java 
(original)
+++ ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfo.java Sun 
Nov 13 19:54:16 2011
@@ -267,7 +267,7 @@ public class BundleInfo {
 Iterator itCapabilities = capabilities.iterator();
 while (itCapabilities.hasNext()) {
 BundleCapability capability = (BundleCapability) 
itCapabilities.next();
-if (capability.getType().equals(PACKAGE_TYPE)) {
+if (PACKAGE_TYPE.equals(capability.getType())) {
 set.add((ExportPackage) capability);
 }
 }
@@ -279,7 +279,7 @@ public class BundleInfo {
 Iterator itCapabilities = capabilities.iterator();
 while (itCapabilities.hasNext()) {
 BundleCapability capability = (BundleCapability) 
itCapabilities.next();
-if (capability.getType().equals(SERVICE_TYPE)) {
+if (SERVICE_TYPE.equals(capability.getType())) {
 set.add(capability);
 }
 }

Modified: 
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java?rev=1201497r1=1201496r2=1201497view=diff
==
--- ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java 
(original)
+++ ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/BundleInfoAdapter.java 
Sun Nov 13 19:54:16 2011
@@ -283,7 +283,7 @@ public class BundleInfoAdapter {
 String type = requirement.getType();
 String name = requirement.getName();
 
-if (type.equals(BundleInfo.PACKAGE_TYPE)  
exportedPkgNames.contains(name)) {
+if (BundleInfo.PACKAGE_TYPE.equals(type)  
exportedPkgNames.contains(name)) {
 // don't declare package exported by the current bundle
 continue;
 }
@@ -293,7 +293,7 @@ public class BundleInfoAdapter {
 DefaultDependencyDescriptor dd = new 
DefaultDependencyDescriptor(ddmrid, false);
 
 String conf = CONF_NAME_DEFAULT;
-if (type.equals(BundleInfo.PACKAGE_TYPE)) {
+if (BundleInfo.PACKAGE_TYPE.equals(type)) {
 // declare the configuration for the package
 conf = CONF_USE_PREFIX + name;
 md.addConfiguration(new Configuration(CONF_USE_PREFIX + name, 
Visibility.PUBLIC,




DO NOT REPLY [Bug 51829] URLResource.connect() logs as error when URL.openConnection() fails

2011-11-13 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=51829

Stephan Piesker piesk...@zedat.fu-berlin.de changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #3 from Stephan Piesker piesk...@zedat.fu-berlin.de 2011-11-13 
19:54:25 UTC ---
OK, I can reproduce this issue. But I am of the opinion it is correct. import
optional=true means that the script should continue in the event of an
error.
The manual is:
Optional | If true, do not exist stop the build if the file does not, default
is false.

You want that the script will continue running in the event of an error.
It does this well and you know indicates that there is an error
when you import the file was foo.x.
The problem I see in the Tag url, because this would cause the error.
First, by the Tag url trying to open a file and the error happens there.
Import realize that something went wrong and continues.
In import there is one attribute that file names.
Why do you use url?
Hereby it should work:

project
 import file=foo.x optional=true/
/ project

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


svn commit: r1201498 - in /ant/ivy/core/trunk: src/java/org/apache/ivy/osgi/p2/ src/java/org/apache/ivy/osgi/repo/ src/java/org/apache/ivy/osgi/updatesite/ test/java/org/apache/ivy/osgi/updatesite/ te

2011-11-13 Thread hibou
Author: hibou
Date: Sun Nov 13 19:55:21 2011
New Revision: 1201498

URL: http://svn.apache.org/viewvc?rev=1201498view=rev
Log:
Fix composite P2 respotory parsing

Added:
ant/ivy/core/trunk/test/test-p2/composite/
ant/ivy/core/trunk/test/test-p2/composite/compositeArtifacts.xml   (with 
props)
ant/ivy/core/trunk/test/test-p2/composite/compositeContent.xml   (with 
props)
Modified:
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2ArtifactParser.java
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2CompositeParser.java
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2Descriptor.java
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2MetadataParser.java
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/repo/RepoDescriptor.java

ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoader.java

ant/ivy/core/trunk/test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java

Modified: 
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2ArtifactParser.java
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2ArtifactParser.java?rev=1201498r1=1201497r2=1201498view=diff
==
--- ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2ArtifactParser.java 
(original)
+++ ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2ArtifactParser.java 
Sun Nov 13 19:55:21 2011
@@ -38,12 +38,15 @@ public class P2ArtifactParser implements
 
 private final P2Descriptor p2Descriptor;
 
-public P2ArtifactParser(P2Descriptor p2Descriptor) {
+private final String repoUrl;
+
+public P2ArtifactParser(P2Descriptor p2Descriptor, String repoUrl) {
 this.p2Descriptor = p2Descriptor;
+this.repoUrl = repoUrl;
 }
 
 public void parse(InputStream in) throws ParseException, IOException, 
SAXException {
-RepositoryHandler handler = new RepositoryHandler(p2Descriptor);
+RepositoryHandler handler = new RepositoryHandler(p2Descriptor, 
repoUrl);
 try {
 XMLHelper.parse(in, null, handler, null);
 } catch (ParserConfigurationException e) {
@@ -63,7 +66,7 @@ public class P2ArtifactParser implements
 
 private Map/* String, String */patternsByClassifier = new HashMap();
 
-public RepositoryHandler(final P2Descriptor p2Descriptor) {
+public RepositoryHandler(final P2Descriptor p2Descriptor, String 
repoUrl) {
 super(REPOSITORY);
 // addChild(new PropertiesHandler(), new ChildElementHandler() {
 // public void childHanlded(DelegetingHandler child) {
@@ -85,7 +88,7 @@ public class P2ArtifactParser implements
 }
 }
 });
-addChild(new ArtifactsHandler(p2Descriptor, patternsByClassifier),
+addChild(new ArtifactsHandler(p2Descriptor, patternsByClassifier, 
repoUrl),
 new ChildElementHandler() {
 public void childHanlded(DelegetingHandler child) {
 // nothing to do
@@ -153,12 +156,13 @@ public class P2ArtifactParser implements
 // private static final String SIZE = size;
 
 public ArtifactsHandler(final P2Descriptor p2Descriptor,
-final Map/* String, String */patternsByClassifier) {
+final Map/* String, String */patternsByClassifier, final 
String repoUrl) {
 super(ARTIFACTS);
 addChild(new ArtifactHandler(), new ChildElementHandler() {
 public void childHanlded(DelegetingHandler child) {
 P2Artifact a = ((ArtifactHandler) child).p2Artifact;
 String url = (String) 
patternsByClassifier.get(a.getClassifier());
+url = url.replaceAll(\\$\\{repoUrl\\}, repoUrl);
 p2Descriptor.addArtifactUrl(a.getId(), a.getVersion(), 
url);
 }
 });

Modified: 
ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2CompositeParser.java
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2CompositeParser.java?rev=1201498r1=1201497r2=1201498view=diff
==
--- ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2CompositeParser.java 
(original)
+++ ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/p2/P2CompositeParser.java 
Sun Nov 13 19:55:21 2011
@@ -21,7 +21,9 @@ import java.io.IOException;
 import java.io.InputStream;
 import java.text.ParseException;
 import java.util.ArrayList;
+import java.util.LinkedHashSet;
 import java.util.List;
+import java.util.Set;
 
 import javax.xml.parsers.ParserConfigurationException;
 
@@ -32,9 +34,9 @@ import org.xml.sax.SAXException;
 
 public class P2CompositeParser implements XMLInputParser {
 
-private List/* String */childLocations;
+private Set/* String */childLocations = new 

Build failed in Jenkins: Ivy-tests #67

2011-11-13 Thread Apache Jenkins Server
See https://builds.apache.org/job/Ivy-tests/67/changes

Changes:

[hibou] Fix composite P2 respotory parsing

[hibou] avoid NPE

[hibou] Fix setter for RequirementStrategy

[hibou] Maven central is boring slow, so let's stick with a fixed revision

--
[...truncated 148 lines...]

prepare-test-jar-repositories:
  [jar] Building jar: 
/x1/jenkins/jenkins-slave/workspace/Ivy-tests/trunk/test/jar-repos/jarrepo1.jar
  [jar] Building jar: 
/x1/jenkins/jenkins-slave/workspace/Ivy-tests/trunk/test/jar-repos/jarrepo1_subdir.jar

test-internal:
[junit] Running org.apache.ivy.IvyTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1,77 sec
[junit] Running org.apache.ivy.MainTest
[junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 1,188 sec
[junit] Running org.apache.ivy.ant.AntBuildTriggerTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 32,073 sec
[junit] Running org.apache.ivy.ant.AntCallTriggerTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 45,972 sec
[junit] Running org.apache.ivy.ant.IvyAntSettingsBuildFileTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 1,662 sec
[junit] Running org.apache.ivy.ant.IvyArtifactPropertyTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 1,392 sec
[junit] Running org.apache.ivy.ant.IvyArtifactReportTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1,044 sec
[junit] Running org.apache.ivy.ant.IvyBuildListTest
[junit] Tests run: 15, Failures: 0, Errors: 0, Time elapsed: 2,868 sec
[junit] Running org.apache.ivy.ant.IvyBuildNumberTest
[junit] Tests run: 12, Failures: 0, Errors: 0, Time elapsed: 0,946 sec
[junit] Running org.apache.ivy.ant.IvyCacheFilesetTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1,36 sec
[junit] Running org.apache.ivy.ant.IvyCachePathTest
[junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 1,941 sec
[junit] Running org.apache.ivy.ant.IvyCleanCacheTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0,612 sec
[junit] Running org.apache.ivy.ant.IvyConfigureTest
[junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 0,923 sec
[junit] Running org.apache.ivy.ant.IvyConvertPomTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1,454 sec
[junit] Running org.apache.ivy.ant.IvyDeliverTest
[junit] Tests run: 15, Failures: 0, Errors: 0, Time elapsed: 44,297 sec
[junit] Running org.apache.ivy.ant.IvyFindRevisionTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0,824 sec
[junit] Running org.apache.ivy.ant.IvyInfoRepositoryTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0,823 sec
[junit] Running org.apache.ivy.ant.IvyInfoTest
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 1,136 sec
[junit] Running org.apache.ivy.ant.IvyInstallTest
[junit] Tests run: 11, Failures: 0, Errors: 0, Time elapsed: 18,82 sec
[junit] Running org.apache.ivy.ant.IvyListModulesTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0,678 sec
[junit] Running org.apache.ivy.ant.IvyPostResolveTaskTest
[junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 2,241 sec
[junit] Running org.apache.ivy.ant.IvyPublishTest
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 32,823 sec
[junit] Running org.apache.ivy.ant.IvyReportTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 2,502 sec
[junit] Running org.apache.ivy.ant.IvyRepositoryReportTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 1,434 sec
[junit] Running org.apache.ivy.ant.IvyResolveTest
[junit] Tests run: 31, Failures: 0, Errors: 0, Time elapsed: 19,675 sec
[junit] Running org.apache.ivy.ant.IvyResourcesTest
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 1,868 sec
[junit] Running org.apache.ivy.ant.IvyRetrieveBuildFileTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1,017 sec
[junit] Running org.apache.ivy.ant.IvyRetrieveTest
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 2,646 sec
[junit] Running org.apache.ivy.ant.IvyTaskTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0,626 sec
[junit] Running org.apache.ivy.ant.IvyVarTest
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0,721 sec
[junit] Running org.apache.ivy.core.NormalRelativeUrlResolverTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1,011 sec
[junit] Running org.apache.ivy.core.cache.DefaultRepositoryCacheManagerTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1,09 sec
[junit] Running org.apache.ivy.core.cache.ModuleDescriptorMemoryCacheTest
[junit] Tests run: 10, Failures: 0, Errors: 0, Time elapsed: 0,086 sec
[junit] Running 

[GUMP@vmgump]: Project svn-antlib-test (in module ant-antlibs) failed

2011-11-13 Thread Gump Integration Build
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project svn-antlib-test has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 217 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- svn-antlib-test :  Task and Type Libraries for Apache Ant


Full details are available at:
http://vmgump.apache.org/gump/public/ant-antlibs/svn-antlib-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on ant-testutil exists, no need to add for property 
ant-testutil.jar.
 -INFO- Failed with reason build failed



The following work was performed:
http://vmgump.apache.org/gump/public/ant-antlibs/svn-antlib-test/gump_work/build_ant-antlibs_svn-antlib-test.html
Work Name: build_ant-antlibs_svn-antlib-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 19 secs
Command Line: /usr/lib/jvm/java-6-openjdk/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only 
-Xbootclasspath/p:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dant-testutil.jar=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar 
test 
[Working Directory: /srv/gump/public/workspace/ant-antlibs/svn]
CLASSPATH: 
/usr/lib/jvm/java-6-openjdk/lib/tools.jar:/srv/gump/public/workspace/ant-antlibs/svn/build/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar:/srv/gump/public/workspace/junit/dist/junit-14112011.jar:/srv/gump/public/workspace/junit/dist/junit-dep-14112011.jar:/srv/gump/public/workspace/ant-antlibs/svn/build/ant-svn-14112011.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar
-
[junit] FAILED
[junit] null
[junit] junit.framework.AssertionFailedError
[junit] at junit.framework.Assert.fail(Assert.java:48)
[junit] at junit.framework.Assert.assertTrue(Assert.java:20)
[junit] at junit.framework.Assert.assertTrue(Assert.java:27)
[junit] at 
org.apache.ant.svn.SvnChangeLogTaskTest.assertRev161469(SvnChangeLogTaskTest.java:115)
[junit] at 
org.apache.ant.svn.SvnChangeLogTaskTest.testEndDate(SvnChangeLogTaskTest.java:72)
[junit] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[junit] at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
[junit] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[junit] at java.lang.reflect.Method.invoke(Method.java:616)
[junit] at junit.framework.TestCase.runTest(TestCase.java:168)
[junit] at junit.framework.TestCase.runBare(TestCase.java:134)
[junit] at junit.framework.TestResult$1.protect(TestResult.java:110)
[junit] at junit.framework.TestResult.runProtected(TestResult.java:128)
[junit] at junit.framework.TestResult.run(TestResult.java:113)
[junit] at junit.framework.TestCase.run(TestCase.java:124)
[junit] at junit.framework.TestSuite.runTest(TestSuite.java:243)
[junit] at junit.framework.TestSuite.run(TestSuite.java:238)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:520)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:1060)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:884)
[junit] 
[junit] TEST org.apache.ant.svn.SvnChangeLogTaskTest FAILED
[junit] Testsuite: org.apache.ant.svn.SvnRevisionDiffTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1.863 sec
[junit] 
[junit] Testcase: testDiff took 1.313 sec
[junit] Testcase: testDiffUrl took 0.549 sec
[junit] Testsuite: org.apache.ant.svn.SvnTagDiffTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3.974 sec
[junit] 
[junit] Testcase: testDiffWithTwoTags took 1.147 sec
[junit] Testcase: testDiffWithExplicitTrunk took 1.512 sec
[junit] Testcase: testDiffWithImplicitTrunk took 1.314 sec
[junit] 

[GUMP@vmgump]: Project ivy-tests (in module ivy) failed

2011-11-13 Thread Gump Integration Build
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project ivy-tests has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 102 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- ivy-tests :  Apache Ivy is a tool for managing (recording, tracking, 
reso...


Full details are available at:
http://vmgump.apache.org/gump/public/ivy/ivy-tests/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- Failed with reason build failed
 -INFO- Project Reports in: /srv/gump/public/workspace/ivy/build/test-report



The following work was performed:
http://vmgump.apache.org/gump/public/ivy/ivy-tests/gump_work/build_ivy_ivy-tests.html
Work Name: build_ivy_ivy-tests (Type: Build)
Work ended in a state of : Failed
Elapsed: 4 mins 35 secs
Command Line: /usr/lib/jvm/java-6-openjdk/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only 
-Xbootclasspath/p:/srv/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar:/srv/gump/public/workspace/xml-xalan/build/serializer.jar
 org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Doffline=true -Dno.resolve=true test 
[Working Directory: /srv/gump/public/workspace/ivy]
CLASSPATH: 
/usr/lib/jvm/java-6-openjdk/lib/tools.jar:/srv/gump/public/workspace/ivy/build/test:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-14112011.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-14112011.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/packages/bouncycastle-jdk14/bcpg-jdk14-145.jar:/srv/gump/packages/bouncycastle-jdk14/bcprov-ext-jdk14-145.jar:/srv/gump/public/workspace/httpcomponents/oac.hc3x/dist/commons-httpclient.jar:/srv/gump/public/workspace/commons-codec-1.x/dist/commons-codec-14112011.jar:/srv/gump/packages/apache-
 
attic/oro-2.0.8.jar:/srv/gump/packages/apache-commons/commons-vfs-1.0.jar:/srv/gump/packages/apache-attic/slide-webdavlib-2.1.jar:/srv/gump/packages/jsch/jsch-0.1.38.jar:/srv/gump/public/workspace/junit/dist/junit-14112011.jar:/srv/gump/public/workspace/junit/dist/junit-dep-14112011.jar:/srv/gump/public/workspace/commons-lang-2.x/target/commons-lang-2.7-SNAPSHOT.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-14112011.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-14112011.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
-
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0,433 sec
[junit] Running org.apache.ivy.plugins.report.XmlReportWriterTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0,953 sec
[junit] Running org.apache.ivy.plugins.repository.vfs.VfsRepositoryTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0,974 sec
[junit] Running org.apache.ivy.plugins.repository.vfs.VfsResourceTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0,739 sec
[junit] Running org.apache.ivy.plugins.resolver.ChainResolverTest
[junit] Tests run: 15, Failures: 0, Errors: 0, Time elapsed: 0,961 sec
[junit] Running org.apache.ivy.plugins.resolver.DualResolverTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0,478 sec
[junit] Running org.apache.ivy.plugins.resolver.FileSystemResolverTest
[junit] Tests run: 25, Failures: 0, Errors: 0, Time elapsed: 2,24 sec
[junit] Running org.apache.ivy.plugins.resolver.IvyRepResolverTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0,772 sec
[junit] Running org.apache.ivy.plugins.resolver.JarResolverTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0,972 sec
[junit] Running org.apache.ivy.plugins.resolver.Maven2LocalTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0,744 sec
[junit] Running org.apache.ivy.plugins.resolver.MirroredURLResolverTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 1,585 sec
[junit] Running org.apache.ivy.plugins.resolver.PackagerResolverTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3,004 sec
[junit] Running org.apache.ivy.plugins.resolver.VfsResolverTest
[junit] Tests run: 2, 

[GUMP@vmgump]: Project test-ant (in module ant) failed

2011-11-13 Thread Gump Integration Build
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project test-ant has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 171 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- test-ant :  Java based build tool


Full details are available at:
http://vmgump.apache.org/gump/public/ant/test-ant/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- Optional dependency jakarta-tomcat-4.0 prerequisite failed with reason 
build failed
 -INFO- Failed with reason build failed



The following work was performed:
http://vmgump.apache.org/gump/public/ant/test-ant/gump_work/build_ant_test-ant.html
Work Name: build_ant_test-ant (Type: Build)
Work ended in a state of : Failed
Elapsed: 15 mins 18 secs
Command Line: /usr/lib/jvm/java-6-openjdk/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only 
-Xbootclasspath/p:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar:/srv/gump/public/workspace/xml-xalan/build/serializer.jar
 org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dtest.haltonfailure=false -Dant.home=/srv/gump/public/workspace/ant/dist 
run-tests 
[Working Directory: /srv/gump/public/workspace/ant]
CLASSPATH: 
/usr/lib/jvm/java-6-openjdk/lib/tools.jar:/srv/gump/public/workspace/ant/build/testcases:/srv/gump/public/workspace/ant/src/tests/junit:/srv/gump/public/workspace/ant/src/etc/testcases:/srv/gump/public/workspace/ant/src/etc/testcases/taskdefs/optional/out:/srv/gump/public/workspace/ant/src/tests/antunit/filters:/srv/gump/public/workspace/ant/src/tests/antunit/taskdefs/importtests:/srv/gump/public/workspace/ant/src/tests/antunit/filters/foo:/srv/gump/public/workspace/ant/src/tests/antunit/taskdefs/foo:/tmp/testinput/build:/tmp/testoutput:/tmp/test.jar:/tmp/test1.jar:/tmp/test2.jar:/tmp/test3.jar:/tmp/test4.jar:/tmp/test5.jar:/tmp/resources:/srv/gump/public/workspace/ant/build/lib/ant.jar:/srv/gump/public/workspace/ant/build/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/build/lib/ant-antlr.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-bcel.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-bsf.jar:/srv/gump/public/workspace/ant/build/lib/ant-apac
 
he-log4j.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-oro.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-regexp.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/build/lib/ant-commons-logging.jar:/srv/gump/public/workspace/ant/build/lib/ant-commons-net.jar:/srv/gump/public/workspace/ant/build/lib/ant-jai.jar:/srv/gump/public/workspace/ant/build/lib/ant-javamail.jar:/srv/gump/public/workspace/ant/build/lib/ant-jdepend.jar:/srv/gump/public/workspace/ant/build/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/build/lib/ant-jsch.jar:/srv/gump/public/workspace/ant/build/lib/ant-junit.jar:/srv/gump/public/workspace/ant/build/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/build/lib/ant-swing.jar:/srv/gump/packages/antlr/antlr-3.1.3.jar:/srv/gump/public/workspace/apache-commons/bcel/target/bcel-6.0-SNAPSHOT.jar:/srv/gump/public/workspace/apache-commons
 
/logging/target/commons-logging-14112011.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-14112011.jar:/srv/gump/public/workspace/apache-commons/net/target/commons-net-3.1-SNAPSHOT.jar:/srv/gump/public/workspace/apache-commons/net/target/commons-net-ftp-3.1-SNAPSHOT.jar:/srv/gump/packages/jaf-1.1ea/activation.jar:/srv/gump/public/workspace/jakarta-bsf/build/lib/bsf.jar:/srv/gump/packages/apache-attic/jakarta-regexp-1.5.jar:/srv/gump/public/workspace/jakarta-servletapi-4/lib/servlet.jar:/srv/gump/packages/javamail-1.4/mail.jar:/srv/gump/packages/javamail-1.4/lib/mailapi.jar:/srv/gump/packages/jdepend-2.6/lib/jdepend.jar:/srv/gump/packages/jsch/jsch-0.1.38.jar:/srv/gump/public/workspace/junit/dist/junit-14112011.jar:/srv/gump/public/workspace/junit/dist/junit-dep-14112011.jar:/srv/gump/public/workspace/logging-log4j-12/dist/lib/log4j-14112011.jar:/srv/gump/packages/apache-attic/oro-2.0.8.jar:/srv/gump/public/workspace/ant-antlibs/antunit/build/a