[jira] Commented: (IVY-725) Null Pointer Exception during retrieve/resolve

2008-02-14 Thread Xavier Hanin (JIRA)

[ 
https://issues.apache.org/jira/browse/IVY-725?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12568836#action_12568836
 ] 

Xavier Hanin commented on IVY-725:
--

What do you mean by auto generated? Do you use the makepom task? If so, could 
you please provide your original ivy file, and the generated pom? If you don't 
use makepom, Ivy does not generate poms, it actually converts poms to ivy files 
to work.

 Null Pointer Exception during retrieve/resolve
 --

 Key: IVY-725
 URL: https://issues.apache.org/jira/browse/IVY-725
 Project: Ivy
  Issue Type: Bug
Affects Versions: 2.0.0-beta-1
 Environment: Mac OSX
Reporter: Neil Lott
 Attachments: common-ivy-configurations.xml, common-ivy-settings.xml, 
 common-ivy.xml, ivy.xml, ivy.xml


 I'm seeing the following null pointer exceptions during the retrieve/resolve 
 of my module.
 Module mas-coredn-btm depends on mas-coredn-ondemand.  In this case, I have 
 published the artifact for mas-coredn-ondemand and mas-coredn-btm is failing 
 to resolve it.
 [ivy:resolve] java.lang.RuntimeException: several problems occured while 
 resolving dependency: twc#mas-coredn-ondemand;5.1 {*=[*]}:
 [ivy:resolve] java.lang.NullPointerException at 
 org.apache.ivy.core.cache.DefaultRepositoryCacheManager.cacheModuleDescriptor(DefaultRepositoryCacheManager.java:893)
 [ivy:resolve] java.lang.NullPointerException at 
 org.apache.ivy.core.cache.DefaultRepositoryCacheManager.cacheModuleDescriptor(DefaultRepositoryCacheManager.java:893)
 [ivy:resolve] at 
 org.apache.ivy.plugins.resolver.ChainResolver.getDependency(ChainResolver.java:185)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.IvyNode.loadData(IvyNode.java:225)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.VisitNode.loadData(VisitNode.java:257)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.fetchDependencies(ResolveEngine.java:588)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.doFetchDependencies(ResolveEngine.java:671)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.fetchDependencies(ResolveEngine.java:596)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.getDependencies(ResolveEngine.java:487)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.resolve(ResolveEngine.java:234)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.resolve(ResolveEngine.java:192)
 [ivy:resolve] at org.apache.ivy.Ivy.resolve(Ivy.java:506)
 [ivy:resolve] at 
 org.apache.ivy.ant.IvyResolve.doExecute(IvyResolve.java:230)
 [ivy:resolve] at org.apache.ivy.ant.IvyTask.execute(IvyTask.java:275)
 [ivy:resolve] at 
 org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
 [ivy:resolve] at org.apache.tools.ant.Task.perform(Task.java:364)
 [ivy:resolve] at org.apache.tools.ant.Target.execute(Target.java:341)
 [ivy:resolve] at 
 org.apache.tools.ant.Target.performTasks(Target.java:369)
 [ivy:resolve] at 
 org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
 [ivy:resolve] at 
 org.apache.tools.ant.Project.executeTarget(Project.java:1185)
 [ivy:resolve] at 
 org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
 [ivy:resolve] at 
 org.apache.tools.ant.Project.executeTargets(Project.java:1068)
 [ivy:resolve] at org.apache.tools.ant.Main.runBuild(Main.java:668)
 [ivy:resolve] at org.apache.tools.ant.Main.startAnt(Main.java:187)
 [ivy:resolve] at 
 org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
 [ivy:resolve] at 
 org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (IVY-725) Null Pointer Exception during retrieve/resolve

2008-02-14 Thread Neil Lott (JIRA)

[ 
https://issues.apache.org/jira/browse/IVY-725?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12568866#action_12568866
 ] 

Neil Lott commented on IVY-725:
---

So what's happening is that I'm not calling makepom task for the module.  I'm 
just calling ivy-publish.  After I call ivy-publish I look at the repository 
and now my artifact is there and there is also a pom file, in this case 
mas-coredn-ondemand-5.1.pom.  This pom file I didn't create so I can only 
assumy that the ivy-publish created it.  Here's its contents:

