-
1. Re: Container versions in extensions
alrubinger Jun 28, 2010 11:45 PM (in response to dan.j.allen)Good catch.
I think Major and minor should be nice, in case compatibility is broken inbetween. We can only hope no one breaks in a patch release.
S,
ALR
-
2. Re: Container versions in extensions
dan.j.allen Jul 15, 2010 2:17 AM (in response to dan.j.allen)I've implemented this for the Tomcat and Jetty extensions. I followed the same pattern we are using in Arquillian...cite the earliest major version that is compatible, and only include a minor version if it is warranted.
- extension-tomcat-6
- extension-jetty-6
- extension-jetty-7
-
3. Re: Container versions in extensions
aslak Jul 15, 2010 4:18 AM (in response to dan.j.allen)Dan Allen wrote:
I've implemented this for the Tomcat and Jetty extensions. I followed the same pattern we are using in Arquillian...cite the earliest major version that is compatible, and only include a minor version if it is warranted.
- extension-tomcat-6
- extension-jetty-6
- extension-jetty-7
Just to make sure..
Arquillian has Jetty 6.1
ShrinkWrap has Jetty 6
Of course it could be perfectly explained by: Other APIs needed by the Arquillian Container besides the Deployment APIs has changed from 6.0 to 6.1. But, is that the case?
-
4. Re: Container versions in extensions
alrubinger Jul 15, 2010 9:15 AM (in response to dan.j.allen)Super, SHRINKWRAP JIRA now reflects this.
S,
ALR
-
5. Re: Container versions in extensions
dan.j.allen Jul 15, 2010 3:45 PM (in response to aslak)Aslak Knutsen wrote:
Dan Allen wrote:
I've implemented this for the Tomcat and Jetty extensions. I followed the same pattern we are using in Arquillian...cite the earliest major version that is compatible, and only include a minor version if it is warranted.
- extension-tomcat-6
- extension-jetty-6
- extension-jetty-7
Just to make sure..
Arquillian has Jetty 6.1
ShrinkWrap has Jetty 6
Of course it could be perfectly explained by: Other APIs needed by the Arquillian Container besides the Deployment APIs has changed from 6.0 to 6.1. But, is that the case?
That's exactly the case. The JNDI naming changed in Jetty 6.1, an API which Arquillian uses. The WebAppContext itself has remained unchanged from Jetty 6.0.0. I just verified this. So the ShrinkWrap extension has the broader version support.