Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » PDE Build errors on xerces jar
PDE Build errors on xerces jar [message #65202] Mon, 22 June 2009 18:49 Go to next message
Eclipse UserFriend
Originally posted by: udaykabe.yahoo.com

I am creating an automated build for my RCP product but the build fails with
the following error:

[java] BUILD FAILED
[java]
d:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\productBuild.xml:42:
The following error occurred while executing this line:
[java]
D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\build.xml:129:
The following error occurred while executing this line:
[java] D:\WSDP\ws.kabe.news.build\customTargets.xml:26: The following
error occurred while executing this line:
[java]
D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:20:
The following error occurred while executing this line:
[java]
D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\genericTargets.xml:192:
The following error occurred while executing this line:
[java]
d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:23:
The following error occurred while executing this line:
[java]
d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:15:
The following error occurred while executing this line:
[java]
D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:54:
The following error occurred while executing this line:
[java]
d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:100:
The following error occurred while executing this line:
[java]
d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:540:
d:\WSIDEBuild\tmp\news\plugins\org.apache.xerces_2.9.0.v2008 05270400 not
found.

The problem is that, within the zip task, the xerces jar is being
incorrectly identified as a directory instead of a jar file. It is being
copied properly earlier in the process as a jar file by the copy task.

Does anyone know how to fix this problem?

Thanks in advance.

Uday
Re: PDE Build errors on xerces jar [message #65224 is a reply to message #65202] Mon, 22 June 2009 19:06 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: udaykabe.yahoo.com

I should clarify that I am wondering if anyone knows how to correctly
generate the
package.org.eclipse.pde.build.container.feature.win32.win32. x86.xml file.

Currently, I edit the file to correct the following and then re-run the
build at target "package" (obviously not good automation):

correct the problem in that file by changing this line:
<zipfileset
dir=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0 "
prefix=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 " />
to this line:
<zipfileset
file=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0.jar "
fullpath=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 .jar "
/>

Thanks in advance.

Uday

"Uday Kabe" <udaykabe@yahoo.com> wrote in message
news:h1ojne$1cs$1@build.eclipse.org...
>I am creating an automated build for my RCP product but the build fails
>with the following error:
>
> [java] BUILD FAILED
> [java]
> d:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\productBuild.xml:42:
> The following error occurred while executing this line:
> [java]
> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\build.xml:129:
> The following error occurred while executing this line:
> [java] D:\WSDP\ws.kabe.news.build\customTargets.xml:26: The following
> error occurred while executing this line:
> [java]
> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:20:
> The following error occurred while executing this line:
> [java]
> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\genericTargets.xml:192:
> The following error occurred while executing this line:
> [java]
> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:23:
> The following error occurred while executing this line:
> [java]
> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:15:
> The following error occurred while executing this line:
> [java]
> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:54:
> The following error occurred while executing this line:
> [java]
> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:100:
> The following error occurred while executing this line:
> [java]
> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:540:
> d:\WSIDEBuild\tmp\news\plugins\org.apache.xerces_2.9.0.v2008 05270400 not
> found.
>
> The problem is that, within the zip task, the xerces jar is being
> incorrectly identified as a directory instead of a jar file. It is being
> copied properly earlier in the process as a jar file by the copy task.
>
> Does anyone know how to fix this problem?
>
> Thanks in advance.
>
> Uday
Re: PDE Build errors on xerces jar [message #65307 is a reply to message #65224] Tue, 23 June 2009 15:06 Go to previous messageGo to next message
Andrew Niefer is currently offline Andrew NieferFriend
Messages: 990
Registered: July 2009
Senior Member
Uday,
I think you may be hitting this bug:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=265471

Is your product based on features?
If it is, you can edit the feature that includes org.apache.xerces so
that it has unpack="false" for the xerces plugin:
<plugin id="org.apache.xerces" version="0.0.0" unpack="false"/>


-Andrew


Uday Kabe wrote:
> I should clarify that I am wondering if anyone knows how to correctly
> generate the
> package.org.eclipse.pde.build.container.feature.win32.win32. x86.xml file.
>
> Currently, I edit the file to correct the following and then re-run the
> build at target "package" (obviously not good automation):
>
> correct the problem in that file by changing this line:
> <zipfileset
> dir=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0 "
> prefix=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 " />
> to this line:
> <zipfileset
> file=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0.jar "
> fullpath=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 .jar "
> />
>
> Thanks in advance.
>
> Uday
>
> "Uday Kabe" <udaykabe@yahoo.com> wrote in message
> news:h1ojne$1cs$1@build.eclipse.org...
>> I am creating an automated build for my RCP product but the build
>> fails with the following error:
>>
>> [java] BUILD FAILED
>> [java]
>> d:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\productBuild.xml:42:
>> The following error occurred while executing this line:
>> [java]
>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\build.xml:129:
>> The following error occurred while executing this line:
>> [java] D:\WSDP\ws.kabe.news.build\customTargets.xml:26: The
>> following error occurred while executing this line:
>> [java]
>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:20:
>> The following error occurred while executing this line:
>> [java]
>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\genericTargets.xml:192:
>> The following error occurred while executing this line:
>> [java]
>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:23:
>> The following error occurred while executing this line:
>> [java]
>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:15:
>> The following error occurred while executing this line:
>> [java]
>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:54:
>> The following error occurred while executing this line:
>> [java]
>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:100:
>> The following error occurred while executing this line:
>> [java]
>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:540:
>> d:\WSIDEBuild\tmp\news\plugins\org.apache.xerces_2.9.0.v2008 05270400
>> not found.
>>
>> The problem is that, within the zip task, the xerces jar is being
>> incorrectly identified as a directory instead of a jar file. It is
>> being copied properly earlier in the process as a jar file by the copy
>> task.
>>
>> Does anyone know how to fix this problem?
>>
>> Thanks in advance.
>>
>> Uday
>
Re: PDE Build errors on xerces jar [message #65390 is a reply to message #65307] Tue, 23 June 2009 23:04 Go to previous message
Eclipse UserFriend
Originally posted by: udaykabe.yahoo.com

Thank you Andrew.

Yes, my product is based on features, and I did set unpack="false" for
xerces after which the build worked finished without error.

Interestingly, I also had unpack="true" for org.apache.lucene but that
setting did not abort the build. However, I
set unpack="false" for lucene as well just to be consistent.

Thanks again.

Uday


"Andrew Niefer" <aniefer@ca.ibm.com> wrote in message
news:h1qr1r$rdf$1@build.eclipse.org...
> Uday,
> I think you may be hitting this bug:
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=265471
>
> Is your product based on features?
> If it is, you can edit the feature that includes org.apache.xerces so that
> it has unpack="false" for the xerces plugin:
> <plugin id="org.apache.xerces" version="0.0.0" unpack="false"/>
>
>
> -Andrew
>
>
> Uday Kabe wrote:
>> I should clarify that I am wondering if anyone knows how to correctly
>> generate the
>> package.org.eclipse.pde.build.container.feature.win32.win32. x86.xml file.
>>
>> Currently, I edit the file to correct the following and then re-run the
>> build at target "package" (obviously not good automation):
>>
>> correct the problem in that file by changing this line:
>> <zipfileset
>> dir=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0 "
>> prefix=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 "
>> />
>> to this line:
>> <zipfileset
>> file=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0.jar "
>> fullpath=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 .jar "
>> />
>>
>> Thanks in advance.
>>
>> Uday
>>
>> "Uday Kabe" <udaykabe@yahoo.com> wrote in message
>> news:h1ojne$1cs$1@build.eclipse.org...
>>> I am creating an automated build for my RCP product but the build fails
>>> with the following error:
>>>
>>> [java] BUILD FAILED
>>> [java]
>>> d:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\productBuild.xml:42:
>>> The following error occurred while executing this line:
>>> [java]
>>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\build.xml:129:
>>> The following error occurred while executing this line:
>>> [java] D:\WSDP\ws.kabe.news.build\customTargets.xml:26: The
>>> following error occurred while executing this line:
>>> [java]
>>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:20:
>>> The following error occurred while executing this line:
>>> [java]
>>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\genericTargets.xml:192:
>>> The following error occurred while executing this line:
>>> [java]
>>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:23:
>>> The following error occurred while executing this line:
>>> [java]
>>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:15:
>>> The following error occurred while executing this line:
>>> [java]
>>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:54:
>>> The following error occurred while executing this line:
>>> [java]
>>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:100:
>>> The following error occurred while executing this line:
>>> [java]
>>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:540:
>>> d:\WSIDEBuild\tmp\news\plugins\org.apache.xerces_2.9.0.v2008 05270400 not
>>> found.
>>>
>>> The problem is that, within the zip task, the xerces jar is being
>>> incorrectly identified as a directory instead of a jar file. It is
>>> being copied properly earlier in the process as a jar file by the copy
>>> task.
>>>
>>> Does anyone know how to fix this problem?
>>>
>>> Thanks in advance.
>>>
>>> Uday
>>
Re: PDE Build errors on xerces jar [message #598457 is a reply to message #65202] Mon, 22 June 2009 19:06 Go to previous message
Eclipse UserFriend
Originally posted by: udaykabe.yahoo.com

I should clarify that I am wondering if anyone knows how to correctly
generate the
package.org.eclipse.pde.build.container.feature.win32.win32. x86.xml file.

Currently, I edit the file to correct the following and then re-run the
build at target "package" (obviously not good automation):

correct the problem in that file by changing this line:
<zipfileset
dir=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0 "
prefix=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 " />
to this line:
<zipfileset
file=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0.jar "
fullpath=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 .jar "
/>

Thanks in advance.

Uday

"Uday Kabe" <udaykabe@yahoo.com> wrote in message
news:h1ojne$1cs$1@build.eclipse.org...
>I am creating an automated build for my RCP product but the build fails
>with the following error:
>
> [java] BUILD FAILED
> [java]
> d:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\productBuild.xml:42:
> The following error occurred while executing this line:
> [java]
> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\build.xml:129:
> The following error occurred while executing this line:
> [java] D:\WSDP\ws.kabe.news.build\customTargets.xml:26: The following
> error occurred while executing this line:
> [java]
> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:20:
> The following error occurred while executing this line:
> [java]
> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\genericTargets.xml:192:
> The following error occurred while executing this line:
> [java]
> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:23:
> The following error occurred while executing this line:
> [java]
> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:15:
> The following error occurred while executing this line:
> [java]
> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:54:
> The following error occurred while executing this line:
> [java]
> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:100:
> The following error occurred while executing this line:
> [java]
> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:540:
> d:\WSIDEBuild\tmp\news\plugins\org.apache.xerces_2.9.0.v2008 05270400 not
> found.
>
> The problem is that, within the zip task, the xerces jar is being
> incorrectly identified as a directory instead of a jar file. It is being
> copied properly earlier in the process as a jar file by the copy task.
>
> Does anyone know how to fix this problem?
>
> Thanks in advance.
>
> Uday
Re: PDE Build errors on xerces jar [message #598487 is a reply to message #65224] Tue, 23 June 2009 15:06 Go to previous message
Andrew Niefer is currently offline Andrew NieferFriend
Messages: 990
Registered: July 2009
Senior Member
Uday,
I think you may be hitting this bug:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=265471

Is your product based on features?
If it is, you can edit the feature that includes org.apache.xerces so
that it has unpack="false" for the xerces plugin:
<plugin id="org.apache.xerces" version="0.0.0" unpack="false"/>


-Andrew


Uday Kabe wrote:
> I should clarify that I am wondering if anyone knows how to correctly
> generate the
> package.org.eclipse.pde.build.container.feature.win32.win32. x86.xml file.
>
> Currently, I edit the file to correct the following and then re-run the
> build at target "package" (obviously not good automation):
>
> correct the problem in that file by changing this line:
> <zipfileset
> dir=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0 "
> prefix=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 " />
> to this line:
> <zipfileset
> file=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0.jar "
> fullpath=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 .jar "
> />
>
> Thanks in advance.
>
> Uday
>
> "Uday Kabe" <udaykabe@yahoo.com> wrote in message
> news:h1ojne$1cs$1@build.eclipse.org...
>> I am creating an automated build for my RCP product but the build
>> fails with the following error:
>>
>> [java] BUILD FAILED
>> [java]
>> d:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\productBuild.xml:42:
>> The following error occurred while executing this line:
>> [java]
>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\build.xml:129:
>> The following error occurred while executing this line:
>> [java] D:\WSDP\ws.kabe.news.build\customTargets.xml:26: The
>> following error occurred while executing this line:
>> [java]
>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:20:
>> The following error occurred while executing this line:
>> [java]
>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\genericTargets.xml:192:
>> The following error occurred while executing this line:
>> [java]
>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:23:
>> The following error occurred while executing this line:
>> [java]
>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:15:
>> The following error occurred while executing this line:
>> [java]
>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:54:
>> The following error occurred while executing this line:
>> [java]
>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:100:
>> The following error occurred while executing this line:
>> [java]
>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:540:
>> d:\WSIDEBuild\tmp\news\plugins\org.apache.xerces_2.9.0.v2008 05270400
>> not found.
>>
>> The problem is that, within the zip task, the xerces jar is being
>> incorrectly identified as a directory instead of a jar file. It is
>> being copied properly earlier in the process as a jar file by the copy
>> task.
>>
>> Does anyone know how to fix this problem?
>>
>> Thanks in advance.
>>
>> Uday
>
Re: PDE Build errors on xerces jar [message #598512 is a reply to message #65307] Tue, 23 June 2009 23:04 Go to previous message
Eclipse UserFriend
Originally posted by: udaykabe.yahoo.com

Thank you Andrew.

Yes, my product is based on features, and I did set unpack="false" for
xerces after which the build worked finished without error.

Interestingly, I also had unpack="true" for org.apache.lucene but that
setting did not abort the build. However, I
set unpack="false" for lucene as well just to be consistent.

Thanks again.

Uday


"Andrew Niefer" <aniefer@ca.ibm.com> wrote in message
news:h1qr1r$rdf$1@build.eclipse.org...
> Uday,
> I think you may be hitting this bug:
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=265471
>
> Is your product based on features?
> If it is, you can edit the feature that includes org.apache.xerces so that
> it has unpack="false" for the xerces plugin:
> <plugin id="org.apache.xerces" version="0.0.0" unpack="false"/>
>
>
> -Andrew
>
>
> Uday Kabe wrote:
>> I should clarify that I am wondering if anyone knows how to correctly
>> generate the
>> package.org.eclipse.pde.build.container.feature.win32.win32. x86.xml file.
>>
>> Currently, I edit the file to correct the following and then re-run the
>> build at target "package" (obviously not good automation):
>>
>> correct the problem in that file by changing this line:
>> <zipfileset
>> dir=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0 "
>> prefix=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 "
>> />
>> to this line:
>> <zipfileset
>> file=" ${eclipse.base}/plugins/org.apache.xerces_2.9.0.v20080527040 0.jar "
>> fullpath=" ${pluginArchivePrefix}/org.apache.xerces_2.9.0.v200805270400 .jar "
>> />
>>
>> Thanks in advance.
>>
>> Uday
>>
>> "Uday Kabe" <udaykabe@yahoo.com> wrote in message
>> news:h1ojne$1cs$1@build.eclipse.org...
>>> I am creating an automated build for my RCP product but the build fails
>>> with the following error:
>>>
>>> [java] BUILD FAILED
>>> [java]
>>> d:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\productBuild.xml:42:
>>> The following error occurred while executing this line:
>>> [java]
>>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\build.xml:129:
>>> The following error occurred while executing this line:
>>> [java] D:\WSDP\ws.kabe.news.build\customTargets.xml:26: The
>>> following error occurred while executing this line:
>>> [java]
>>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:20:
>>> The following error occurred while executing this line:
>>> [java]
>>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\genericTargets.xml:192:
>>> The following error occurred while executing this line:
>>> [java]
>>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:23:
>>> The following error occurred while executing this line:
>>> [java]
>>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.all.xml:15:
>>> The following error occurred while executing this line:
>>> [java]
>>> D:\JEE35RC4\eclipse\plugins\org.eclipse.pde.build_3.5.0.v200 90527-1800\scripts\productBuild\allElements.xml:54:
>>> The following error occurred while executing this line:
>>> [java]
>>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:100:
>>> The following error occurred while executing this line:
>>> [java]
>>> d:\WSIDEBuild\package.org.eclipse.pde.build.container.featur e.win32.win32.x86.xml:540:
>>> d:\WSIDEBuild\tmp\news\plugins\org.apache.xerces_2.9.0.v2008 05270400 not
>>> found.
>>>
>>> The problem is that, within the zip task, the xerces jar is being
>>> incorrectly identified as a directory instead of a jar file. It is
>>> being copied properly earlier in the process as a jar file by the copy
>>> task.
>>>
>>> Does anyone know how to fix this problem?
>>>
>>> Thanks in advance.
>>>
>>> Uday
>>
Previous Topic:Update Manager issue
Next Topic:[p2] carbon macosx package build problems
Goto Forum:
  


Current Time: Tue Apr 16 07:50:03 GMT 2024

Powered by FUDForum. Page generated in 0.23479 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top