You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by Tim Stephenson <Ti...@TechnologyOneCorp.com> on 2003/01/03 10:41:33 UTC

[patch] Ear plugin does not include wars / ejbs

One simple fix for this would be to apply the diff below to the ear
plugin.jelly

43,52d42
<         <j:if test="${dep.getProperty('ear.bundle.war')=='true'}">
<           <fileset dir="${maven.repo.local}/${dep.getProjectId()}/wars/">
<             <include
name="${dep.getProjectId()}-${dep.getVersion()}.war"/>
<           </fileset>
<         </j:if>
<         <j:if test="${dep.getProperty('ear.bundle.ejb')=='true'}">
<           <fileset dir="${maven.repo.local}/${dep.getProjectId()}/ejbs/">
<             <include
name="${dep.getProjectId()}-${dep.getVersion()}.jar"/>
<           </fileset>
<         </j:if>

As you see it involves simply repeating the includes for 2 (new?) dependency
properties 'ear.bundle.war' and 'ear.bundle.ejb'. I would have preferred to
use the ${dep.getType()} to avoid having three very similar j:if blocks but
cannot see any way to get the property 'ear.bundle.<type>'. Any suggestions?


Anyway the diff above works just fine - so I wont spend longer on it
Tim 

-----Original Message-----
From: Vincent Massol [mailto:vmassol@octo.com] 
Sent: Friday, 3 January 2003 5:24 PM
To: 'Turbine Maven Developers List'
Subject: RE: Ibiblio and md5


Done for me (statcvs and jcommon)

-Vincent

> -----Original Message-----
> From: Jason van Zyl [mailto:jason@zenplex.com]
> Sent: 03 January 2003 02:48
> To: Turbine Maven Developers List
> Subject: Re: Ibiblio and md5
> 
> On Thu, 2003-01-02 at 21:39, dion@multitask.com.au wrote:
> > Done for me
> 
> Cool, thanks.
> 
> These are the only culprits left :-)
> 
> 
> ./create-checksums:
> ./commons-beanutils/jars/commons-beanutils-1.5.jar.md5: Permission 
> denied
> ./create-checksums: ./torque/jars/torque-3.0-rc1.jar.md5: Permission 
> denied
> ./create-checksums: ./turbine/jars/turbine-2.2-rc1.jar.md5: Permission 
> denied
> ./create-checksums:
> ./jcs-javagroups/jars/jcs-javagroups-alpha-0.20020813.013703.jar.md5:
> Permission denied
> ./create-checksums:
> ./jcs-javagroups/jars/jcs-javagroups-SNAPSHOT.jar.md5: Permission
denied
> ./create-checksums:
>
./commons-discovery/jars/commons-discover-1.0-dev.20020820.022428.jar.md
5:
> Permission denied
> ./create-checksums:
> ./commons-discovery/jars/commons-discovery-SNAPSHOT.jar.md5:
Permission
> denied
> ./create-checksums:
>
./commons-discovery/jars/commons-discover-1.0-dev.20020820.043137.jar.md
5:
> Permission denied
> ./create-checksums:
> ./commons-discovery/jars/commons-discovery-1.0-
> dev.20021010.101254.jar.md5: Permission denied
> ./create-checksums: ./jcommon/jars/jcommon-0.6.4.jar.md5: Permission 
> denied
> ./create-checksums: ./statcvs/jars/statcvs-0.1.2a.jar.md5: Permission 
> denied
> 
> > --
> > dIon Gillard, Multitask Consulting
> > Blog:      http://www.freeroller.net/page/dion/Weblog
> > Work:      http://www.multitask.com.au
> >
> >
> > Jason van Zyl <ja...@zenplex.com> wrote on 03/01/2003 01:11:35 PM:
> >
> > > Hi,
> > >
> > > Any admins that have access to ibiblio please go in and fix any 
> > > permissions as I'm ready to turn on the checksum verification but
> there
> > > are lot of directories I can write correct checksums to.
> > >
> > > Please do this asap.
> > >
> > > --
> > > jvz.
> > >
> > > Jason van Zyl
> > > jason@zenplex.com
> > > http://tambora.zenplex.org
> > >
> > > In short, man creates for himself a new religion of a rational and 
> > > technical order to justify his work and to be justified in it.
> > >
> > >   -- Jacques Ellul, The Technological Society
> > >
> > >
> > > --
> > > To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> > > unsubscribe@jakarta.apache.org>
> > > For additional commands, e-mail: <mailto:turbine-maven-dev- 
> > > help@jakarta.apache.org>
> > >
> >
> > > ForwardSourceID:NT0009E06E
> >
> > --
> > To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> unsubscribe@jakarta.apache.org>
> > For additional commands, e-mail: <mailto:turbine-maven-dev-
> help@jakarta.apache.org>
> --
> jvz.
> 
> Jason van Zyl
> jason@zenplex.com
> http://tambora.zenplex.org
> 
> In short, man creates for himself a new religion of a rational and 
> technical order to justify his work and to be justified in it.
> 
>   -- Jacques Ellul, The Technological Society
> 
> 
> --
> To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> unsubscribe@jakarta.apache.org>
> For additional commands, e-mail: <mailto:turbine-maven-dev- 
> help@jakarta.apache.org>



