|
From: Juergen H. <ju...@in...> - 2006-10-03 15:57:49
|
Dear Spring community, I'm pleased to announce that, after 5 milestone releases and 4 release candidates over the course of 9 months, Spring 2.0 has gone final today. See the announcement on our website: http://www.springframework.org/countdown Note that the website is currently down because of too much load. We would appreciate if you look at it a bit later :-) Here are the direct download links at SourceForge: http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=17364 4&release_id=452461 Thanks to everybody for the invaluable feedback that went into this release! Spring wouldn't be where it is today without your contributions. FYI, we plan to do a 1.2.9 maintenance release in mid October. Furthermore, Spring 2.0.x maintenance releases are scheduled in a rhythm of 4 to 6 weeks. Cheers, Juergen ----- Juergen Hoeller Interface21 http://www.springframework.com |
|
From: Colin S. <col...@ex...> - 2006-10-03 19:10:44
|
Note all that on this occasion I have removed from the web site all previous unversioned XSD versions as referred to by RC3 and earlier, e.g. spring-beans.xsd instead of the spring-beans-2.0.xsd as used by 2.0 RC4 and 2.0 final. Anybody running a previous dev version of 2.0 should still be able to resolve properly within their app, due to the entity resolver, and the old versions on the web site confuses things a lot, as somebody could accidentally point to them and use them accidentally. Colin On 10/3/2006 11:57 AM, Juergen Hoeller wrote: > Dear Spring community, > > I'm pleased to announce that, after 5 milestone releases and 4 release > candidates over the course of 9 months, Spring 2.0 has gone final today. > > See the announcement on our website: > http://www.springframework.org/countdown > > Note that the website is currently down because of too much load. We would > appreciate if you look at it a bit later :-) > > Here are the direct download links at SourceForge: > http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=17364 > 4&release_id=452461 > > Thanks to everybody for the invaluable feedback that went into this release! > Spring wouldn't be where it is today without your contributions. > > FYI, we plan to do a 1.2.9 maintenance release in mid October. Furthermore, > Spring 2.0.x maintenance releases are scheduled in a rhythm of 4 to 6 weeks. > > Cheers, > > Juergen > > ----- > Juergen Hoeller > Interface21 > http://www.springframework.com > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > > |
|
From: Nicolas De L. <nic...@ca...> - 2006-10-04 06:59:03
|
Great work guys ! According to Ben Hale blog, Spring developers will maintain maven POMs=20 for Spring jars. I've created a maven issue for uploading spring2.0 jars+sources+javadocs=20 on ibiblio. If some POMs are already available, they may be attached to=20 this issue. http://jira.codehaus.org/browse/MAVENUPLOAD-1166 Juergen Hoeller a =E9crit : > Dear Spring community, > > I'm pleased to announce that, after 5 milestone releases and 4 release > candidates over the course of 9 months, Spring 2.0 has gone final today. > > See the announcement on our website: > http://www.springframework.org/countdown > > Note that the website is currently down because of too much load. We wo= uld > appreciate if you look at it a bit later :-) > > Here are the direct download links at SourceForge: > http://sourceforge.net/project/showfiles.php?group_id=3D73357&package_i= d=3D17364 > 4&release_id=3D452461 > > Thanks to everybody for the invaluable feedback that went into this rel= ease! > Spring wouldn't be where it is today without your contributions. > > FYI, we plan to do a 1.2.9 maintenance release in mid October. Furtherm= ore, > Spring 2.0.x maintenance releases are scheduled in a rhythm of 4 to 6 w= eeks. > > Cheers, > > Juergen > > ----- > Juergen Hoeller > Interface21 > http://www.springframework.com > > > -----------------------------------------------------------------------= -- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share= your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > > =20 This message contains information that may be privileged or confidential = and is the property of the Capgemini Group. It is intended only for the p= erson to whom it is addressed. If you are not the intended recipient, yo= u are not authorized to read, print, retain, copy, disseminate, distribu= te, or use this message or any part thereof. If you receive this message= in error, please notify the sender immediately and delete all copies of= this message. |
|
From: Nicolas De L. <nic...@ca...> - 2006-10-04 11:26:04
|
My UPLOAD request was rejected as maven team sync from spring repo.
Could you then add modules sources jars to your private repository ?=20
This is really usefull when using eclipse (and other IDE) to get=20
debuging or javadoc from the Java editor.
I'm using this two ant goals in Spring build.xml to create those jars :
<target name=3D"module-source-jars" depends=3D"initdist"=20
description=3D"Create module-specific sources JAR files">
<delete>
<fileset dir=3D"${dist.dir}">
<include name=3D"modules/*-sources.jar"/>
</fileset>
</delete>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-core-${spring-version}-sources.jar"=
>
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/core/**"/>
<include name=3D"org/springframework/util/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}/">
<include name=3D"org/springframework/core/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-beans-${spring-version}-sources.jar=
">
<fileset dir=3D"${src.dir}">
<include name=3D"META-INF/**"/>
<include name=3D"org/springframework/beans/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"META-INF/**"/>
<include name=3D"org/springframework/beans/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-aop-${spring-version}-sources.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/aop/**"/>
<include name=3D"org/springframework/metadata/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/aop/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-context-${spring-version}-sources.j=
ar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/context/**"/>
<!-- exclude content of spring-agent.jar and=20
spring-tomcat-weaver.jar -->
<include=20
name=3D"org/springframework/instrument/classloading/**"/>
<exclude=20
name=3D"org/springframework/instrument/classloading/oc4j/**"/>
<exclude=20
name=3D"org/springframework/instrument/classloading/tomcat/**"/>
<include name=3D"org/springframework/jndi/**"/>
<include name=3D"org/springframework/stereotype/**"/>
<include name=3D"org/springframework/ui/**"/>
<exclude name=3D"org/springframework/ui/velocity/**"/>
<exclude name=3D"org/springframework/ui/freemarker/**"/>
<exclude name=3D"org/springframework/ui/jasperreports/**"=
/>
<include name=3D"org/springframework/validation/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/aop/**"/>
<include=20
name=3D"org/springframework/instrument/classloading/**"/>
<exclude=20
name=3D"org/springframework/instrument/classloading/oc4j/**"/>
<exclude=20
name=3D"org/springframework/instrument/classloading/tomcat/**"/>
<include name=3D"org/springframework/stereotype/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-dao-${spring-version}-sources.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/dao/**"/>
<include name=3D"org/springframework/transaction/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/dao/**"/>
<include name=3D"org/springframework/transaction/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jdbc-${spring-version}-sources.jar"=
>
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/jdbc/**"/>
<include name=3D"org/springframework/orm/**"/>
<exclude name=3D"org/springframework/orm/hibernate/**"/>
<exclude name=3D"org/springframework/orm/hibernate3/**"/>
<exclude name=3D"org/springframework/orm/ibatis/**"/>
<exclude name=3D"org/springframework/orm/jdo/**"/>
<exclude name=3D"org/springframework/orm/jpa/**"/>
<exclude name=3D"org/springframework/orm/toplink/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/jdbc/**"/>
<include name=3D"org/springframework/orm/**"/>
<exclude name=3D"org/springframework/orm/hibernate/**"/>
<exclude name=3D"org/springframework/orm/hibernate3/**"/>
<exclude name=3D"org/springframework/orm/ibatis/**"/>
<exclude name=3D"org/springframework/orm/jdo/**"/>
<exclude name=3D"org/springframework/orm/jpa/**"/>
<exclude name=3D"org/springframework/orm/toplink/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-support-${spring-version}-sources.j=
ar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/cache/**"/>
<include=20
name=3D"org/springframework/instrument/classloading/oc4j/**"/>
<include name=3D"org/springframework/mail/**"/>
<include name=3D"org/springframework/scheduling/**"/>
<include name=3D"org/springframework/scripting/**"/>
<include name=3D"org/springframework/ui/velocity/**"/>
<include name=3D"org/springframework/ui/freemarker/**"/>
<include name=3D"org/springframework/ui/jasperreports/**"=
/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/cache/**"/>
<include=20
name=3D"org/springframework/instrument/classloading/oc4j/**"/>
<include name=3D"org/springframework/mail/**"/>
<include name=3D"org/springframework/scheduling/**"/>
<include name=3D"org/springframework/scripting/**"/>
<include name=3D"org/springframework/ui/velocity/**"/>
<include name=3D"org/springframework/ui/freemarker/**"/>
<include name=3D"org/springframework/ui/jasperreports/**"=
/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-web-${spring-version}-sources.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/web/**"/>
<exclude name=3D"org/springframework/web/servlet/**"/>
<exclude name=3D"org/springframework/web/portlet/**"/>
<exclude name=3D"org/springframework/web/struts/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/web/**"/>
<exclude name=3D"org/springframework/web/servlet/**"/>
<exclude name=3D"org/springframework/web/portlet/**"/>
<exclude name=3D"org/springframework/web/struts/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-webmvc-${spring-version}-sources.ja=
r">
<fileset dir=3D"${src.dir}">
<include name=3D"META-INF/*.tld"/>
<include name=3D"org/springframework/web/servlet/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"META-INF/*.tld"/>
<include name=3D"org/springframework/web/servlet/**"/>
</fileset> =20
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-portlet-${spring-version}-sources.j=
ar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/web/portlet/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/web/portlet/**"/>
</fileset> =20
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-struts-${spring-version}-sources.ja=
r">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/web/struts/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/web/struts/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-remoting-${spring-version}-sources.=
jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/ejb/**"/>
<include name=3D"org/springframework/remoting/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/ejb/**"/>
<include name=3D"org/springframework/remoting/**"/>
</fileset> =20
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jmx-${spring-version}-sources.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/jmx/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/jmx/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jms-${spring-version}-sources.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/jms/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/jms/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jca-${spring-version}-sources.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/jca/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/jca/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jdo-${spring-version}-sources.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/orm/jdo/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/orm/jdo/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jpa-${spring-version}-sources.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/orm/jpa/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/orm/jpa/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-hibernate2-${spring-version}-source=
s.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/orm/hibernate/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/orm/hibernate/**"/>
</fileset> =20
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-hibernate3-${spring-version}-source=
s.jar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/orm/hibernate3/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/orm/hibernate3/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-toplink-${spring-version}-sources.j=
ar">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/orm/toplink/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/orm/toplink/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-mock-${spring-version}-sources.jar"=
>
<fileset dir=3D"${mock.dir}">
<include name=3D"**"/>
</fileset>
<fileset dir=3D"${tiger.mock.dir}">
<include name=3D"**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-ibatis-${spring-version}-sources.ja=
r">
<fileset dir=3D"${src.dir}">
<include name=3D"org/springframework/orm/ibatis/**"/>
</fileset>
<fileset dir=3D"${tiger.src.dir}">
<include name=3D"org/springframework/orm/ibatis/**"/>
</fileset>
</jar>
=20
<jar=20
jarfile=3D"${dist.dir}/spring-aspects-${spring-version}-sources.jar">
<fileset dir=3D"${aspectj.src.dir}">
<include name=3D"META-INF/aop.xml"/>
<include=20
name=3D"org/springframework/beans/factory/aspectj/**"/>
<include name=3D"org/springframework/transaction/aspectj/=
**"/>
</fileset>
</jar>
=20
<jar=20
jarfile=3D"${dist.dir}/weavers/spring-agent-${spring-version}-sources.jar=
">
<fileset dir=3D"${tiger.src.dir}">
<include=20
name=3D"org/springframework/instrument/InstrumentationSavingAgent.class"/=
>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/weavers/spring-tomcat-weaver-${spring-version}-sou=
rces.jar">
<fileset dir=3D"${tiger.src.dir}">
<include=20
name=3D"org/springframework/instrument/classloading/WeavingTransformer.cl=
ass"/>
<include=20
name=3D"org/springframework/instrument/classloading/tomcat/**"/>
</fileset>
</jar> =20
</target>
<target name=3D"module-javadoc-jars" depends=3D"initdist,javadoc"=20
description=3D"Create module-specific javadoc JAR files">
<delete>
<fileset dir=3D"${dist.dir}">
<include name=3D"modules/*-javadoc.jar"/>
</fileset>
</delete>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-core-${spring-version}-javadoc.jar"=
>
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/core/**"/>
<include name=3D"org/springframework/util/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-beans-${spring-version}-javadoc.jar=
">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/beans/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-aop-${spring-version}-javadoc.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/aop/**"/>
<include name=3D"org/springframework/metadata/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-context-${spring-version}-javadoc.j=
ar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/context/**"/>
<!-- exclude content of spring-agent.jar and=20
spring-tomcat-weaver.jar -->
<include=20
name=3D"org/springframework/instrument/classloading/**"/>
<exclude=20
name=3D"org/springframework/instrument/classloading/oc4j/**"/>
<exclude=20
name=3D"org/springframework/instrument/classloading/tomcat/**"/>
<include name=3D"org/springframework/jndi/**"/>
<include name=3D"org/springframework/stereotype/**"/>
<include name=3D"org/springframework/ui/**"/>
<exclude name=3D"org/springframework/ui/velocity/**"/>
<exclude name=3D"org/springframework/ui/freemarker/**"/>
<exclude name=3D"org/springframework/ui/jasperreports/**"=
/>
<include name=3D"org/springframework/validation/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-dao-${spring-version}-javadoc.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/dao/**"/>
<include name=3D"org/springframework/transaction/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jdbc-${spring-version}-javadoc.jar"=
>
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/jdbc/**"/>
<include name=3D"org/springframework/orm/**"/>
<exclude name=3D"org/springframework/orm/hibernate/**"/>
<exclude name=3D"org/springframework/orm/hibernate3/**"/>
<exclude name=3D"org/springframework/orm/ibatis/**"/>
<exclude name=3D"org/springframework/orm/jdo/**"/>
<exclude name=3D"org/springframework/orm/jpa/**"/>
<exclude name=3D"org/springframework/orm/toplink/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-support-${spring-version}-javadoc.j=
ar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/cache/**"/>
<include=20
name=3D"org/springframework/instrument/classloading/oc4j/**"/>
<include name=3D"org/springframework/mail/**"/>
<include name=3D"org/springframework/scheduling/**"/>
<include name=3D"org/springframework/scripting/**"/>
<include name=3D"org/springframework/ui/velocity/**"/>
<include name=3D"org/springframework/ui/freemarker/**"/>
<include name=3D"org/springframework/ui/jasperreports/**"=
/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-web-${spring-version}-javadoc.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/web/**"/>
<exclude name=3D"org/springframework/web/servlet/**"/>
<exclude name=3D"org/springframework/web/portlet/**"/>
<exclude name=3D"org/springframework/web/struts/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-webmvc-${spring-version}-javadoc.ja=
r">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/web/servlet/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-portlet-${spring-version}-javadoc.j=
ar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/web/portlet/**"/>
</fileset> =20
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-struts-${spring-version}-javadoc.ja=
r">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/web/struts/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-remoting-${spring-version}-javadoc.=
jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/ejb/**"/>
<include name=3D"org/springframework/remoting/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jmx-${spring-version}-javadoc.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/jmx/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jms-${spring-version}-javadoc.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/jms/**"/>
</fileset> =20
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jca-${spring-version}-javadoc.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/jca/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jdo-${spring-version}-javadoc.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/orm/jdo/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-jpa-${spring-version}-javadoc.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/orm/jpa/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-hibernate2-${spring-version}-javado=
c.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/orm/hibernate/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-hibernate3-${spring-version}-javado=
c.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/orm/hibernate3/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-toplink-${spring-version}-javadoc.j=
ar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/orm/toplink/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-mock-${spring-version}-javadoc.jar"=
>
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/mock/**"/>
<include name=3D"org/springframework/test/**"/>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/modules/spring-ibatis-${spring-version}-javadoc.ja=
r">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include name=3D"org/springframework/orm/ibatis/**"/>
</fileset>
</jar>
=20
<jar=20
jarfile=3D"${dist.dir}/spring-aspects-${spring-version}-sources.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include=20
name=3D"org/springframework/beans/factory/aspectj/**"/>
<include name=3D"org/springframework/transaction/aspectj/=
**"/>
</fileset>
</jar>
=20
<jar=20
jarfile=3D"${dist.dir}/weavers/spring-agent-${spring-version}-sources.jar=
">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include=20
name=3D"org/springframework/instrument/InstrumentationSavingAgent.class"/=
>
</fileset>
</jar>
<jar=20
jarfile=3D"${dist.dir}/weavers/spring-tomcat-weaver-${spring-version}-sou=
rces.jar">
<fileset dir=3D"${javadoc.dir}">
<include name=3D"*"/>
<include=20
name=3D"org/springframework/instrument/classloading/WeavingTransformer.cl=
ass"/>
<include=20
name=3D"org/springframework/instrument/classloading/tomcat/**"/>
</fileset>
</jar> =20
</target>
Nicolas De Loof a =E9crit :
> Great work guys !
>
> According to Ben Hale blog, Spring developers will maintain maven POMs=20
> for Spring jars.
> I've created a maven issue for uploading spring2.0=20
> jars+sources+javadocs on ibiblio. If some POMs are already available,=20
> they may be attached to this issue.
>
> http://jira.codehaus.org/browse/MAVENUPLOAD-1166
>
>
> Juergen Hoeller a =E9crit :
>> Dear Spring community,
>>
>> I'm pleased to announce that, after 5 milestone releases and 4 release
>> candidates over the course of 9 months, Spring 2.0 has gone final toda=
y.
>>
>> See the announcement on our website:
>> http://www.springframework.org/countdown
>>
>> Note that the website is currently down because of too much load. We=20
>> would
>> appreciate if you look at it a bit later :-)
>>
>> Here are the direct download links at SourceForge:
>> http://sourceforge.net/project/showfiles.php?group_id=3D73357&package_=
id=3D17364=20
>>
>> 4&release_id=3D452461
>>
>> Thanks to everybody for the invaluable feedback that went into this=20
>> release!
>> Spring wouldn't be where it is today without your contributions.
>>
>> FYI, we plan to do a 1.2.9 maintenance release in mid October.=20
>> Furthermore,
>> Spring 2.0.x maintenance releases are scheduled in a rhythm of 4 to 6=20
>> weeks.
>>
>> Cheers,
>>
>> Juergen
>>
>> -----
>> Juergen Hoeller
>> Interface21
>> http://www.springframework.com
>>
>>
>> ----------------------------------------------------------------------=
---=20
>>
>> Take Surveys. Earn Cash. Influence the Future of IT
>> Join SourceForge.net's Techsay panel and you'll get the chance to=20
>> share your
>> opinions on IT & business topics through brief surveys -- and earn cas=
h
>> http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=
=3DDEVDEV=20
>>
>> _______________________________________________
>> Springframework-developer mailing list
>> Spr...@li...
>> https://lists.sourceforge.net/lists/listinfo/springframework-developer
>>
>> =20
>
This message contains information that may be privileged or confidential =
and is the property of the Capgemini Group. It is intended only for the p=
erson to whom it is addressed. If you are not the intended recipient, yo=
u are not authorized to read, print, retain, copy, disseminate, distribu=
te, or use this message or any part thereof. If you receive this message=
in error, please notify the sender immediately and delete all copies of=
this message.
|
|
From: Carlos S. <ca...@ap...> - 2006-10-05 14:55:34
|
Maven repo is synced from Spring repo https://svn.sourceforge.net/svnroot/springframework/repos/repo/ You can provide them the sources and javadocs to be put there. On 10/4/06, Nicolas De Loof <nic...@ca...> wrote: > > Great work guys ! > > According to Ben Hale blog, Spring developers will maintain maven POMs > for Spring jars. > I've created a maven issue for uploading spring2.0 jars+sources+javadocs > on ibiblio. If some POMs are already available, they may be attached to > this issue. > > http://jira.codehaus.org/browse/MAVENUPLOAD-1166 > > > Juergen Hoeller a =E9crit : > > Dear Spring community, > > > > I'm pleased to announce that, after 5 milestone releases and 4 release > > candidates over the course of 9 months, Spring 2.0 has gone final today= . > > > > See the announcement on our website: > > http://www.springframework.org/countdown > > > > Note that the website is currently down because of too much load. We wo= uld > > appreciate if you look at it a bit later :-) > > > > Here are the direct download links at SourceForge: > > http://sourceforge.net/project/showfiles.php?group_id=3D73357&package_i= d=3D17364 > > 4&release_id=3D452461 > > > > Thanks to everybody for the invaluable feedback that went into this rel= ease! > > Spring wouldn't be where it is today without your contributions. > > > > FYI, we plan to do a 1.2.9 maintenance release in mid October. Furtherm= ore, > > Spring 2.0.x maintenance releases are scheduled in a rhythm of 4 to 6 w= eeks. > > > > Cheers, > > > > Juergen > > > > ----- > > Juergen Hoeller > > Interface21 > > http://www.springframework.com > > > > > > -----------------------------------------------------------------------= -- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share= your > > opinions on IT & business topics through brief surveys -- and earn cash > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID= =3DDEVDEV > > _______________________________________________ > > Springframework-developer mailing list > > Spr...@li... > > https://lists.sourceforge.net/lists/listinfo/springframework-developer > > > > > > This message contains information that may be privileged or confidential = and is the property of the Capgemini Group. It is intended only for the per= son to whom it is addressed. If you are not the intended recipient, you ar= e not authorized to read, print, retain, copy, disseminate, distribute, or= use this message or any part thereof. If you receive this message in erro= r, please notify the sender immediately and delete all copies of this mess= age. > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share y= our > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > --=20 I could give you my word as a Spaniard. No good. I've known too many Spaniards. -- The Princess Bride |
|
From: Ben A. <ben...@ac...> - 2006-10-05 20:35:34
|
Carlos Sanchez wrote: > Maven repo is synced from Spring repo > https://svn.sourceforge.net/svnroot/springframework/repos/repo/ > > You can provide them the sources and javadocs to be put there. Any reason the sources are missing from the Spring snapshot repo (with the notable exception of the "spring" artifact)? Cheers Ben |
|
From: Ben H. <ben...@in...> - 2006-10-06 00:37:27
Attachments:
smime.p7s
|
Right now the builds (the ant builds) do not create individual jars for for sources and javadocs. It does create sources and javadocs for the main jar. Contributions from the community of these artifacts are nice, but it's not really a scalable way to populate the maven repo. We're looking into strategies for create those elements as part of the build in the future, but at this point we don't have them. Ben Hale Spring Training, Consulting and Support - "From the Source" http://www.interface21.com cell: 321.591.2340 On Oct 5, 2006, at 4:35 PM, Ben Alex wrote: > Carlos Sanchez wrote: >> Maven repo is synced from Spring repo >> https://svn.sourceforge.net/svnroot/springframework/repos/repo/ >> >> You can provide them the sources and javadocs to be put there. > > Any reason the sources are missing from the Spring snapshot repo (with > the notable exception of the "spring" artifact)? > > Cheers > Ben > > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys -- and earn > cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer |
|
From: Nicolas De L. <nic...@ca...> - 2006-10-06 08:11:04
|
Until a build fully maven2 compliant is in place, could you please=20 manually add the sources jars for modules in the spring repo so that=20 they become available using ibiblio sync ? They're very usefull for Eclipse (or other IDE) developers to get=20 debugging, javadocs and parameters name. You can also get them from my personnal repo : http://ndeloof.free.fr/mav= en2 I've sent my ant script on this list to build them, but I consider this=20 as a workaround. Do you allready have ideas about a module/maven2=20 compliant build ? I myself had similar issue with a "all in one jar" lib=20 to be splitted into modules. The "cleaner" way is to split sources into separate sub-projects and use=20 the maven2 assembly plugin to create the "full" jar from modules. But=20 this requires to move source files, and you will then loose CVS=20 history... (what about using subversion ?) Another way is to create multiple POM files that point to the same srs=20 folder but use <includes> to only compile and package module classes. There is also the "Java1.3 + Java5 in same jar" issue. I don't like=20 splitting every module into spring-xx and spring-xx-tiger as Carlos=20 Sanchez suggested. It can be solved by using maven-jboss-compiler-plugin=20 : this is a modified maven compiler plugin that allows to change the src=20 dir. Using it, you can run compiler twice. A first (default) run using=20 bootclasspath set to Java1.3 runtime, a second one using jboss-compiler=20 to point to "tiger" code. @see=20 http://mail-archives.apache.org/mod_mbox/maven-users/200608.mbox/%3C44EAA= 635...@ca...%3E @see http://repository.jboss.com/maven2 Another solution is to use the maven build helper plugin to add tiger=20 sources to compiler path and define <excludes> to only compile Java1.3=20 classes as default execution. A second execution is then configured to=20 compile all classes using Java5 (java13 compiled classes are not recompil= ed) If you're interseted any of those solutions, I'd be pleased to give you=20 feedback from my personnal experiments on this. Nicolas De Loof Ben Hale a =E9crit : > Right now the builds (the ant builds) do not create individual jars=20 > for for sources and javadocs. It does create sources and javadocs for=20 > the main jar. Contributions from the community of these artifacts are=20 > nice, but it's not really a scalable way to populate the maven repo. =20 > We're looking into strategies for create those elements as part of the=20 > build in the future, but at this point we don't have them. > > Ben Hale > Spring Training, Consulting and Support - "From the Source" > http://www.interface21.com > cell: 321.591.2340 > > > > On Oct 5, 2006, at 4:35 PM, Ben Alex wrote: > >> Carlos Sanchez wrote: >>> Maven repo is synced from Spring repo >>> https://svn.sourceforge.net/svnroot/springframework/repos/repo/ >>> >>> You can provide them the sources and javadocs to be put there. >> >> Any reason the sources are missing from the Spring snapshot repo (with >> the notable exception of the "spring" artifact)? >> >> Cheers >> Ben >> >> ----------------------------------------------------------------------= ---=20 >> >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to=20 >> share your >> opinions on IT & business topics through brief surveys -- and earn cas= h >> http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID= =3DDEVDEV=20 >> >> _______________________________________________ >> Springframework-developer mailing list >> Spr...@li... >> https://lists.sourceforge.net/lists/listinfo/springframework-developer > > -----------------------------------------------------------------------= - > > -----------------------------------------------------------------------= -- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share= your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > -----------------------------------------------------------------------= - > > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > =20 This message contains information that may be privileged or confidential = and is the property of the Capgemini Group. It is intended only for the p= erson to whom it is addressed. If you are not the intended recipient, yo= u are not authorized to read, print, retain, copy, disseminate, distribu= te, or use this message or any part thereof. If you receive this message= in error, please notify the sender immediately and delete all copies of= this message. |
|
From: Kristoffer M. <kri...@gm...> - 2006-10-06 08:13:30
|
Take a look at http://www.ibiblio.org/maven2/org/springframework/spring/2.0= /. As far as I can see the repo contains both sources and javadocs. /K On 10/6/06, Nicolas De Loof <nic...@ca...> wrote: > > > Until a build fully maven2 compliant is in place, could you please > manually add the sources jars for modules in the spring repo so that > they become available using ibiblio sync ? > They're very usefull for Eclipse (or other IDE) developers to get > debugging, javadocs and parameters name. > You can also get them from my personnal repo : > http://ndeloof.free.fr/maven2 > > I've sent my ant script on this list to build them, but I consider this > as a workaround. Do you allready have ideas about a module/maven2 > compliant build ? I myself had similar issue with a "all in one jar" lib > to be splitted into modules. > > The "cleaner" way is to split sources into separate sub-projects and use > the maven2 assembly plugin to create the "full" jar from modules. But > this requires to move source files, and you will then loose CVS > history... (what about using subversion ?) > > Another way is to create multiple POM files that point to the same srs > folder but use <includes> to only compile and package module classes. > > There is also the "Java1.3 + Java5 in same jar" issue. I don't like > splitting every module into spring-xx and spring-xx-tiger as Carlos > Sanchez suggested. It can be solved by using maven-jboss-compiler-plugin > : this is a modified maven compiler plugin that allows to change the src > dir. Using it, you can run compiler twice. A first (default) run using > bootclasspath set to Java1.3 runtime, a second one using jboss-compiler > to point to "tiger" code. > > @see > > http://mail-archives.apache.org/mod_mbox/maven-users/200608.mbox/%3C44EAA= 635...@ca...%3E > @see http://repository.jboss.com/maven2 > > Another solution is to use the maven build helper plugin to add tiger > sources to compiler path and define <excludes> to only compile Java1.3 > classes as default execution. A second execution is then configured to > compile all classes using Java5 (java13 compiled classes are not > recompiled) > > If you're interseted any of those solutions, I'd be pleased to give you > feedback from my personnal experiments on this. > > Nicolas De Loof > > Ben Hale a =E9crit : > > Right now the builds (the ant builds) do not create individual jars > > for for sources and javadocs. It does create sources and javadocs for > > the main jar. Contributions from the community of these artifacts are > > nice, but it's not really a scalable way to populate the maven repo. > > We're looking into strategies for create those elements as part of the > > build in the future, but at this point we don't have them. > > > > Ben Hale > > Spring Training, Consulting and Support - "From the Source" > > http://www.interface21.com > > cell: 321.591.2340 > > > > > > > > On Oct 5, 2006, at 4:35 PM, Ben Alex wrote: > > > >> Carlos Sanchez wrote: > >>> Maven repo is synced from Spring repo > >>> https://svn.sourceforge.net/svnroot/springframework/repos/repo/ > >>> > >>> You can provide them the sources and javadocs to be put there. > >> > >> Any reason the sources are missing from the Spring snapshot repo (with > >> the notable exception of the "spring" artifact)? > >> > >> Cheers > >> Ben > >> > >> > ------------------------------------------------------------------------- > >> > >> Take Surveys. Earn Cash. Influence the Future of IT > >> Join SourceForge.net's Techsay panel and you'll get the chance to > >> share your > >> opinions on IT & business topics through brief surveys -- and earn cas= h > >> > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > >> > >> _______________________________________________ > >> Springframework-developer mailing list > >> Spr...@li... > >> https://lists.sourceforge.net/lists/listinfo/springframework-developer > > > > -----------------------------------------------------------------------= - > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > opinions on IT & business topics through brief surveys -- and earn cash > > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > > -----------------------------------------------------------------------= - > > > > _______________________________________________ > > Springframework-developer mailing list > > Spr...@li... > > https://lists.sourceforge.net/lists/listinfo/springframework-developer > > > > This message contains information that may be privileged or confidential > and is the property of the Capgemini Group. It is intended only for the > person to whom it is addressed. If you are not the intended recipient, y= ou > are not authorized to read, print, retain, copy, disseminate, distribute= , > or use this message or any part thereof. If you receive this message in > error, please notify the sender immediately and delete all copies of thi= s > message. > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > |
|
From: Nicolas De L. <nic...@ca...> - 2006-10-06 08:59:25
|
You're right, but only for the spring full jar. Spring jars as modules have no source and javadocs. Maven2 eclipse=20 plugin can download them automatically and attach them to the IDE Java=20 Editor. Kristoffer Moum a =E9crit : > Take a look at=20 > http://www.ibiblio.org/maven2/org/springframework/spring/2.0/. As far=20 > as I can see the repo contains both sources and javadocs. > /K > > On 10/6/06, *Nicolas De Loof* <nic...@ca...=20 > <mailto:nic...@ca...>> wrote: > > > Until a build fully maven2 compliant is in place, could you please > manually add the sources jars for modules in the spring repo so tha= t > they become available using ibiblio sync ? > They're very usefull for Eclipse (or other IDE) developers to get > debugging, javadocs and parameters name. > You can also get them from my personnal repo : > http://ndeloof.free.fr/maven2 > > I've sent my ant script on this list to build them, but I consider > this > as a workaround. Do you allready have ideas about a module/maven2 > compliant build ? I myself had similar issue with a "all in one > jar" lib > to be splitted into modules. > > The "cleaner" way is to split sources into separate sub-projects > and use > the maven2 assembly plugin to create the "full" jar from modules. B= ut > this requires to move source files, and you will then loose CVS > history... (what about using subversion ?) > > Another way is to create multiple POM files that point to the same > srs > folder but use <includes> to only compile and package module classe= s. > > There is also the "Java1.3 + Java5 in same jar" issue. I don't lik= e > splitting every module into spring-xx and spring-xx-tiger as Carlos > Sanchez suggested. It can be solved by using > maven-jboss-compiler-plugin > : this is a modified maven compiler plugin that allows to change > the src > dir. Using it, you can run compiler twice. A first (default) run > using > bootclasspath set to Java1.3 runtime, a second one using > jboss-compiler > to point to "tiger" code. > > @see > http://mail-archives.apache.org/mod_mbox/maven-users/200608.mbox/%3= C44...@ca...%3E > @see http://repository.jboss.com/maven2 > > Another solution is to use the maven build helper plugin to add tig= er > sources to compiler path and define <excludes> to only compile Java= 1.3 > classes as default execution. A second execution is then configured= to > compile all classes using Java5 (java13 compiled classes are not > recompiled) > > If you're interseted any of those solutions, I'd be pleased to > give you > feedback from my personnal experiments on this. > > Nicolas De Loof > > Ben Hale a =E9crit : > > Right now the builds (the ant builds) do not create individual ja= rs > > for for sources and javadocs. It does create sources and > javadocs for > > the main jar. Contributions from the community of these > artifacts are > > nice, but it's not really a scalable way to populate the maven > repo. > > We're looking into strategies for create those elements as part > of the > > build in the future, but at this point we don't have them. > > > > Ben Hale > > Spring Training, Consulting and Support - "From the Source" > > http://www.interface21.com > > cell: 321.591.2340 > > > > > > > > On Oct 5, 2006, at 4:35 PM, Ben Alex wrote: > > > >> Carlos Sanchez wrote: > >>> Maven repo is synced from Spring repo > >>> https://svn.sourceforge.net/svnroot/springframework/repos/repo/ > >>> > >>> You can provide them the sources and javadocs to be put there. > >> > >> Any reason the sources are missing from the Spring snapshot > repo (with > >> the notable exception of the "spring" artifact)? > >> > >> Cheers > >> Ben > >> > >> > -------------------------------------------------------------------= ------ > >> > >> Take Surveys. Earn Cash. Influence the Future of IT > >> Join SourceForge.net's Techsay panel and you'll get the chance t= o > >> share your > >> opinions on IT & business topics through brief surveys -- and > earn cash > >> > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&= CID=3DDEVDEV > <http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge= &CID=3DDEVDEV> > >> > >> _______________________________________________ > >> Springframework-developer mailing list > >> Spr...@li... > <mailto:Spr...@li...> > >> > https://lists.sourceforge.net/lists/listinfo/springframework-develo= per > <https://lists.sourceforge.net/lists/listinfo/springframework-devel= oper> > > > > > -------------------------------------------------------------------= ----- > > > > > -------------------------------------------------------------------= ------ > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance > to share your > > opinions on IT & business topics through brief surveys -- and > earn cash > > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&= CID=3DDEVDEV > <http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge= &CID=3DDEVDEV> > > > -------------------------------------------------------------------= ----- > > > > _______________________________________________ > > Springframework-developer mailing list > > Spr...@li... > <mailto:Spr...@li...> > > > https://lists.sourceforge.net/lists/listinfo/springframework-develo= per > > > > This message contains information that may be privileged or > confidential and is the property of the Capgemini Group. It is > intended only for the person to whom it is addressed. If you are > not the intended recipient, you are not authorized to read, > print, retain, copy, disseminate, distribute, or use this message > or any part thereof. If you receive this message in error, please > notify the sender immediately and delete all copies of this messag= e. > > > -------------------------------------------------------------------= ------ > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys -- and earn > cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&= CID=3DDEVDEV > <http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge= &CID=3DDEVDEV> > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > <mailto:Spr...@li...> > https://lists.sourceforge.net/lists/listinfo/springframework-develo= per > > > -----------------------------------------------------------------------= - > > -----------------------------------------------------------------------= -- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share= your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > -----------------------------------------------------------------------= - > > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > =20 This message contains information that may be privileged or confidential = and is the property of the Capgemini Group. It is intended only for the p= erson to whom it is addressed. If you are not the intended recipient, yo= u are not authorized to read, print, retain, copy, disseminate, distribu= te, or use this message or any part thereof. If you receive this message= in error, please notify the sender immediately and delete all copies of= this message. |