[EMAIL PROTECTED] 5.1]$ cat mas-coredn-ondemand-5.1.pom
ivy-module version=2.0
info organisation=twc module=mas-coredn-ondemand revision=5.1 
status=release publication=20080214022138/

configurations
conf name=interface description=IDL or webservice interfaces/
conf name=compile extends=interface 
description=Compile-time/
conf name=runtime extends=compile description=Run-time/
conf name=test extends=runtime description=For Testing/
/configurations

publications
artifact name=ondemandif type=jar conf=interface ext=jar/
artifact name=ondemand type=jar conf=compile ext=jar/
/publications

dependencies
dependency org=log4j name=log4j rev=1.2.8/
dependency org=jacorb name=jacorb rev=2.2.2/
dependency org=jacorb name=avalon-framework rev=4.1.5/
dependency org=jacorb name=logkit rev=1.2/
dependency org=jacorb name=antlr rev=2.7.2/
dependency org=concurrent name=concurrent rev=1.3.2/
dependency org=joda-time name=joda-time rev=1.5/
dependency org=testng name=testng rev=5.7/

dependency org=twc name=msa4j rev=1.0/
dependency org=twc name=isa rev=1.4.4/
/dependencies

/ivy-module

This is exactly the same as my ivy.xml file.  Why is the ivy.xml file being 
published as the pom?





 Null Pointer Exception during retrieve/resolve
 --

 Key: IVY-725
 URL: https://issues.apache.org/jira/browse/IVY-725
 Project: Ivy
  Issue Type: Bug
Affects Versions: 2.0.0-beta-1
 Environment: Mac OSX
Reporter: Neil Lott
 Attachments: common-ivy-configurations.xml, common-ivy-settings.xml, 
 common-ivy.xml, ivy.xml, ivy.xml


 I'm seeing the following null pointer exceptions during the retrieve/resolve 
 of my module.
 Module mas-coredn-btm depends on mas-coredn-ondemand.  In this case, I have 
 published the artifact for mas-coredn-ondemand and mas-coredn-btm is failing 
 to resolve it.
 [ivy:resolve] java.lang.RuntimeException: several problems occured while 
 resolving dependency: twc#mas-coredn-ondemand;5.1 {*=[*]}:
 [ivy:resolve] java.lang.NullPointerException at 
 org.apache.ivy.core.cache.DefaultRepositoryCacheManager.cacheModuleDescriptor(DefaultRepositoryCacheManager.java:893)
 [ivy:resolve] java.lang.NullPointerException at 
 org.apache.ivy.core.cache.DefaultRepositoryCacheManager.cacheModuleDescriptor(DefaultRepositoryCacheManager.java:893)
 [ivy:resolve] at 
 org.apache.ivy.plugins.resolver.ChainResolver.getDependency(ChainResolver.java:185)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.IvyNode.loadData(IvyNode.java:225)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.VisitNode.loadData(VisitNode.java:257)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.fetchDependencies(ResolveEngine.java:588)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.doFetchDependencies(ResolveEngine.java:671)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.fetchDependencies(ResolveEngine.java:596)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.getDependencies(ResolveEngine.java:487)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.resolve(ResolveEngine.java:234)
 [ivy:resolve] at 
 org.apache.ivy.core.resolve.ResolveEngine.resolve(ResolveEngine.java:192)
 [ivy:resolve] at org.apache.ivy.Ivy.resolve(Ivy.java:506)
 [ivy:resolve] at 
 org.apache.ivy.ant.IvyResolve.doExecute(IvyResolve.java:230)
 [ivy:resolve] at org.apache.ivy.ant.IvyTask.execute(IvyTask.java:275)
 [ivy:resolve] at 
 org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
 [ivy:resolve] at org.apache.tools.ant.Task.perform(Task.java:364)
 [ivy:resolve] at org.apache.tools.ant.Target.execute(Target.java:341)
 [ivy:resolve] at 
 org.apache.tools.ant.Target.performTasks(Target.java:369)
 [ivy:resolve] at 
 org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
 [ivy:resolve] at 
 org.apache.tools.ant.Project.executeTarget(Project.java:1185)
 [ivy:resolve] at 
 

