RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in 4.0branch

2006-04-27 Thread Scott M Stark
If it's ambiguous then a priority has to be established, as well as
being able to explicitly select the factory type.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Max
Rydahl Andersen
Sent: Thursday, April 27, 2006 2:56 AM
To: [email protected]
Subject: Re: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in
4.0branch


> The util.jar.cglib.ByteCodeThingFactory simply throws a
> ClassNotFoundException("no cglib available") as an example of how this
> could be selected based on class visibility.

But does this not assume that noone will run an app without cglib
present
when using javassist ? That is not true since cglib is a widely
used in other external frameworks.

/max




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


Re: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in 4.0branch

2006-04-27 Thread Max Rydahl Andersen



The util.jar.cglib.ByteCodeThingFactory simply throws a
ClassNotFoundException("no cglib available") as an example of how this
could be selected based on class visibility.


But does this not assume that noone will run an app without cglib present
when using javassist ? That is not true since cglib is a widely
used in other external frameworks.

/max


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Steve Ebersole
Sent: Wednesday, April 26, 2006 9:41 AM
To: [email protected]
Subject: RE: [JBoss-dev] Upgrading cglib dependency to
version 2.1.3 in 4.0branch

Right, that's the other part to this.  I'd need to change the
hibernate-int module to depend on this new hibernate
"release".  Then it is a matter of specifying to use
javassist over cglib as a config parameter.  The interesting
thing here, though, is that this setting is global to a
classloader (scoped by a static variable).  Should this be
something we make a JBoss config option?  Otherwise, I could
just set a system property when the MBean first starts up and
hope that no one has yet loaded that particular class.

Bill/Emmanuel, will need to do the similiar for the ejb3 module.

BTW, anyone have intellij projects files for 4x and head they
would share?



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job  
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache  
Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development




--
--
Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in 4.0branch

2006-04-26 Thread Scott M Stark
I think we should be using something like the more flexible like the
java service provider notion used by jaxp and others as the env aware
factory bootstrap:
http://java.sun.com/j2se/1.5.0/docs/guide/jar/jar.html#Service Provider

A simple example test driver:

package util.jar;

import java.util.Iterator;

/**
 * @author [EMAIL PROTECTED]
 * @version $Revision:$
 */
public class TestServiceProvider
{
   static IByteCodeThing getThing()
   {
  IByteCodeThing thing = null;
  // Bad dependency on sun.misc that we can easily replace with our
own impl
  Iterator ps =
sun.misc.Service.providers(IByteCodeThingFactory.class);
  while (ps.hasNext())
  {
 IByteCodeThingFactory factory = (IByteCodeThingFactory)
ps.next();
 try
 {
thing = factory.getThing();
 }
 catch (Exception e)
 {
// go onto the next provider
System.out.println("Failed to load instance from factory: "
+ factory + ", msg=" + e.getMessage());
 }
  }
  return thing;
   }

   public static void main(String[] args)
   {
  IByteCodeThing thing = getThing();
  System.out.println("Found thing: " + thing);
  thing.doSomething();
   }
}

Simple ant fragments that create a bytecodething.jar with a
META-INF/services/util.jar.IByteCodeThingFactory entry describing a
cglib/javassist based implementation of the
util.jar.IByteCodeThingFactory interface:

  

util.jar.javassit.ByteCodeThingFactory
util.jar.cglib.ByteCodeThingFactory


  
  

  

  
  

  

  

Running the test driver:

[EMAIL PROTECTED] java5]$ ant test-bytecodething
Buildfile: build.xml

bytecodething.jar:
  [jar] Building jar: C:\usr\local\java5\lib\bytecodething.jar

test-bytecodething:
 [java] Failed to load instance from factory:
[EMAIL PROTECTED], msg=no cglib available
 [java] Found thing: [EMAIL PROTECTED]
 [java] Doing javassit bytecode thing

The util.jar.cglib.ByteCodeThingFactory simply throws a
ClassNotFoundException("no cglib available") as an example of how this
could be selected based on class visibility.

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Steve Ebersole
> Sent: Wednesday, April 26, 2006 9:41 AM
> To: [email protected]
> Subject: RE: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> Right, that's the other part to this.  I'd need to change the 
> hibernate-int module to depend on this new hibernate 
> "release".  Then it is a matter of specifying to use 
> javassist over cglib as a config parameter.  The interesting 
> thing here, though, is that this setting is global to a 
> classloader (scoped by a static variable).  Should this be 
> something we make a JBoss config option?  Otherwise, I could 
> just set a system property when the MBean first starts up and 
> hope that no one has yet loaded that particular class.
> 
> Bill/Emmanuel, will need to do the similiar for the ejb3 module.
> 
> BTW, anyone have intellij projects files for 4x and head they 
> would share?


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in 4.0branch