--
To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
For additional commands, e-mail:
<ma...@jakarta.apache.org>



Re: [patch] Ear plugin does not include wars / ejbs

Posted by di...@multitask.com.au.
Fixed.
--
dIon Gillard, Multitask Consulting
Blog:      http://www.freeroller.net/page/dion/Weblog
Work:      http://www.multitask.com.au


Nathan Coast <na...@blueyonder.co.uk> wrote on 03/01/2003 08:48:54 
PM:

> problem with this is that it doesn't use maven.final.name for the 
> component (ejb 
> and war) names.
> 
> ejb plugin correctly creates components called maven.final.name 
> which defaults 
> to ${pom.id}-version.jar whereas war creates components called 
${pom.id}.war 
> with no option to override.  IMO these should be made consistent first.
> 
> 
> Tim Stephenson wrote:
> > One simple fix for this would be to apply the diff below to the ear
> > plugin.jelly
> > 
> > 43,52d42
> > <         <j:if test="${dep.getProperty('ear.bundle.war')=='true'}">
> > <           <fileset 
dir="${maven.repo.local}/${dep.getProjectId()}/wars/">
> > <             <include
> > name="${dep.getProjectId()}-${dep.getVersion()}.war"/>
> > <           </fileset>
> > <         </j:if>
> > <         <j:if test="${dep.getProperty('ear.bundle.ejb')=='true'}">
> > <           <fileset 
dir="${maven.repo.local}/${dep.getProjectId()}/ejbs/">
> > <             <include
> > name="${dep.getProjectId()}-${dep.getVersion()}.jar"/>
> > <           </fileset>
> > <         </j:if>
> > 
> > As you see it involves simply repeating the includes for 2 (new?) 
dependency
> > properties 'ear.bundle.war' and 'ear.bundle.ejb'. I would have 
preferred to
> > use the ${dep.getType()} to avoid having three very similar j:if 
blocks but
> > cannot see any way to get the property 'ear.bundle.<type>'. Any 
suggestions?
> > 
> > 
> > Anyway the diff above works just fine - so I wont spend longer on it
> > Tim 
> > 
> > -----Original Message-----
> > From: Vincent Massol [mailto:vmassol@octo.com] 
> > Sent: Friday, 3 January 2003 5:24 PM
> > To: 'Turbine Maven Developers List'
> > Subject: RE: Ibiblio and md5
> > 
> > 
> > Done for me (statcvs and jcommon)
> > 
> > -Vincent
> > 
> > 
> >>-----Original Message-----
> >>From: Jason van Zyl [mailto:jason@zenplex.com]
> >>Sent: 03 January 2003 02:48
> >>To: Turbine Maven Developers List
> >>Subject: Re: Ibiblio and md5
> >>
> >>On Thu, 2003-01-02 at 21:39, dion@multitask.com.au wrote:
> >>
> >>>Done for me
> >>
> >>Cool, thanks.
> >>
> >>These are the only culprits left :-)
> >>
> >>
> >>./create-checksums:
> >>./commons-beanutils/jars/commons-beanutils-1.5.jar.md5: Permission 
> >>denied
> >>./create-checksums: ./torque/jars/torque-3.0-rc1.jar.md5: Permission 
> >>denied
> >>./create-checksums: ./turbine/jars/turbine-2.2-rc1.jar.md5: Permission 