[jira] Created: (IVY-734) SFTP should verify input parameter for hostname

2008-02-14 Thread Nat (JIRA)
SFTP should verify input parameter for hostname
---

 Key: IVY-734
 URL: https://issues.apache.org/jira/browse/IVY-734
 Project: Ivy
  Issue Type: Improvement
  Components: Core
Affects Versions: 2.0.0-beta-1
Reporter: Nat
 Fix For: 2.0.0-beta-2


SFTP resolver doesn't have proper check when hostname missing from both url and 
hostname. If it's not specified in both places, the following exception will be 
thrown

Caused by: java.lang.NullPointerException 
at 
org.apache.ivy.plugins.repository.ssh.SshCache.createCacheKey(SshCache.java:184)
 
at 
org.apache.ivy.plugins.repository.ssh.SshCache.getCacheEntry(SshCache.java:165) 
at 
org.apache.ivy.plugins.repository.ssh.SshCache.getSession(SshCache.java:307) 
at 
org.apache.ivy.plugins.repository.ssh.AbstractSshBasedRepository.getSession(AbstractSshBasedRepository.java:82)
 
at 
org.apache.ivy.plugins.repository.sftp.SFTPRepository.getSftpChannel(SFTPRepository.java:223)
 
at 
org.apache.ivy.plugins.repository.sftp.SFTPRepository.put(SFTPRepository.java:134)
 
at 
org.apache.ivy.plugins.repository.AbstractRepository.put(AbstractRepository.java:130)
 
at 
org.apache.ivy.plugins.resolver.RepositoryResolver.put(RepositoryResolver.java:177)
 
at 
org.apache.ivy.plugins.resolver.RepositoryResolver.publish(RepositoryResolver.java:167)
 
at 
org.apache.ivy.core.publish.PublishEngine.publish(PublishEngine.java:242) 
at 
org.apache.ivy.core.publish.PublishEngine.publish(PublishEngine.java:195) 
at 
org.apache.ivy.core.install.InstallEngine.install(InstallEngine.java:146) 
at org.apache.ivy.Ivy.install(Ivy.java:511) 
at org.apache.ivy.ant.IvyInstall.doExecute(IvyInstall.java:95)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (IVY-735) Timeout should be able to be specified

2008-02-14 Thread Nat (JIRA)
Timeout should be able to be specified
--

 Key: IVY-735
 URL: https://issues.apache.org/jira/browse/IVY-735
 Project: Ivy
  Issue Type: Improvement
  Components: Core
Affects Versions: 2.0.0-beta-1
Reporter: Nat
 Fix For: 2.0.0-beta-2


It's currently not possible to provide timeout for resolver. For example, 
yesterday ibiblio is really slow. I waited almost forever just to know that 
there is something wrong with ibiblio. It would be nice if I can specify 
timeout so that i can fail over to some other resolvers in my chain resolver.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[EMAIL PROTECTED]: Project dotnet-antlib-test (in module ant-antlibs) failed

2008-02-14 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 [EMAIL PROTECTED]

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


Full details are available at:

http://vmgump.apache.org/gump/public/ant-antlibs/dotnet-antlib-test/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