2006-04-26 Thread Steve Ebersole
Right, that's the other part to this.  I'd need to change the
hibernate-int module to depend on this new hibernate "release".  Then it
is a matter of specifying to use javassist over cglib as a config
parameter.  The interesting thing here, though, is that this setting is
global to a classloader (scoped by a static variable).  Should this be
something we make a JBoss config option?  Otherwise, I could just set a
system property when the MBean first starts up and hope that no one has
yet loaded that particular class.

Bill/Emmanuel, will need to do the similiar for the ejb3 module.

BTW, anyone have intellij projects files for 4x and head they would
share?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Scott M Stark
Sent: Wednesday, April 26, 2006 10:08 AM
To: [email protected]
Subject: RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in
4.0branch

The binaries in the repository have to be treated as releases. As soon a
version is out there you have to consider that its being used and that
any change to it will break existing usage. If 3.2.0.CR2 is just
repacked with different configurations/dependencies I would call it
3.2.0.CR2-jboss or perhaps 3.2.0.CR2-javassist(qualifiers to the base
are allowed). How does the javassist reference magically configure
hibernate to use the javassist bytecode generation by default? Based on
Steve's previous comments this still requires additional configuration
in jbossas, and so a 3.2.0.CR2-javassist or 3.2.0.CR3 that expresses a
dependency on javassist in of itself seems broken because simply pulling
this version into jbossas will not work?

I linked the JBAS-3101 issue to the HIBERNATE-34 issue to tie it into
the 4.0.4.GA release.

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Ruel Loehr
> Sent: Wednesday, April 26, 2006 7:48 AM
> To: [email protected]
> Subject: RE: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> You would want to create a new version.The older version 
> which uses
> cglib should remain for historic reasons.  
> 
> For example if 4.0.3.SP1 uses a hibernate version that is 
> dependent upon cglib, we may want to reproduce that build 
> sometime in the future (doing a service pack). 
> 
> Modifying the component-info.xml of 3.2.0.CR2 if it has 
> previously been included in a release will break the repeatability.
> 
> Ruel Loehr
> JBoss QA
>  
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Steve Ebersole
> Sent: Wednesday, April 26, 2006 9:31 AM
> To: [email protected]
> Subject: RE: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> Quick question about this actually.
> 
> 3.2.0.CR2 exists in the respository, specifying cglib, as a 
> dependency and has already been used in one of the 4.0.3 CR 
> releases, correct?
> 
> So what is the policy on changing the component def of a 
> component when that particular release has already been used 
> in a AS release?  Meaning, is it kosher for me to simply 
> change hibernate/3.2.0.CR2/component.xml to reference 
> javassist instead of cglib at this point?  Or do I copy
> hibernate/3.2.0.CR2 into a new hibernate/3.2.0.CR3 (same stuff as
> before) and modify that component.xml to reference javassist?
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Steve Ebersole
> Sent: Tuesday, April 25, 2006 1:29 PM
> To: [email protected]
> Subject: RE: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> Based on previous discussions, we actually plan on making 
> Javassist the utilized provider within JBoss AS.
> 
> http://jira.jboss.com/jira/browse/HIBERNATE-34
> 
> I was unable to assign this to a particular release, however 
> it should get done prior to 4.0.4 goes GA.


---
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IB

RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in 4.0branch

2006-04-26 Thread Scott M Stark
The binaries in the repository have to be treated as releases. As soon a
version is out there you have to consider that its being used and that
any change to it will break existing usage. If 3.2.0.CR2 is just
repacked with different configurations/dependencies I would call it
3.2.0.CR2-jboss or perhaps 3.2.0.CR2-javassist(qualifiers to the base
are allowed). How does the javassist reference magically configure
hibernate to use the javassist bytecode generation by default? Based on
Steve's previous comments this still requires additional configuration
in jbossas, and so a 3.2.0.CR2-javassist or 3.2.0.CR3 that expresses a
dependency on javassist in of itself seems broken because simply pulling
this version into jbossas will not work?