> >>denied
> >>./create-checksums:
> >>./jcs-javagroups/jars/jcs-javagroups-alpha-0.20020813.013703.jar.md5:
> >>Permission denied
> >>./create-checksums:
> >>./jcs-javagroups/jars/jcs-javagroups-SNAPSHOT.jar.md5: Permission
> > 
> > denied
> > 
> >>./create-checksums:
> >>
> > 
> > 
./commons-discovery/jars/commons-discover-1.0-dev.20020820.022428.jar.md
> > 5:
> > 
> >>Permission denied
> >>./create-checksums:
> >>./commons-discovery/jars/commons-discovery-SNAPSHOT.jar.md5:
> > 
> > Permission
> > 
> >>denied
> >>./create-checksums:
> >>
> > 
> > 
./commons-discovery/jars/commons-discover-1.0-dev.20020820.043137.jar.md
> > 5:
> > 
> >>Permission denied
> >>./create-checksums:
> >>./commons-discovery/jars/commons-discovery-1.0-
> >>dev.20021010.101254.jar.md5: Permission denied
> >>./create-checksums: ./jcommon/jars/jcommon-0.6.4.jar.md5: Permission 
> >>denied
> >>./create-checksums: ./statcvs/jars/statcvs-0.1.2a.jar.md5: Permission 
> >>denied
> >>
> >>
> >>>--
> >>>dIon Gillard, Multitask Consulting
> >>>Blog:      http://www.freeroller.net/page/dion/Weblog
> >>>Work:      http://www.multitask.com.au
> >>>
> >>>
> >>>Jason van Zyl <ja...@zenplex.com> wrote on 03/01/2003 01:11:35 PM:
> >>>
> >>>
> >>>>Hi,
> >>>>
> >>>>Any admins that have access to ibiblio please go in and fix any 
> >>>>permissions as I'm ready to turn on the checksum verification but
> >>
> >>there
> >>
> >>>>are lot of directories I can write correct checksums to.
> >>>>
> >>>>Please do this asap.
> >>>>
> >>>>--
> >>>>jvz.
> >>>>
> >>>>Jason van Zyl
> >>>>jason@zenplex.com
> >>>>http://tambora.zenplex.org
> >>>>
> >>>>In short, man creates for himself a new religion of a rational and 
> >>>>technical order to justify his work and to be justified in it.
> >>>>
> >>>>  -- Jacques Ellul, The Technological Society
> >>>>
> >>>>
> >>>>--
> >>>>To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> >>>>unsubscribe@jakarta.apache.org>
> >>>>For additional commands, e-mail: <mailto:turbine-maven-dev- 
> >>>>help@jakarta.apache.org>
> >>>>
> >>>>ForwardSourceID:NT0009E06E
> >>>
> >>>--
> >>>To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> >>
> >>unsubscribe@jakarta.apache.org>
> >>
> >>>For additional commands, e-mail: <mailto:turbine-maven-dev-
> >>
> >>help@jakarta.apache.org>
> >>--
> >>jvz.
> >>
> >>Jason van Zyl
> >>jason@zenplex.com
> >>http://tambora.zenplex.org
> >>
> >>In short, man creates for himself a new religion of a rational and 
> >>technical order to justify his work and to be justified in it.
> >>
> >>  -- Jacques Ellul, The Technological Society
> >>
> >>
> >>--
> >>To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> >>unsubscribe@jakarta.apache.org>
> >>For additional commands, e-mail: <mailto:turbine-maven-dev- 
> >>help@jakarta.apache.org>
> > 
> > 
> > 
> > 
> > --
> > To unsubscribe, e-mail:
> > <ma...@jakarta.apache.org>
> > For additional commands, e-mail:
> > <ma...@jakarta.apache.org>
> > 
> > 
> > 
> > --
> > To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> unsubscribe@jakarta.apache.org>
> > For additional commands, e-mail: <mailto:turbine-maven-dev-
> help@jakarta.apache.org>
> > 
> > 
> 
> 
> --
> To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> unsubscribe@jakarta.apache.org>
> For additional commands, e-mail: <mailto:turbine-maven-dev-
> help@jakarta.apache.org>
> 