The following work was performed:
http://vmgump.apache.org/gump/public/ant-antlibs/dotnet-antlib-test/gump_work/build_ant-antlibs_dotnet-antlib-test.html
Work Name: build_ant-antlibs_dotnet-antlib-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 21 secs
Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true 
-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 
-Dbuild.sysclasspath=only 
-Dant-testutil.jar=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar 
test 
[Working Directory: /srv/gump/public/workspace/ant-antlibs/dotnet]
CLASSPATH: 
/usr/lib/jvm/java-1.5.0-sun/lib/tools.jar:/srv/gump/public/workspace/ant-antlibs/dotnet/build/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.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-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant-antlibs/antunit/build/ant-antunit-14022008.jar:/srv/gump/public/workspace/ant-antlibs/dotnet/build/ant-dotnet-14022008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar
-
[au:antunit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.024 sec
[au:antunit] Target: test-passing took 0.006 sec
[au:antunit] Build File: 
/srv/gump/public/workspace/ant-antlibs/dotnet/src/tests/antunit/dir with 
spaces/wsdl-test.xml
[au:antunit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.874 sec
[au:antunit] Target: testWSDL took 0.852 sec
[au:antunit] Build File: 
/srv/gump/public/workspace/ant-antlibs/dotnet/src/tests/antunit/dotnetexec-test.xml
[au:antunit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.896 sec
[au:antunit] Target: testCSC took 0.877 sec
[au:antunit] Build File: 
/srv/gump/public/workspace/ant-antlibs/dotnet/src/tests/antunit/nunit/nunit-test.xml
[au:antunit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.194 sec
[au:antunit] Target: test-passing took 0.004 sec
[au:antunit] Target: test-failing took 0.002 sec
[au:antunit] Target: test-failing-errorproperty took 0.109 sec
[au:antunit] Target: test-failing-with-fail took 0.005 sec
[au:antunit] Target: test-no-assembly took 0.009 sec
[au:antunit] Build File: 
/srv/gump/public/workspace/ant-antlibs/dotnet/src/tests/antunit/old-core-test.xml
[au:antunit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 5.552 sec
[au:antunit] Target: testCSCintrinsicFileset took 0.731 sec
[au:antunit] Target: testCSCresponseFile took 0.613 sec
[au:antunit] Target: testILASM took 0.862 sec
[au:antunit] Target: testCSCdll took 0.605 sec
[au:antunit] Target: testILDASM took 0.774 sec
[au:antunit] Target: testILDASM_empty took 0.044 sec
[au:antunit] Target: testJsharp took 0.078 sec
[au:antunit] Target: testCSCResources took 0.915 sec
[au:antunit] Target: testCSC took 0.735 sec
[au:antunit] Build File: 
/srv/gump/public/workspace/ant-antlibs/dotnet/src/tests/antunit/wsdl2dotnet-test.xml
[au:antunit] Tests run: 15, Failures: 0, Errors: 0, Time elapsed: 3.775 sec
[au:antunit] Target: testSchemaMustBeSet took 0.023 sec
[au:antunit] Target: testLocalWsdlVB took 0.023 sec
[au:antunit] Target: testInvalidExtraOps took 0.004 sec
[au:antunit] Target: testSrcIsMissing took 0.019 sec
[au:antunit] Target: testNoParams took 0.06 sec
[au:antunit] Target: testBothSrc took 0.013 sec
[au:antunit] Target: testSchemaFileMustHaveOneOptionOnly took 0.013 sec
[au:antunit] Target: testLocalWsdl took 1.388 sec
[au:antunit] Target: testSrcIsDir took 0.028 sec
[au:antunit] Target: testLocalWsdlServerVB took 0.013 sec
[au:antunit] Target: testLocalWsdlServer took 1.804 sec
[au:antunit] Target: testNoSrc took 0.021 sec
[au:antunit] Target: 

[EMAIL PROTECTED]: Project test-ant (in module ant) failed

2008-02-14 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 [EMAIL PROTECTED]

Project test-ant has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 20 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- 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: 12 mins 39 secs
Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true 
-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/serializer.jar:/srv/gump/public/workspace/xml-xalan/build/xalan-unbundled.jar
 org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -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-1.5.0-sun/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/build/lib/ant-stylebook.jar:/srv/gump/public/workspace/ant/build/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/build/lib/ant-swing.jar:/srv/gump/public/workspace/ant/build/lib/ant-junit.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/build/lib/ant-javamail.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-bcel.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-regexp.jar:/srv/gump/public/workspace/ant/build/lib/ant-trax.jar:/srv/gump/public/workspace/ant/build/lib/ant-commons-net.jar:/srv/gump/public/workspace/ant/build/lib/ant-jsch.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-log4j.jar:/srv/gump/public/workspace/ant/build/lib/ant-antlr.jar:/srv/gump/public/workspace/ant/build/li
 
b/ant-commons-logging.jar:/srv/gump/public/workspace/ant/build/lib/ant-jdepend.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-bsf.jar:/srv/gump/public/workspace/ant/build/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/build/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-oro.jar:/srv/gump/public/workspace/ant/build/lib/ant.jar:/srv/gump/public/workspace/ant/build/lib/ant-jai.jar:/srv/gump/packages/antlr-2.7.6/antlr.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-14022008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-14022008.jar:/srv/gump/public/workspace/apache-commons/net/dist/commons-net-14022008.jar:/srv/gump/packages/jaf-1.1ea/activation.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/jakarta-bsf/build/lib/bsf.jar:/srv/gump/public/workspace/logging-log4j-12/dist/lib/log4j-14022008.jar:/srv/gump/public/workspace/jakarta-
 
oro/jakarta-oro-14022008.jar:/srv/gump/public/workspace/jakarta-regexp/build/jakarta-regexp-14022008.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.28.jar:/srv/gump/public/workspace/xml-stylebook/bin/stylebook-1.0-b3_xalan-2.jar:/srv/gump/public/workspace/ant-antlibs/antunit/build/ant-antunit-14022008.jar:/srv/gump/public/workspace/junit/dist/junit-14022008.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/jakarta-tomcat-4.0/dist/common/lib/jasper-compiler.jar:/srv/gump/public/workspace/jakarta-tomcat-4.0/dist/common/lib/jasper-runtime.jar:/srv/gump/public/workspace/xml-commons/java/build/which.jar:/srv/gump/public/workspace/rhino/build/rhino_14022008/js.jar:/srv/gump/packages/bsh-2.0b4/bsh-commands-2.0b4.jar:/srv/gump/packages/bsh-
 
2.0b4/bsh-classpath-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-core-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-bsf-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-reflect-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-util-2.0b4.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-14022008.jar
-

[EMAIL PROTECTED]: Project test-ant-no-xerces (in module ant) failed

2008-02-14 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 [EMAIL PROTECTED]

Project test-ant-no-xerces has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 20 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-no-xerces :  Java based build tool


Full details are available at:
http://vmgump.apache.org/gump/public/ant/test-ant-no-xerces/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



The following work was performed:
http://vmgump.apache.org/gump/public/ant/test-ant-no-xerces/gump_work/build_ant_test-ant-no-xerces.html
Work Name: build_ant_test-ant-no-xerces (Type: Build)
Work ended in a state of : Failed
Elapsed: 12 mins 27 secs
Command Line: /usr/lib/jvm/java-1.5.0-sun/bin/java -Djava.awt.headless=true 
org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -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-1.5.0-sun/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/build/lib/ant-stylebook.jar:/srv/gump/public/workspace/ant/build/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/build/lib/ant-swing.jar:/srv/gump/public/workspace/ant/build/lib/ant-junit.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/build/lib/ant-javamail.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-bcel.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-regexp.jar:/srv/gump/public/workspace/ant/build/lib/ant-trax.jar:/srv/gump/public/workspace/ant/build/lib/ant-commons-net.jar:/srv/gump/public/workspace/ant/build/lib/ant-jsch.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-log4j.jar:/srv/gump/public/workspace/ant/build/lib/ant-antlr.jar:/srv/gump/public/workspace/ant/build/li
 
b/ant-commons-logging.jar:/srv/gump/public/workspace/ant/build/lib/ant-jdepend.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-bsf.jar:/srv/gump/public/workspace/ant/build/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/build/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/build/lib/ant-apache-oro.jar:/srv/gump/public/workspace/ant/build/lib/ant.jar:/srv/gump/public/workspace/ant/build/lib/ant-jai.jar:/srv/gump/packages/antlr-2.7.6/antlr.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-14022008.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-14022008.jar:/srv/gump/public/workspace/apache-commons/net/dist/commons-net-14022008.jar:/srv/gump/packages/jaf-1.1ea/activation.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/jakarta-bsf/build/lib/bsf.jar:/srv/gump/public/workspace/logging-log4j-12/dist/lib/log4j-14022008.jar:/srv/gump/public/workspace/jakarta-
 
oro/jakarta-oro-14022008.jar:/srv/gump/public/workspace/jakarta-regexp/build/jakarta-regexp-14022008.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.28.jar:/srv/gump/public/workspace/xml-stylebook/bin/stylebook-1.0-b3_xalan-2.jar:/srv/gump/public/workspace/ant-antlibs/antunit/build/ant-antunit-14022008.jar:/srv/gump/public/workspace/junit/dist/junit-14022008.jar:/srv/gump/public/workspace/jakarta-tomcat-4.0/dist/common/lib/jasper-compiler.jar:/srv/gump/public/workspace/jakarta-tomcat-4.0/dist/common/lib/jasper-runtime.jar:/srv/gump/public/workspace/xml-commons/java/build/which.jar:/srv/gump/public/workspace/rhino/build/rhino_14022008/js.jar:/srv/gump/packages/bsh-2.0b4/bsh-commands-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-classpath-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-core-2.0b4.ja
 
r:/srv/gump/packages/bsh-2.0b4/bsh-bsf-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-reflect-2.0b4.jar:/srv/gump/packages/bsh-2.0b4/bsh-util-2.0b4.jar:/srv/gump/public/workspace/apache-commons/codec/dist/commons-codec-14022008.jar
-
at org.apache.tools.ant.Project.executeTargets(Project.java:1176)
at org.apache.tools.ant.Main.runBuild(Main.java:758)
at org.apache.tools.ant.Main.startAnt(Main.java:217)
at org.apache.tools.ant.Main.start(Main.java:179)
at 

[jira] Created: (IVY-736) makepom ignores artifact type in ivy.xml and hardcodes 'jar' in the output pom

2008-02-14 Thread Carlton Brown (JIRA)
makepom ignores artifact type in ivy.xml and hardcodes 'jar' in the output pom
--

 Key: IVY-736
 URL: https://issues.apache.org/jira/browse/IVY-736
 Project: Ivy
  Issue Type: Bug
  Components: Ant
Affects Versions: 2.0.0-beta-1
 Environment: Windows XP, Java 5
Reporter: Carlton Brown
Priority: Minor


I'm using ivy:makepom to generate pom files for a tarfile.  Even though 
ivy.xml declares the package type as 'tar', the makepom task sets the packaging 
type to 'jar':

Input ivy.xml file fragment:

info organisation=myorg module=hello-package revision=1.0/
publications
  artifact name=hello-package type=tar ext=tar/
  artifact name=hello-package type=pom ext=pom/
/publications

 Output pom file fragment:

  groupIdmyorg/groupId
  artifactIdhello-package/artifactId
  packagingjar/packaging
  version1.0/version

Upon looking in the Ivy source, I found that the value is hardcoded in the 
method printModuleId in 
org.apache.ivy.plugins.parser.m2.PomModuleDescriptorWriter class:
out.println(  packagingjar/packaging); 

I did not see any easy way to fix this because it does not look like the type 
attribute is part of the module framework.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



DO NOT REPLY [Bug 44424] New: - Resources.java validate() has invalid call to dieOnCircularReference

2008-02-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=44424.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=44424

   Summary: Resources.java validate() has invalid call to
dieOnCircularReference
   Product: Ant
   Version: 1.7.0
  Platform: PC
OS/Version: Windows 2000
Status: NEW
  Severity: normal
  Priority: P2
 Component: Core
AssignedTo: notifications@ant.apache.org
ReportedBy: [EMAIL PROTECTED]


java.lang.NoSuchMethodError: org.apache.tools.ant.types.resources.Resources.dieO
nCircularReference()V
at org.apache.tools.ant.types.resources.Resources.validate(Resources.jav
a:228)
Method call is
protected void dieOnCircularReference(Stack stk, Project p)
throws BuildException {

implementation in validate() method
  private synchronized void validate() {
dieOnCircularReference();
coll = (coll == null) ? new MyCollection() : coll;
}

I dont see either Stack or Project variables on stack or heap so 
looking for a solution here..

Thanks
Martin--

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


DO NOT REPLY [Bug 44424] - Resources.java validate() has invalid call to dieOnCircularReference

2008-02-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=44424.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=44424


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2008-02-14 14:25 ---
dieOnCircularReference() exists on the superclass, 
org.apache.tools.ant.types.DataType, and was added 
with Ant 1.7.0.  You almost certainly have two versions of Ant on your 
classpath, or some similar problem.  
If you cannot diagnose it, please bring it to the userlist.

Thanks!

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