I linked the JBAS-3101 issue to the HIBERNATE-34 issue to tie it into
the 4.0.4.GA release.

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Ruel Loehr
> Sent: Wednesday, April 26, 2006 7:48 AM
> To: [email protected]
> Subject: RE: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> You would want to create a new version.The older version 
> which uses
> cglib should remain for historic reasons.  
> 
> For example if 4.0.3.SP1 uses a hibernate version that is 
> dependent upon cglib, we may want to reproduce that build 
> sometime in the future (doing a service pack). 
> 
> Modifying the component-info.xml of 3.2.0.CR2 if it has 
> previously been included in a release will break the repeatability.
> 
> Ruel Loehr
> JBoss QA
>  
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Steve Ebersole
> Sent: Wednesday, April 26, 2006 9:31 AM
> To: [email protected]
> Subject: RE: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> Quick question about this actually.
> 
> 3.2.0.CR2 exists in the respository, specifying cglib, as a 
> dependency and has already been used in one of the 4.0.3 CR 
> releases, correct?
> 
> So what is the policy on changing the component def of a 
> component when that particular release has already been used 
> in a AS release?  Meaning, is it kosher for me to simply 
> change hibernate/3.2.0.CR2/component.xml to reference 
> javassist instead of cglib at this point?  Or do I copy
> hibernate/3.2.0.CR2 into a new hibernate/3.2.0.CR3 (same stuff as
> before) and modify that component.xml to reference javassist?
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Steve Ebersole
> Sent: Tuesday, April 25, 2006 1:29 PM
> To: [email protected]
> Subject: RE: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> Based on previous discussions, we actually plan on making 
> Javassist the utilized provider within JBoss AS.
> 
> http://jira.jboss.com/jira/browse/HIBERNATE-34
> 
> I was unable to assign this to a particular release, however 
> it should get done prior to 4.0.4 goes GA.


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in 4.0branch

2006-04-26 Thread Ruel Loehr
You would want to create a new version.The older version which uses
cglib should remain for historic reasons.  

For example if 4.0.3.SP1 uses a hibernate version that is dependent upon
cglib, we may want to reproduce that build sometime in the future (doing
a service pack). 

Modifying the component-info.xml of 3.2.0.CR2 if it has previously been
included in a release will break the repeatability.

Ruel Loehr
JBoss QA
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Steve Ebersole
Sent: Wednesday, April 26, 2006 9:31 AM
To: [email protected]
Subject: RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in
4.0branch

Quick question about this actually.

3.2.0.CR2 exists in the respository, specifying cglib, as a dependency
and has already been used in one of the 4.0.3 CR releases, correct?

So what is the policy on changing the component def of a component when
that particular release has already been used in a AS release?  Meaning,
is it kosher for me to simply change hibernate/3.2.0.CR2/component.xml
to reference javassist instead of cglib at this point?  Or do I copy
hibernate/3.2.0.CR2 into a new hibernate/3.2.0.CR3 (same stuff as
before) and modify that component.xml to reference javassist?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Steve Ebersole
Sent: Tuesday, April 25, 2006 1:29 PM
To: [email protected]
Subject: RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in
4.0branch

Based on previous discussions, we actually plan on making Javassist the
utilized provider within JBoss AS.

http://jira.jboss.com/jira/browse/HIBERNATE-34

I was unable to assign this to a particular release, however it should
get done prior to 4.0.4 goes GA.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Adrian Brock
Sent: Tuesday, April 25, 2006 9:59 AM
To: [email protected]
Subject: Re: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in
4.0branch

The Hibernate team should decide this.
They are its biggest consumers, they know what they have
tested against.

On Tue, 2006-04-25 at 09:40 -0500, Ruel Loehr wrote:
> This has been bounced around a few times without resolution.  I'm
> going to increment the version cglib unless someone speaks up with a
> compelling reason not to.
> 
>  
> 
>  
> 
> http://jira.jboss.com/jira/browse/JBAS-3061
> 
>  
> 
> Ruel Loehr
> 
> JBoss QA
> 
>  
> 
>  
> 
> 
-- 

Adrian Brock
Chief Scientist
JBoss Inc.




---
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


---
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


---
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in 4.0branch

2006-04-26 Thread Dimitris Andreadis

Normally you need to copy into a new hibernate release.