> ForwardSourceID:NT0009E296 

Re: [patch] Ear plugin does not include wars / ejbs

Posted by Nathan Coast <na...@blueyonder.co.uk>.
problem with this is that it doesn't use maven.final.name for the component (ejb 
and war) names.

ejb plugin correctly creates components called maven.final.name which defaults 
to ${pom.id}-version.jar whereas war creates components called ${pom.id}.war 
with no option to override.  IMO these should be made consistent first.


Tim Stephenson wrote:
> One simple fix for this would be to apply the diff below to the ear
> plugin.jelly
> 
> 43,52d42
> <         <j:if test="${dep.getProperty('ear.bundle.war')=='true'}">
> <           <fileset dir="${maven.repo.local}/${dep.getProjectId()}/wars/">
> <             <include
> name="${dep.getProjectId()}-${dep.getVersion()}.war"/>
> <           </fileset>
> <         </j:if>
> <         <j:if test="${dep.getProperty('ear.bundle.ejb')=='true'}">
> <           <fileset dir="${maven.repo.local}/${dep.getProjectId()}/ejbs/">
> <             <include
> name="${dep.getProjectId()}-${dep.getVersion()}.jar"/>
> <           </fileset>
> <         </j:if>
> 
> As you see it involves simply repeating the includes for 2 (new?) dependency
> properties 'ear.bundle.war' and 'ear.bundle.ejb'. I would have preferred to
> use the ${dep.getType()} to avoid having three very similar j:if blocks but
> cannot see any way to get the property 'ear.bundle.<type>'. Any suggestions?
> 
> 
> Anyway the diff above works just fine - so I wont spend longer on it
> Tim 
> 
> -----Original Message-----
> From: Vincent Massol [mailto:vmassol@octo.com] 
> Sent: Friday, 3 January 2003 5:24 PM
> To: 'Turbine Maven Developers List'
> Subject: RE: Ibiblio and md5
> 
> 
> Done for me (statcvs and jcommon)
> 
> -Vincent
> 
> 
>>-----Original Message-----
>>From: Jason van Zyl [mailto:jason@zenplex.com]
>>Sent: 03 January 2003 02:48
>>To: Turbine Maven Developers List
>>Subject: Re: Ibiblio and md5
>>
>>On Thu, 2003-01-02 at 21:39, dion@multitask.com.au wrote:
>>
>>>Done for me
>>
>>Cool, thanks.
>>
>>These are the only culprits left :-)
>>
>>
>>./create-checksums:
>>./commons-beanutils/jars/commons-beanutils-1.5.jar.md5: Permission 
>>denied
>>./create-checksums: ./torque/jars/torque-3.0-rc1.jar.md5: Permission 
>>denied
>>./create-checksums: ./turbine/jars/turbine-2.2-rc1.jar.md5: Permission 
>>denied
>>./create-checksums:
>>./jcs-javagroups/jars/jcs-javagroups-alpha-0.20020813.013703.jar.md5:
>>Permission denied
>>./create-checksums:
>>./jcs-javagroups/jars/jcs-javagroups-SNAPSHOT.jar.md5: Permission
> 
> denied
> 
>>./create-checksums:
>>
> 
> ./commons-discovery/jars/commons-discover-1.0-dev.20020820.022428.jar.md
> 5:
> 
>>Permission denied
>>./create-checksums:
>>./commons-discovery/jars/commons-discovery-SNAPSHOT.jar.md5:
> 
> Permission
> 
>>denied
>>./create-checksums:
>>
> 
> ./commons-discovery/jars/commons-discover-1.0-dev.20020820.043137.jar.md
> 5:
> 
>>Permission denied
>>./create-checksums:
>>./commons-discovery/jars/commons-discovery-1.0-
>>dev.20021010.101254.jar.md5: Permission denied
>>./create-checksums: ./jcommon/jars/jcommon-0.6.4.jar.md5: Permission 
>>denied
>>./create-checksums: ./statcvs/jars/statcvs-0.1.2a.jar.md5: Permission 
>>denied
>>
>>
>>>--
>>>dIon Gillard, Multitask Consulting
>>>Blog:      http://www.freeroller.net/page/dion/Weblog
>>>Work:      http://www.multitask.com.au
>>>
>>>
>>>Jason van Zyl <ja...@zenplex.com> wrote on 03/01/2003 01:11:35 PM:
>>>
>>>
>>>>Hi,
>>>>
>>>>Any admins that have access to ibiblio please go in and fix any 
>>>>permissions as I'm ready to turn on the checksum verification but
>>
>>there
>>
>>>>are lot of directories I can write correct checksums to.
>>>>
>>>>Please do this asap.
>>>>
>>>>--
>>>>jvz.
>>>>
>>>>Jason van Zyl
>>>>jason@zenplex.com
>>>>http://tambora.zenplex.org
>>>>
>>>>In short, man creates for himself a new religion of a rational and 
>>>>technical order to justify his work and to be justified in it.
>>>>
>>>>  -- Jacques Ellul, The Technological Society
>>>>
>>>>
>>>>--
>>>>To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
>>>>unsubscribe@jakarta.apache.org>
>>>>For additional commands, e-mail: <mailto:turbine-maven-dev- 
>>>>help@jakarta.apache.org>
>>>>
>>>>ForwardSourceID:NT0009E06E
>>>
>>>--
>>>To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
>>
>>unsubscribe@jakarta.apache.org>
>>
>>>For additional commands, e-mail: <mailto:turbine-maven-dev-
>>
>>help@jakarta.apache.org>
>>--
>>jvz.
>>
>>Jason van Zyl
>>jason@zenplex.com
>>http://tambora.zenplex.org
>>
>>In short, man creates for himself a new religion of a rational and 
>>technical order to justify his work and to be justified in it.
>>
>>  -- Jacques Ellul, The Technological Society
>>
>>
>>--
>>To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
>>unsubscribe@jakarta.apache.org>
>>For additional commands, e-mail: <mailto:turbine-maven-dev- 
>>help@jakarta.apache.org>
> 
> 
> 
> 
> --
> To unsubscribe, e-mail:
> <ma...@jakarta.apache.org>
> For additional commands, e-mail:
> <ma...@jakarta.apache.org>
> 
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
> 
> 


