Registry conflict (running org.eclipse.equinox.jsp.jasper.registry) [message #55817] |
Fri, 26 October 2007 11:08  |
Eclipse User |
|
|
|
Originally posted by: dp-conde.criticalsoftware.com
Hello,
I need to run org.eclipse.help.webapp package (as well as some other
packages) to have an embedded eclipse help system in my application.
The problem here is that this package has a dependency of one other
package (org.eclipse.equinox.jsp.jasper.registry) that conflicts with
some other packages that I need for the application.
So I was wondering, is it possible to run org.eclipse.help.webapp
without org.eclipse.equinox.jsp.jasper.registry? I'm using maven to
compile my project and I tried changing the dependencies on the pom.xml
file like this:
<dependency>
<groupId>org.eclipse.help</groupId>
<artifactId>webapp</artifactId>
<version>3.3.0</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.equinox.jsp.jasper</groupId>
<artifactId>registry</artifactId>
</exclusion>
</exclusions>
</dependency>
But this didn't work, any thoughts about this issue?
Thanks in advance,
Daniel Conde.
|
|
|
Re: Registry conflict (running org.eclipse.equinox.jsp.jasper.registry) [message #57547 is a reply to message #55817] |
Mon, 05 November 2007 09:36   |
Eclipse User |
|
|
|
Originally posted by: fappel.innoopract.com
Hi,
I guess you mean bundle-dependencies - not package dependencies. As the
dependency to org.eclipse.equinox.jsp.jasper.registry is defined in the
Required-Bundle header of the plug-in's manifest there is nothing you can do
about that without hacking the the webapp bundle - which I do not recommend.
Of what kind are those conflicts you have mentionend?
Ciao
Frank
"Daniel Conde" <dp-conde@criticalsoftware.com> schrieb im Newsbeitrag
news:ffshv1$7rq$2@build.eclipse.org...
> Hello,
>
> I need to run org.eclipse.help.webapp package (as well as some other
> packages) to have an embedded eclipse help system in my application.
>
> The problem here is that this package has a dependency of one other
> package (org.eclipse.equinox.jsp.jasper.registry) that conflicts with
> some other packages that I need for the application.
>
> So I was wondering, is it possible to run org.eclipse.help.webapp without
> org.eclipse.equinox.jsp.jasper.registry? I'm using maven to compile my
> project and I tried changing the dependencies on the pom.xml file like
> this:
>
> <dependency>
> <groupId>org.eclipse.help</groupId>
> <artifactId>webapp</artifactId>
> <version>3.3.0</version>
> <exclusions>
> <exclusion>
> <groupId>org.eclipse.equinox.jsp.jasper</groupId>
> <artifactId>registry</artifactId>
> </exclusion>
> </exclusions>
> </dependency>
>
> But this didn't work, any thoughts about this issue?
>
> Thanks in advance,
> Daniel Conde.
|
|
|
Re: Registry conflict (running org.eclipse.equinox.jsp.jasper.registry) [message #58411 is a reply to message #57547] |
Wed, 07 November 2007 17:08   |
Eclipse User |
|
|
|
Originally posted by: dp-conde.criticalsoftware.com
Hi Frank,
The conflict I mentioned was that with the
org.eclipse.equinox.jsp.jasper.registry running for the webapp, the
application doesn't load any images...
Any thoughts about this?
Thanks in advance.
Frank Appel wrote:
> Hi,
>
> I guess you mean bundle-dependencies - not package dependencies. As the
> dependency to org.eclipse.equinox.jsp.jasper.registry is defined in the
> Required-Bundle header of the plug-in's manifest there is nothing you can do
> about that without hacking the the webapp bundle - which I do not recommend.
> Of what kind are those conflicts you have mentionend?
>
> Ciao
> Frank
>
> "Daniel Conde" <dp-conde@criticalsoftware.com> schrieb im Newsbeitrag
> news:ffshv1$7rq$2@build.eclipse.org...
>> Hello,
>>
>> I need to run org.eclipse.help.webapp package (as well as some other
>> packages) to have an embedded eclipse help system in my application.
>>
>> The problem here is that this package has a dependency of one other
>> package (org.eclipse.equinox.jsp.jasper.registry) that conflicts with
>> some other packages that I need for the application.
>>
>> So I was wondering, is it possible to run org.eclipse.help.webapp without
>> org.eclipse.equinox.jsp.jasper.registry? I'm using maven to compile my
>> project and I tried changing the dependencies on the pom.xml file like
>> this:
>>
>> <dependency>
>> <groupId>org.eclipse.help</groupId>
>> <artifactId>webapp</artifactId>
>> <version>3.3.0</version>
>> <exclusions>
>> <exclusion>
>> <groupId>org.eclipse.equinox.jsp.jasper</groupId>
>> <artifactId>registry</artifactId>
>> </exclusion>
>> </exclusions>
>> </dependency>
>>
>> But this didn't work, any thoughts about this issue?
>>
>> Thanks in advance,
>> Daniel Conde.
>
>
|
|
|
Re: Registry conflict (running org.eclipse.equinox.jsp.jasper.registry) [message #59566 is a reply to message #58411] |
Wed, 14 November 2007 09:11  |
Eclipse User |
|
|
|
Originally posted by: fappel.innoopract.com
Hi,
I think I still do not grasp it. Using the help system, I integrated the
org.eclipse.help.webapp package (including the jasper registry dependency)
without any problem. Seems as every image in the application gets loaded as
expected. So maybe the problem is something different?
Ciao
Frank
"Daniel Conde" <dp-conde@criticalsoftware.com> schrieb im Newsbeitrag
news:fgsrfm$d3n$1@build.eclipse.org...
> Hi Frank,
>
> The conflict I mentioned was that with the
> org.eclipse.equinox.jsp.jasper.registry running for the webapp, the
> application doesn't load any images...
> Any thoughts about this?
>
> Thanks in advance.
>
> Frank Appel wrote:
>> Hi,
>>
>> I guess you mean bundle-dependencies - not package dependencies. As the
>> dependency to org.eclipse.equinox.jsp.jasper.registry is defined in the
>> Required-Bundle header of the plug-in's manifest there is nothing you can
>> do about that without hacking the the webapp bundle - which I do not
>> recommend. Of what kind are those conflicts you have mentionend?
>>
>> Ciao
>> Frank
>>
>> "Daniel Conde" <dp-conde@criticalsoftware.com> schrieb im Newsbeitrag
>> news:ffshv1$7rq$2@build.eclipse.org...
>>> Hello,
>>>
>>> I need to run org.eclipse.help.webapp package (as well as some other
>>> packages) to have an embedded eclipse help system in my application.
>>>
>>> The problem here is that this package has a dependency of one other
>>> package (org.eclipse.equinox.jsp.jasper.registry) that conflicts with
>>> some other packages that I need for the application.
>>>
>>> So I was wondering, is it possible to run org.eclipse.help.webapp
>>> without org.eclipse.equinox.jsp.jasper.registry? I'm using maven to
>>> compile my project and I tried changing the dependencies on the pom.xml
>>> file like this:
>>>
>>> <dependency>
>>> <groupId>org.eclipse.help</groupId>
>>> <artifactId>webapp</artifactId>
>>> <version>3.3.0</version>
>>> <exclusions>
>>> <exclusion>
>>> <groupId>org.eclipse.equinox.jsp.jasper</groupId>
>>> <artifactId>registry</artifactId>
>>> </exclusion>
>>> </exclusions>
>>> </dependency>
>>>
>>> But this didn't work, any thoughts about this issue?
>>>
>>> Thanks in advance,
>>> Daniel Conde.
>>
|
|
|
Powered by
FUDForum. Page generated in 0.01669 seconds