removing v3/javaee-api/javax.xml.ws

View: New views
7 Messages — Rating Filter:   Alert me  

removing v3/javaee-api/javax.xml.ws

by Jane Young-Lau :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

In the v3 workspace, JAX-WS version 2.1 gets repackaged with OSGi
configuration in v3/javaee-api/javax.xml.ws.  The artifact produced in
v3/javaee-api/javax.xml.ws does not get bundled in GlassFish v3
distribution.  JAX-WS version 2.2 is in javax.xml:webservices-api-osgi
and that is artifact bundled in v3 distro.

So now the question is if I can remove javaee-api/javax.xml.ws from v3
workspace?  Is any module referencing this artifact.

Searching pom.xml files in v3 workspace,  ejb/ejb-container/pom.xml
contains  the dependency on org.glassfish:javax.xml.ws.  Can this
dependency be replaced with javax.xml:webservices-api-osgi?

Please let me know.

Jane



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@...
For additional commands, e-mail: dev-help@...


Re: removing v3/javaee-api/javax.xml.ws

by Snjezana Sevo-Zenzerovic :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Whatever you do, you'll need to make sure that this ejb-container
dependency remains flagged as "optional", otherwise it will interfere
with the way webservices-api-osgi is packaged...

Thanks,

Snjezana


Jane Young wrote:

> Hi,
>
> In the v3 workspace, JAX-WS version 2.1 gets repackaged with OSGi
> configuration in v3/javaee-api/javax.xml.ws.  The artifact produced in
> v3/javaee-api/javax.xml.ws does not get bundled in GlassFish v3
> distribution.  JAX-WS version 2.2 is in javax.xml:webservices-api-osgi
> and that is artifact bundled in v3 distro.
> So now the question is if I can remove javaee-api/javax.xml.ws from v3
> workspace?  Is any module referencing this artifact.
> Searching pom.xml files in v3 workspace,  ejb/ejb-container/pom.xml
> contains  the dependency on org.glassfish:javax.xml.ws.  Can this
> dependency be replaced with javax.xml:webservices-api-osgi?
>
> Please let me know.
>
> Jane
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@...
> For additional commands, e-mail: dev-help@...
>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@...
For additional commands, e-mail: dev-help@...


Re: removing v3/javaee-api/javax.xml.ws

by Sahoo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Yes, please go ahead.

Thanks,
Sahoo

Jane Young wrote:

> Hi,
>
> In the v3 workspace, JAX-WS version 2.1 gets repackaged with OSGi
> configuration in v3/javaee-api/javax.xml.ws.  The artifact produced in
> v3/javaee-api/javax.xml.ws does not get bundled in GlassFish v3
> distribution.  JAX-WS version 2.2 is in javax.xml:webservices-api-osgi
> and that is artifact bundled in v3 distro.
> So now the question is if I can remove javaee-api/javax.xml.ws from v3
> workspace?  Is any module referencing this artifact.
> Searching pom.xml files in v3 workspace,  ejb/ejb-container/pom.xml
> contains  the dependency on org.glassfish:javax.xml.ws.  Can this
> dependency be replaced with javax.xml:webservices-api-osgi?
>
> Please let me know.
>
> Jane
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@...
> For additional commands, e-mail: dev-help@...
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@...
For additional commands, e-mail: dev-help@...


Re: removing v3/javaee-api/javax.xml.ws

by Marina Vatkina :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Jane,

Can you run ejb devtests before checking in the change?

thanks,
-marina

Jane Young wrote:

> Hi,
>
> In the v3 workspace, JAX-WS version 2.1 gets repackaged with OSGi
> configuration in v3/javaee-api/javax.xml.ws.  The artifact produced in
> v3/javaee-api/javax.xml.ws does not get bundled in GlassFish v3
> distribution.  JAX-WS version 2.2 is in javax.xml:webservices-api-osgi
> and that is artifact bundled in v3 distro.
> So now the question is if I can remove javaee-api/javax.xml.ws from v3
> workspace?  Is any module referencing this artifact.
> Searching pom.xml files in v3 workspace,  ejb/ejb-container/pom.xml
> contains  the dependency on org.glassfish:javax.xml.ws.  Can this
> dependency be replaced with javax.xml:webservices-api-osgi?
>
> Please let me know.
>
> Jane
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@...
> For additional commands, e-mail: dev-help@...
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@...
For additional commands, e-mail: dev-help@...