Re: [patch] Ear plugin does not include wars / ejbs

Posted by di...@multitask.com.au.
Applied,

thanks!
--
dIon Gillard, Multitask Consulting
Blog:      http://www.freeroller.net/page/dion/Weblog
Work:      http://www.multitask.com.au


Tim Stephenson <Ti...@TechnologyOneCorp.com> wrote on 03/01/2003 
08:41:33 PM:

> One simple fix for this would be to apply the diff below to the ear
> plugin.jelly
> 
> 43,52d42
> <         <j:if test="${dep.getProperty('ear.bundle.war')=='true'}">
> <           <fileset 
dir="${maven.repo.local}/${dep.getProjectId()}/wars/">
> <             <include
> name="${dep.getProjectId()}-${dep.getVersion()}.war"/>
> <           </fileset>
> <         </j:if>
> <         <j:if test="${dep.getProperty('ear.bundle.ejb')=='true'}">
> <           <fileset 
dir="${maven.repo.local}/${dep.getProjectId()}/ejbs/">
> <             <include
> name="${dep.getProjectId()}-${dep.getVersion()}.jar"/>
> <           </fileset>
> <         </j:if>
> 
> As you see it involves simply repeating the includes for 2 (new?) 
dependency
> properties 'ear.bundle.war' and 'ear.bundle.ejb'. I would have preferred 
to
> use the ${dep.getType()} to avoid having three very similar j:if blocks 
but
> cannot see any way to get the property 'ear.bundle.<type>'. Any 
suggestions?
> 
> 
> Anyway the diff above works just fine - so I wont spend longer on it
> Tim 
> 
> -----Original Message-----
> From: Vincent Massol [mailto:vmassol@octo.com] 
> Sent: Friday, 3 January 2003 5:24 PM
> To: 'Turbine Maven Developers List'
> Subject: RE: Ibiblio and md5
> 
> 
> Done for me (statcvs and jcommon)
> 
> -Vincent
> 
> > -----Original Message-----
> > From: Jason van Zyl [mailto:jason@zenplex.com]
> > Sent: 03 January 2003 02:48
> > To: Turbine Maven Developers List
> > Subject: Re: Ibiblio and md5
> > 
> > On Thu, 2003-01-02 at 21:39, dion@multitask.com.au wrote:
> > > Done for me
> > 
> > Cool, thanks.
> > 
> > These are the only culprits left :-)
> > 
> > 
> > ./create-checksums:
> > ./commons-beanutils/jars/commons-beanutils-1.5.jar.md5: Permission 
> > denied
> > ./create-checksums: ./torque/jars/torque-3.0-rc1.jar.md5: Permission 
> > denied
> > ./create-checksums: ./turbine/jars/turbine-2.2-rc1.jar.md5: Permission 