For this particular case, if you just add the javassist dependency,
without changing anything else, I suppose you could modify component.xml
with the effect being that older versions of component using this
version of hibernate will pickup the additional javaassist libraries.

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Steve Ebersole
> Sent: 26 April, 2006 17:31
> To: [email protected]
> Subject: RE: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> Quick question about this actually.
> 
> 3.2.0.CR2 exists in the respository, specifying cglib, as a 
> dependency and has already been used in one of the 4.0.3 CR 
> releases, correct?
> 
> So what is the policy on changing the component def of a 
> component when that particular release has already been used 
> in a AS release?  Meaning, is it kosher for me to simply 
> change hibernate/3.2.0.CR2/component.xml to reference 
> javassist instead of cglib at this point?  Or do I copy
> hibernate/3.2.0.CR2 into a new hibernate/3.2.0.CR3 (same stuff as
> before) and modify that component.xml to reference javassist?
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Steve Ebersole
> Sent: Tuesday, April 25, 2006 1:29 PM
> To: [email protected]
> Subject: RE: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> Based on previous discussions, we actually plan on making 
> Javassist the utilized provider within JBoss AS.
> 
> http://jira.jboss.com/jira/browse/HIBERNATE-34
> 
> I was unable to assign this to a particular release, however 
> it should get done prior to 4.0.4 goes GA.
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Adrian Brock
> Sent: Tuesday, April 25, 2006 9:59 AM
> To: [email protected]
> Subject: Re: [JBoss-dev] Upgrading cglib dependency to 
> version 2.1.3 in 4.0branch
> 
> The Hibernate team should decide this.
> They are its biggest consumers, they know what they have 
> tested against.
> 
> On Tue, 2006-04-25 at 09:40 -0500, Ruel Loehr wrote:
> > This has been bounced around a few times without resolution.  I'm 
> > going to increment the version cglib unless someone speaks 
> up with a 
> > compelling reason not to.
> > 
> >  
> > 
> >  
> > 
> > http://jira.jboss.com/jira/browse/JBAS-3061
> > 
> >  
> > 
> > Ruel Loehr
> > 
> > JBoss QA
> > 
> >  
> > 
> >  
> > 
> > 
> --
> 
> Adrian Brock
> Chief Scientist
> JBoss Inc.
> 
> 
> 
> 
> ---
> Using Tomcat but need to do more? Need to support web services,
> security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
> ___
> JBoss-Development mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/jboss-development
> 
> 
> ---
> Using Tomcat but need to do more? Need to support web services,
> security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
> ___
> JBoss-Development mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/jboss-development
> 
> 
> ---
> Using Tomcat but need to do more? Need to support web 
> services, security?
> Get stuff done quickly with pre-integrated technology to make 
> your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on 
> Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
> ___
> JBoss-Development mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/jboss-development
> 


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in 4.0branch

2006-04-26 Thread Steve Ebersole
Quick question about this actually.

3.2.0.CR2 exists in the respository, specifying cglib, as a dependency
and has already been used in one of the 4.0.3 CR releases, correct?

So what is the policy on changing the component def of a component when
that particular release has already been used in a AS release?  Meaning,
is it kosher for me to simply change hibernate/3.2.0.CR2/component.xml
to reference javassist instead of cglib at this point?  Or do I copy
hibernate/3.2.0.CR2 into a new hibernate/3.2.0.CR3 (same stuff as
before) and modify that component.xml to reference javassist?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Steve Ebersole
Sent: Tuesday, April 25, 2006 1:29 PM
To: [email protected]
Subject: RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in
4.0branch

Based on previous discussions, we actually plan on making Javassist the
utilized provider within JBoss AS.

http://jira.jboss.com/jira/browse/HIBERNATE-34

I was unable to assign this to a particular release, however it should
get done prior to 4.0.4 goes GA.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Adrian Brock
Sent: Tuesday, April 25, 2006 9:59 AM
To: [email protected]
Subject: Re: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in
4.0branch

The Hibernate team should decide this.
They are its biggest consumers, they know what they have
tested against.

On Tue, 2006-04-25 at 09:40 -0500, Ruel Loehr wrote:
> This has been bounced around a few times without resolution.  I'm
> going to increment the version cglib unless someone speaks up with a
> compelling reason not to.
> 
>  
> 
>  
> 
> http://jira.jboss.com/jira/browse/JBAS-3061
> 
>  
> 
> Ruel Loehr
> 
> JBoss QA
> 
>  
> 
>  
> 
> 
-- 

Adrian Brock
Chief Scientist
JBoss Inc.




---
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


---
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in 4.0branch

2006-04-25 Thread Steve Ebersole
Based on previous discussions, we actually plan on making Javassist the
utilized provider within JBoss AS.

http://jira.jboss.com/jira/browse/HIBERNATE-34

I was unable to assign this to a particular release, however it should
get done prior to 4.0.4 goes GA.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Adrian Brock
Sent: Tuesday, April 25, 2006 9:59 AM
To: [email protected]
Subject: Re: [JBoss-dev] Upgrading cglib dependency to version 2.1.3 in
4.0branch

The Hibernate team should decide this.
They are its biggest consumers, they know what they have
tested against.

On Tue, 2006-04-25 at 09:40 -0500, Ruel Loehr wrote:
> This has been bounced around a few times without resolution.  I'm
> going to increment the version cglib unless someone speaks up with a
> compelling reason not to.
> 
>  
> 
>  
> 
> http://jira.jboss.com/jira/browse/JBAS-3061
> 
>  
> 
> Ruel Loehr
> 
> JBoss QA
> 
>  
> 
>  
> 
> 
-- 

Adrian Brock
Chief Scientist
JBoss Inc.




---
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
___
JBoss-Development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-development