Re: removing v3/javaee-api/javax.xml.ws

by Sahoo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Jane,

You should do the same to javax.xml.bind.

Thanks,
Sahoo

Jane Young wrote:

> Hi,
>
> In the v3 workspace, JAX-WS version 2.1 gets repackaged with OSGi
> configuration in v3/javaee-api/javax.xml.ws.  The artifact produced in
> v3/javaee-api/javax.xml.ws does not get bundled in GlassFish v3
> distribution.  JAX-WS version 2.2 is in javax.xml:webservices-api-osgi
> and that is artifact bundled in v3 distro.
> So now the question is if I can remove javaee-api/javax.xml.ws from v3
> workspace?  Is any module referencing this artifact.
> Searching pom.xml files in v3 workspace,  ejb/ejb-container/pom.xml
> contains  the dependency on org.glassfish:javax.xml.ws.  Can this
> dependency be replaced with javax.xml:webservices-api-osgi?
>
> Please let me know.
>
> Jane
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@...
> For additional commands, e-mail: dev-help@...
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@...
For additional commands, e-mail: dev-help@...


Re: removing v3/javaee-api/javax.xml.ws

by Jane Young-Lau :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Removed:

v3/javaee-api/javax.xml.ws
v3/javaee-api/javax.xml.bind


Sahoo wrote:

> Jane,
>
> You should do the same to javax.xml.bind.
>
> Thanks,
> Sahoo
>
> Jane Young wrote:
>> Hi,
>>
>> In the v3 workspace, JAX-WS version 2.1 gets repackaged with OSGi
>> configuration in v3/javaee-api/javax.xml.ws.  The artifact produced
>> in v3/javaee-api/javax.xml.ws does not get bundled in GlassFish v3
>> distribution.  JAX-WS version 2.2 is in
>> javax.xml:webservices-api-osgi and that is artifact bundled in v3
>> distro.
>> So now the question is if I can remove javaee-api/javax.xml.ws from
>> v3 workspace?  Is any module referencing this artifact.
>> Searching pom.xml files in v3 workspace,  ejb/ejb-container/pom.xml
>> contains  the dependency on org.glassfish:javax.xml.ws.  Can this
>> dependency be replaced with javax.xml:webservices-api-osgi?
>>
>> Please let me know.
>>
>> Jane
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@...
>> For additional commands, e-mail: dev-help@...
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@...
> For additional commands, e-mail: dev-help@...
>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@...
For additional commands, e-mail: dev-help@...


Re: removing v3/javaee-api/javax.xml.ws

by Sahoo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thank you, thank you.

Jane Young wrote:

> Removed:
>
> v3/javaee-api/javax.xml.ws
> v3/javaee-api/javax.xml.bind
>
>
> Sahoo wrote:
>> Jane,
>>
>> You should do the same to javax.xml.bind.
>>
>> Thanks,
>> Sahoo
>>
>> Jane Young wrote:
>>> Hi,
>>>
>>> In the v3 workspace, JAX-WS version 2.1 gets repackaged with OSGi
>>> configuration in v3/javaee-api/javax.xml.ws.  The artifact produced
>>> in v3/javaee-api/javax.xml.ws does not get bundled in GlassFish v3
>>> distribution.  JAX-WS version 2.2 is in
>>> javax.xml:webservices-api-osgi and that is artifact bundled in v3
>>> distro.
>>> So now the question is if I can remove javaee-api/javax.xml.ws from
>>> v3 workspace?  Is any module referencing this artifact.
>>> Searching pom.xml files in v3 workspace,  ejb/ejb-container/pom.xml
>>> contains  the dependency on org.glassfish:javax.xml.ws.  Can this
>>> dependency be replaced with javax.xml:webservices-api-osgi?
>>>
>>> Please let me know.
>>>
>>> Jane
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: dev-unsubscribe@...
>>> For additional commands, e-mail: dev-help@...
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@...
>> For additional commands, e-mail: dev-help@...
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@...
> For additional commands, e-mail: dev-help@...
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@...
For additional commands, e-mail: dev-help@...