> > denied
> > ./create-checksums:
> > ./jcs-javagroups/jars/jcs-javagroups-alpha-0.20020813.013703.jar.md5:
> > Permission denied
> > ./create-checksums:
> > ./jcs-javagroups/jars/jcs-javagroups-SNAPSHOT.jar.md5: Permission
> denied
> > ./create-checksums:
> >
> ./commons-discovery/jars/commons-discover-1.0-dev.20020820.022428.jar.md
> 5:
> > Permission denied
> > ./create-checksums:
> > ./commons-discovery/jars/commons-discovery-SNAPSHOT.jar.md5:
> Permission
> > denied
> > ./create-checksums:
> >
> ./commons-discovery/jars/commons-discover-1.0-dev.20020820.043137.jar.md
> 5:
> > Permission denied
> > ./create-checksums:
> > ./commons-discovery/jars/commons-discovery-1.0-
> > dev.20021010.101254.jar.md5: Permission denied
> > ./create-checksums: ./jcommon/jars/jcommon-0.6.4.jar.md5: Permission 
> > denied
> > ./create-checksums: ./statcvs/jars/statcvs-0.1.2a.jar.md5: Permission 
> > denied
> > 
> > > --
> > > dIon Gillard, Multitask Consulting
> > > Blog:      http://www.freeroller.net/page/dion/Weblog
> > > Work:      http://www.multitask.com.au
> > >
> > >
> > > Jason van Zyl <ja...@zenplex.com> wrote on 03/01/2003 01:11:35 PM:
> > >
> > > > Hi,
> > > >
> > > > Any admins that have access to ibiblio please go in and fix any 
> > > > permissions as I'm ready to turn on the checksum verification but
> > there
> > > > are lot of directories I can write correct checksums to.
> > > >
> > > > Please do this asap.
> > > >
> > > > --
> > > > jvz.
> > > >
> > > > Jason van Zyl
> > > > jason@zenplex.com
> > > > http://tambora.zenplex.org
> > > >
> > > > In short, man creates for himself a new religion of a rational and 

> > > > technical order to justify his work and to be justified in it.
> > > >
> > > >   -- Jacques Ellul, The Technological Society
> > > >
> > > >
> > > > --
> > > > To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> > > > unsubscribe@jakarta.apache.org>
> > > > For additional commands, e-mail: <mailto:turbine-maven-dev- 
> > > > help@jakarta.apache.org>
> > > >
> > >
> > > > ForwardSourceID:NT0009E06E
> > >
> > > --
> > > To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> > unsubscribe@jakarta.apache.org>
> > > For additional commands, e-mail: <mailto:turbine-maven-dev-
> > help@jakarta.apache.org>
> > --
> > jvz.
> > 
> > Jason van Zyl
> > jason@zenplex.com
> > http://tambora.zenplex.org
> > 
> > In short, man creates for himself a new religion of a rational and 
> > technical order to justify his work and to be justified in it.
> > 
> >   -- Jacques Ellul, The Technological Society
> > 
> > 
> > --
> > To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> > unsubscribe@jakarta.apache.org>
> > For additional commands, e-mail: <mailto:turbine-maven-dev- 
> > help@jakarta.apache.org>
> 
> 
> 
> --
> To unsubscribe, e-mail:
> <ma...@jakarta.apache.org>
> For additional commands, e-mail:
> <ma...@jakarta.apache.org>
> 
> 
> 
> --
> To unsubscribe, e-mail:   <mailto:turbine-maven-dev-
> unsubscribe@jakarta.apache.org>
> For additional commands, e-mail: <mailto:turbine-maven-dev-
> help@jakarta.apache.org>
> 

> ForwardSourceID:NT0009E4BA