You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Clifton <cl...@gmail.com> on 2008/01/24 16:57:48 UTC

Setting the javac bootclasspath using dependencies

What's the best, most painless way to set the bootclasspath for the
maven-compiler-plugin? I'm trying to break out some shared code between my
J2ME midlet module and my servlet module into a shared module that builds a
jar. I'd like the compiler to use the midp20 and cldc11 jars on the boot
classpath. I just tried checking these jars into artifactory (our local
repo) setting a dependency on them and then using the following expression
for the compilerArguments tag: "-Dbootclasspath=${project.dependencies}"

The expression returns a list of dependencies and doesn't format correctly.
Am I missing something?
-- 
View this message in context: http://www.nabble.com/Setting-the-javac-bootclasspath-using-dependencies-tp15067527s177p15067527.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: Setting the javac bootclasspath using dependencies

Posted by Clifton <cl...@gmail.com>.
Whoops! That actually seems to work. Ok, I guess problem is solved! Thanx!

Clifton wrote:
> 
> Ok that helps a little. Still I'm looking for the right expression for
> evaluating the dependencies (or even better select dependencies) as a path
> expression. This is what I have so far:
>          <plugin>
>             <artifactId>maven-compiler-plugin</artifactId>
>             <configuration>
>                <source>1.3</source>
>                <target>1.3</target>
>                <compilerArguments>
>                   <bootclasspath>${project.dependencies}</bootclasspath>
>                </compilerArguments>
>             </configuration>
>          </plugin>
> 
> 
> Matthew Tordoff wrote:
>> 
>> The following page has an example of setting the bootclasspath:
>> 
>> http://maven.apache.org/plugins/maven-compiler-plugin/examples/pass-comp
>> iler-arguments.html
>> 
>> It seems to not use the -D before the parameter, im not sure if this is
>> partly to blame for the problems you are experiencing.
>> 
>> Matt 
>> 
>> -----Original Message-----
>> From: Clifton [mailto:clifton.craig@gmail.com] 
>> Sent: 24 January 2008 15:58
>> To: users@maven.apache.org
>> Subject: Setting the javac bootclasspath using dependencies
>> 
>> 
>> What's the best, most painless way to set the bootclasspath for the
>> maven-compiler-plugin? I'm trying to break out some shared code between
>> my J2ME midlet module and my servlet module into a shared module that
>> builds a jar. I'd like the compiler to use the midp20 and cldc11 jars on
>> the boot classpath. I just tried checking these jars into artifactory
>> (our local
>> repo) setting a dependency on them and then using the following
>> expression for the compilerArguments tag:
>> "-Dbootclasspath=${project.dependencies}"
>> 
>> The expression returns a list of dependencies and doesn't format
>> correctly.
>> Am I missing something?
>> --
>> View this message in context:
>> http://www.nabble.com/Setting-the-javac-bootclasspath-using-dependencies
>> -tp15067527s177p15067527.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>> 
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>> 
>> 
>> 
>> 
>> The content of this e-mail is confidential and may be privileged. It may
>> be read, copied and used only by the intended recipient and may not be
>> disclosed, copied or distributed. If you received this email in error,
>> please contact the sender immediately by return e-mail or by telephoning
>> +44 20 7260 2000, delete it and do not disclose its contents to any
>> person. You should take full responsibility for checking this email for
>> viruses. Markit reserves the right to monitor all e-mail communications
>> through its network.
>> Markit and its affiliated companies make no warranty as to the accuracy
>> or completeness of any information contained in this message and hereby
>> exclude any liability of any kind for the information contained herein.
>> Any opinions expressed in this message are those of the author and do not
>> necessarily reflect the opinions of Markit.
>> For full details about Markit, its offerings and legal terms and
>> conditions, please see Markit's website at http://www.markit.com
>> <http://www.markit.com/> .
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>> 
>> 
>> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Setting-the-javac-bootclasspath-using-dependencies-tp15067527s177p15072526.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: Setting the javac bootclasspath using dependencies

Posted by Clifton <cl...@gmail.com>.
Ok that helps a little. Still I'm looking for the right expression for
evaluating the dependencies (or even better select dependencies) as a path
expression. This is what I have so far:
         <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
               <source>1.3</source>
               <target>1.3</target>
               <compilerArguments>
                  <bootclasspath>${project.dependencies}</bootclasspath>
               </compilerArguments>
            </configuration>
         </plugin>


Matthew Tordoff wrote:
> 
> The following page has an example of setting the bootclasspath:
> 
> http://maven.apache.org/plugins/maven-compiler-plugin/examples/pass-comp
> iler-arguments.html
> 
> It seems to not use the -D before the parameter, im not sure if this is
> partly to blame for the problems you are experiencing.
> 
> Matt 
> 
> -----Original Message-----
> From: Clifton [mailto:clifton.craig@gmail.com] 
> Sent: 24 January 2008 15:58
> To: users@maven.apache.org
> Subject: Setting the javac bootclasspath using dependencies
> 
> 
> What's the best, most painless way to set the bootclasspath for the
> maven-compiler-plugin? I'm trying to break out some shared code between
> my J2ME midlet module and my servlet module into a shared module that
> builds a jar. I'd like the compiler to use the midp20 and cldc11 jars on
> the boot classpath. I just tried checking these jars into artifactory
> (our local
> repo) setting a dependency on them and then using the following
> expression for the compilerArguments tag:
> "-Dbootclasspath=${project.dependencies}"
> 
> The expression returns a list of dependencies and doesn't format
> correctly.
> Am I missing something?
> --
> View this message in context:
> http://www.nabble.com/Setting-the-javac-bootclasspath-using-dependencies
> -tp15067527s177p15067527.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 
> 
> The content of this e-mail is confidential and may be privileged. It may
> be read, copied and used only by the intended recipient and may not be
> disclosed, copied or distributed. If you received this email in error,
> please contact the sender immediately by return e-mail or by telephoning
> +44 20 7260 2000, delete it and do not disclose its contents to any
> person. You should take full responsibility for checking this email for
> viruses. Markit reserves the right to monitor all e-mail communications
> through its network.
> Markit and its affiliated companies make no warranty as to the accuracy or
> completeness of any information contained in this message and hereby
> exclude any liability of any kind for the information contained herein.
> Any opinions expressed in this message are those of the author and do not
> necessarily reflect the opinions of Markit.
> For full details about Markit, its offerings and legal terms and
> conditions, please see Markit's website at http://www.markit.com
> <http://www.markit.com/> .
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Setting-the-javac-bootclasspath-using-dependencies-tp15067527s177p15072521.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Re: archetypes & velocity [Virus checked]

Posted by Raphaël Piéroni <ra...@gmail.com>.
Velocity is indicated in the plugin site
in the faq IIRC.

Raphaël

2008/1/30, Wolfgang.Schrecker@atosorigin.com
<Wo...@atosorigin.com>:
> Thanks for your patience and support Raphaël !
>
> I had NO idea that the archetype descriptor is in fact a velocity template.
> Since I started to read sources concerning archetype creation, I can see
> much clearer, what happens.
>
> mit freundlichen Grüßen/best regards
>
> Wolfgang Schrecker
>
> "... the elements of a good model have synergy, and well-chosen MODULES
> bring together elements of the model with particulary rich relationships"
> from Eric Evans: Domain-Driven Design p. 110
>  --
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstrasse 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> mailto:Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
>
>              "Raphaël Piéroni"
>              <raphaelpieroni@g
>              mail.com>                                                  An
>                                         "Maven Users List"
>              25.01.2008 18:56           <us...@maven.apache.org>
>                                                                      Kopie
>
>               Bitte antworten                                        Thema
>                     an                  Re: Re: archetypes & velocity
>                "Maven Users             [Virus checked]
>                    List"
>              <users@maven.apac
>                   he.org>
>
>
>
>
>
>
>
> Then in §2 "Create the archetype descriptor"
> the java files in archetype-resources are velocity templates.
>
> In §4 "Create the prototype files and the prototype pom.xml"
> you can see use defined properties passed to the velocity context
> before generating from template files.
>
> Hope this helps.
>
> Raphaël
>
> 2008/1/25, Wolfgang.Schrecker@atosorigin.com
> <Wo...@atosorigin.com>:
> > Sure I did, Raphaël. Did not see anything from velocity mentioned there.
> >
> > mit freundlichen Grüßen/best regards
> >
> > Wolfgang Schrecker
> >
> > "... the elements of a good model have synergy, and well-chosen MODULES
> > bring together elements of the model with particulary rich relationships"
> > from Eric Evans: Domain-Driven Design p. 110
> >  --
> > --------------------------------------------------
> >
> > Atos Worldline Processing GmbH
> > Hahnstrasse 25
> > 60528 Frankfurt/Main
> > Germany
> > Phone: +49 69/6657-1176
> > mailto:Wolfgang.Schrecker@atosorigin.com
> > http://www.atosworldline.com
> >
> > Geschäftsführer: Erik Munk Koefoed
> > Aufsichtsratsvorsitzender: Didier Dhennin
> > Sitz der Gesellschaft: Frankfurt/Main
> > Handelsregister: Frankfurt/Main HRB 40 417
> >
> >
> >
> >              "Raphaël Piéroni"
> >              <raphaelpieroni@g
> >              mail.com>
> An
> >                                         "Maven Users List"
> >              25.01.2008 15:11           <us...@maven.apache.org>
> >
> Kopie
> >
> >               Bitte antworten
> Thema
> >                     an                  Re: archetypes & velocity [Virus
> >                "Maven Users             checked]
> >                    List"
> >              <users@maven.apac
> >                   he.org>
> >
> >
> >
> >
> >
> >
> >
> > Hi Wolfgang,
> >
> > had you read that guide?
> > http://maven.apache.org/guides/mini/guide-creating-archetypes.html
> >
> > Regards,
> >
> > Raphaël
> >
> > 2008/1/25, Wolfgang.Schrecker@atosorigin.com
> > <Wo...@atosorigin.com>:
> > > Thanks a lot Raphaël!
> > >
> > > Then, once I have created the VTL text file (with help from your link),
> > > where in the archetype is it supposed to go, so it is executed when
> using
> > > the archetype to create a project??
> > >
> > > mit freundlichen Grüßen/best regards
> > >
> > > Wolfgang Schrecker
> > >
> > > "... the elements of a good model have synergy, and well-chosen MODULES
> > > bring together elements of the model with particulary rich
> relationships"
> > > from Eric Evans: Domain-Driven Design p. 110
> > >  --
> > > --------------------------------------------------
> > >
> > > Atos Worldline Processing GmbH
> > > Hahnstrasse 25
> > > 60528 Frankfurt/Main
> > > Germany
> > > Phone: +49 69/6657-1176
> > > mailto:Wolfgang.Schrecker@atosorigin.com
> > > http://www.atosworldline.com
> > >
> > > Geschäftsführer: Erik Munk Koefoed
> > > Aufsichtsratsvorsitzender: Didier Dhennin
> > > Sitz der Gesellschaft: Frankfurt/Main
> > > Handelsregister: Frankfurt/Main HRB 40 417
> > >
> > >
> > >
> > >              "Raphaël Piéroni"
> > >              <raphaelpieroni@g
> > >              mail.com>
> > An
> > >                                         "Maven Users List"
> > >              24.01.2008 22:36           <us...@maven.apache.org>
> > >
> > Kopie
> > >
> > >               Bitte antworten
> > Thema
> > >                     an                  Re: archetypes & velocity
> [Virus
> > >                "Maven Users             checked]
> > >                    List"
> > >              <users@maven.apac
> > >                   he.org>
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > Hi Wolfgang.
> > >
> > > velocity templates used in archetypes are just plain text files with
> VTL
> > > http://velocity.apache.org/engine/releases/velocity-1.4
> > > /vtl-reference-guide.html
> > >
> > > Hope this helps.
> > >
> > > Raphaël
> > >
> > > 2008/1/24, Wolfgang.Schrecker@atosorigin.com
> > > <Wo...@atosorigin.com>:
> > > > Hi everyone ,
> > > >
> > > > creating a project using an archetype utilizes velocity. Is there an
> > > > example and/or docs how to create your own velocity template for use
> in
> > > > your own archetypes ??
> > > >
> > > > mit freundlichen Grüßen/best regards
> > > >
> > > > Wolfgang Schrecker
> > > >
> > >
> > >
> > > PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline
> > und B+S Card Service.
> > > Infos und Anmeldung unter http://www.kartenforum.de
> > > --------------------------------------------------
> > >
> > > Atos Worldline Processing GmbH
> > > Hahnstraße 25
> > > 60528 Frankfurt/Main
> > > Germany
> > > Phone: +49 69/6657-1176
> > > Fax :
> > > mailto: Wolfgang.Schrecker@atosorigin.com
> > > http://www.atosworldline.com
> > >
> > > Geschäftsführer: Erik Munk Koefoed
> > > Aufsichtsratsvorsitzender: Didier Dhennin
> > > Sitz der Gesellschaft: Frankfurt/Main
> > > Handelsregister: Frankfurt/Main HRB 40 417
> > >
> > >
> > > * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> > > This e-mail is destined for the above mentioned recipient. In case you
> > > received this e-mail by accident, we would appreciate it if you could
> > > contact the sender and delete all copies stored on your computer.
> > > Please be aware that the security and confidentiality of electronic
> data
> > > transmitted by e-mail is not completely guaranteed and that data may be
> > seen,
> > > copied, downloaded or changed by third persons during transmission.
> > > Atos Origin accepts no liability for the security and confidentiality
> of
> > > data and documents sent by e-mail. Please make sure that all important
> > > messages will be confirmed in writing by means of a telefax or a
> letter.
> > > * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> > >
> >
> >
> > PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline
> und B+S Card Service.
> > Infos und Anmeldung unter http://www.kartenforum.de
> > --------------------------------------------------
> >
> > Atos Worldline Processing GmbH
> > Hahnstraße 25
> > 60528 Frankfurt/Main
> > Germany
> > Phone: +49 69/6657-1176
> > Fax :
> > mailto: Wolfgang.Schrecker@atosorigin.com
> > http://www.atosworldline.com
> >
> > Geschäftsführer: Erik Munk Koefoed
> > Aufsichtsratsvorsitzender: Didier Dhennin
> > Sitz der Gesellschaft: Frankfurt/Main
> > Handelsregister: Frankfurt/Main HRB 40 417
> >
> >
> > * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> > This e-mail is destined for the above mentioned recipient. In case you
> > received this e-mail by accident, we would appreciate it if you could
> > contact the sender and delete all copies stored on your computer.
> > Please be aware that the security and confidentiality of electronic data
> > transmitted by e-mail is not completely guaranteed and that data may be
> seen,
> > copied, downloaded or changed by third persons during transmission.
> > Atos Origin accepts no liability for the security and confidentiality of
> > data and documents sent by e-mail. Please make sure that all important
> > messages will be confirmed in writing by means of a telefax or a letter.
> > * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> >
>
>
> PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline und B+S Card Service.
> Infos und Anmeldung unter http://www.kartenforum.de
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstraße 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> Fax :
> mailto: Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> This e-mail is destined for the above mentioned recipient. In case you
> received this e-mail by accident, we would appreciate it if you could
> contact the sender and delete all copies stored on your computer.
> Please be aware that the security and confidentiality of electronic data
> transmitted by e-mail is not completely guaranteed and that data may be seen,
> copied, downloaded or changed by third persons during transmission.
> Atos Origin accepts no liability for the security and confidentiality of
> data and documents sent by e-mail. Please make sure that all important
> messages will be confirmed in writing by means of a telefax or a letter.
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
>

Re: Re: archetypes & velocity [Virus checked]

Posted by Wo...@atosorigin.com.
Thanks for your patience and support Raphaël !

I had NO idea that the archetype descriptor is in fact a velocity template.
Since I started to read sources concerning archetype creation, I can see
much clearer, what happens.

mit freundlichen Grüßen/best regards

Wolfgang Schrecker

"... the elements of a good model have synergy, and well-chosen MODULES
bring together elements of the model with particulary rich relationships"
from Eric Evans: Domain-Driven Design p. 110
 --
--------------------------------------------------

Atos Worldline Processing GmbH
Hahnstrasse 25
60528 Frankfurt/Main
Germany
Phone: +49 69/6657-1176
mailto:Wolfgang.Schrecker@atosorigin.com
http://www.atosworldline.com

Geschäftsführer: Erik Munk Koefoed
Aufsichtsratsvorsitzender: Didier Dhennin
Sitz der Gesellschaft: Frankfurt/Main
Handelsregister: Frankfurt/Main HRB 40 417


                                                                           
             "Raphaël Piéroni"                                             
             <raphaelpieroni@g                                             
             mail.com>                                                  An 
                                        "Maven Users List"                 
             25.01.2008 18:56           <us...@maven.apache.org>           
                                                                     Kopie 
                                                                           
              Bitte antworten                                        Thema 
                    an                  Re: Re: archetypes & velocity      
               "Maven Users             [Virus checked]                    
                   List"                                                   
             <users@maven.apac                                             
                  he.org>                                                  
                                                                           
                                                                           
                                                                           




Then in §2 "Create the archetype descriptor"
the java files in archetype-resources are velocity templates.

In §4 "Create the prototype files and the prototype pom.xml"
you can see use defined properties passed to the velocity context
before generating from template files.

Hope this helps.

Raphaël

2008/1/25, Wolfgang.Schrecker@atosorigin.com
<Wo...@atosorigin.com>:
> Sure I did, Raphaël. Did not see anything from velocity mentioned there.
>
> mit freundlichen Grüßen/best regards
>
> Wolfgang Schrecker
>
> "... the elements of a good model have synergy, and well-chosen MODULES
> bring together elements of the model with particulary rich relationships"
> from Eric Evans: Domain-Driven Design p. 110
>  --
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstrasse 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> mailto:Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
>
>              "Raphaël Piéroni"
>              <raphaelpieroni@g
>              mail.com>
An
>                                         "Maven Users List"
>              25.01.2008 15:11           <us...@maven.apache.org>
>
Kopie
>
>               Bitte antworten
Thema
>                     an                  Re: archetypes & velocity [Virus
>                "Maven Users             checked]
>                    List"
>              <users@maven.apac
>                   he.org>
>
>
>
>
>
>
>
> Hi Wolfgang,
>
> had you read that guide?
> http://maven.apache.org/guides/mini/guide-creating-archetypes.html
>
> Regards,
>
> Raphaël
>
> 2008/1/25, Wolfgang.Schrecker@atosorigin.com
> <Wo...@atosorigin.com>:
> > Thanks a lot Raphaël!
> >
> > Then, once I have created the VTL text file (with help from your link),
> > where in the archetype is it supposed to go, so it is executed when
using
> > the archetype to create a project??
> >
> > mit freundlichen Grüßen/best regards
> >
> > Wolfgang Schrecker
> >
> > "... the elements of a good model have synergy, and well-chosen MODULES
> > bring together elements of the model with particulary rich
relationships"
> > from Eric Evans: Domain-Driven Design p. 110
> >  --
> > --------------------------------------------------
> >
> > Atos Worldline Processing GmbH
> > Hahnstrasse 25
> > 60528 Frankfurt/Main
> > Germany
> > Phone: +49 69/6657-1176
> > mailto:Wolfgang.Schrecker@atosorigin.com
> > http://www.atosworldline.com
> >
> > Geschäftsführer: Erik Munk Koefoed
> > Aufsichtsratsvorsitzender: Didier Dhennin
> > Sitz der Gesellschaft: Frankfurt/Main
> > Handelsregister: Frankfurt/Main HRB 40 417
> >
> >
> >
> >              "Raphaël Piéroni"
> >              <raphaelpieroni@g
> >              mail.com>
> An
> >                                         "Maven Users List"
> >              24.01.2008 22:36           <us...@maven.apache.org>
> >
> Kopie
> >
> >               Bitte antworten
> Thema
> >                     an                  Re: archetypes & velocity
[Virus
> >                "Maven Users             checked]
> >                    List"
> >              <users@maven.apac
> >                   he.org>
> >
> >
> >
> >
> >
> >
> >
> > Hi Wolfgang.
> >
> > velocity templates used in archetypes are just plain text files with
VTL
> > http://velocity.apache.org/engine/releases/velocity-1.4
> > /vtl-reference-guide.html
> >
> > Hope this helps.
> >
> > Raphaël
> >
> > 2008/1/24, Wolfgang.Schrecker@atosorigin.com
> > <Wo...@atosorigin.com>:
> > > Hi everyone ,
> > >
> > > creating a project using an archetype utilizes velocity. Is there an
> > > example and/or docs how to create your own velocity template for use
in
> > > your own archetypes ??
> > >
> > > mit freundlichen Grüßen/best regards
> > >
> > > Wolfgang Schrecker
> > >
> >
> >
> > PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline
> und B+S Card Service.
> > Infos und Anmeldung unter http://www.kartenforum.de
> > --------------------------------------------------
> >
> > Atos Worldline Processing GmbH
> > Hahnstraße 25
> > 60528 Frankfurt/Main
> > Germany
> > Phone: +49 69/6657-1176
> > Fax :
> > mailto: Wolfgang.Schrecker@atosorigin.com
> > http://www.atosworldline.com
> >
> > Geschäftsführer: Erik Munk Koefoed
> > Aufsichtsratsvorsitzender: Didier Dhennin
> > Sitz der Gesellschaft: Frankfurt/Main
> > Handelsregister: Frankfurt/Main HRB 40 417
> >
> >
> > * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> > This e-mail is destined for the above mentioned recipient. In case you
> > received this e-mail by accident, we would appreciate it if you could
> > contact the sender and delete all copies stored on your computer.
> > Please be aware that the security and confidentiality of electronic
data
> > transmitted by e-mail is not completely guaranteed and that data may be
> seen,
> > copied, downloaded or changed by third persons during transmission.
> > Atos Origin accepts no liability for the security and confidentiality
of
> > data and documents sent by e-mail. Please make sure that all important
> > messages will be confirmed in writing by means of a telefax or a
letter.
> > * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> >
>
>
> PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline
und B+S Card Service.
> Infos und Anmeldung unter http://www.kartenforum.de
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstraße 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> Fax :
> mailto: Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> This e-mail is destined for the above mentioned recipient. In case you
> received this e-mail by accident, we would appreciate it if you could
> contact the sender and delete all copies stored on your computer.
> Please be aware that the security and confidentiality of electronic data
> transmitted by e-mail is not completely guaranteed and that data may be
seen,
> copied, downloaded or changed by third persons during transmission.
> Atos Origin accepts no liability for the security and confidentiality of
> data and documents sent by e-mail. Please make sure that all important
> messages will be confirmed in writing by means of a telefax or a letter.
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
>

 
PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline und B+S Card Service.
Infos und Anmeldung unter http://www.kartenforum.de
--------------------------------------------------

Atos Worldline Processing GmbH
Hahnstraße 25
60528 Frankfurt/Main
Germany
Phone: +49 69/6657-1176
Fax :
mailto: Wolfgang.Schrecker@atosorigin.com
http://www.atosworldline.com

Geschäftsführer: Erik Munk Koefoed
Aufsichtsratsvorsitzender: Didier Dhennin
Sitz der Gesellschaft: Frankfurt/Main
Handelsregister: Frankfurt/Main HRB 40 417


* * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
This e-mail is destined for the above mentioned recipient. In case you
received this e-mail by accident, we would appreciate it if you could
contact the sender and delete all copies stored on your computer.
Please be aware that the security and confidentiality of electronic data
transmitted by e-mail is not completely guaranteed and that data may be seen,
copied, downloaded or changed by third persons during transmission.
Atos Origin accepts no liability for the security and confidentiality of
data and documents sent by e-mail. Please make sure that all important
messages will be confirmed in writing by means of a telefax or a letter.
* * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *

Re: Re: archetypes & velocity [Virus checked]

Posted by Raphaël Piéroni <ra...@gmail.com>.
Then in §2 "Create the archetype descriptor"
the java files in archetype-resources are velocity templates.

In §4 "Create the prototype files and the prototype pom.xml"
you can see use defined properties passed to the velocity context
before generating from template files.

Hope this helps.

Raphaël

2008/1/25, Wolfgang.Schrecker@atosorigin.com
<Wo...@atosorigin.com>:
> Sure I did, Raphaël. Did not see anything from velocity mentioned there.
>
> mit freundlichen Grüßen/best regards
>
> Wolfgang Schrecker
>
> "... the elements of a good model have synergy, and well-chosen MODULES
> bring together elements of the model with particulary rich relationships"
> from Eric Evans: Domain-Driven Design p. 110
>  --
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstrasse 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> mailto:Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
>
>              "Raphaël Piéroni"
>              <raphaelpieroni@g
>              mail.com>                                                  An
>                                         "Maven Users List"
>              25.01.2008 15:11           <us...@maven.apache.org>
>                                                                      Kopie
>
>               Bitte antworten                                        Thema
>                     an                  Re: archetypes & velocity [Virus
>                "Maven Users             checked]
>                    List"
>              <users@maven.apac
>                   he.org>
>
>
>
>
>
>
>
> Hi Wolfgang,
>
> had you read that guide?
> http://maven.apache.org/guides/mini/guide-creating-archetypes.html
>
> Regards,
>
> Raphaël
>
> 2008/1/25, Wolfgang.Schrecker@atosorigin.com
> <Wo...@atosorigin.com>:
> > Thanks a lot Raphaël!
> >
> > Then, once I have created the VTL text file (with help from your link),
> > where in the archetype is it supposed to go, so it is executed when using
> > the archetype to create a project??
> >
> > mit freundlichen Grüßen/best regards
> >
> > Wolfgang Schrecker
> >
> > "... the elements of a good model have synergy, and well-chosen MODULES
> > bring together elements of the model with particulary rich relationships"
> > from Eric Evans: Domain-Driven Design p. 110
> >  --
> > --------------------------------------------------
> >
> > Atos Worldline Processing GmbH
> > Hahnstrasse 25
> > 60528 Frankfurt/Main
> > Germany
> > Phone: +49 69/6657-1176
> > mailto:Wolfgang.Schrecker@atosorigin.com
> > http://www.atosworldline.com
> >
> > Geschäftsführer: Erik Munk Koefoed
> > Aufsichtsratsvorsitzender: Didier Dhennin
> > Sitz der Gesellschaft: Frankfurt/Main
> > Handelsregister: Frankfurt/Main HRB 40 417
> >
> >
> >
> >              "Raphaël Piéroni"
> >              <raphaelpieroni@g
> >              mail.com>
> An
> >                                         "Maven Users List"
> >              24.01.2008 22:36           <us...@maven.apache.org>
> >
> Kopie
> >
> >               Bitte antworten
> Thema
> >                     an                  Re: archetypes & velocity [Virus
> >                "Maven Users             checked]
> >                    List"
> >              <users@maven.apac
> >                   he.org>
> >
> >
> >
> >
> >
> >
> >
> > Hi Wolfgang.
> >
> > velocity templates used in archetypes are just plain text files with VTL
> > http://velocity.apache.org/engine/releases/velocity-1.4
> > /vtl-reference-guide.html
> >
> > Hope this helps.
> >
> > Raphaël
> >
> > 2008/1/24, Wolfgang.Schrecker@atosorigin.com
> > <Wo...@atosorigin.com>:
> > > Hi everyone ,
> > >
> > > creating a project using an archetype utilizes velocity. Is there an
> > > example and/or docs how to create your own velocity template for use in
> > > your own archetypes ??
> > >
> > > mit freundlichen Grüßen/best regards
> > >
> > > Wolfgang Schrecker
> > >
> >
> >
> > PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline
> und B+S Card Service.
> > Infos und Anmeldung unter http://www.kartenforum.de
> > --------------------------------------------------
> >
> > Atos Worldline Processing GmbH
> > Hahnstraße 25
> > 60528 Frankfurt/Main
> > Germany
> > Phone: +49 69/6657-1176
> > Fax :
> > mailto: Wolfgang.Schrecker@atosorigin.com
> > http://www.atosworldline.com
> >
> > Geschäftsführer: Erik Munk Koefoed
> > Aufsichtsratsvorsitzender: Didier Dhennin
> > Sitz der Gesellschaft: Frankfurt/Main
> > Handelsregister: Frankfurt/Main HRB 40 417
> >
> >
> > * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> > This e-mail is destined for the above mentioned recipient. In case you
> > received this e-mail by accident, we would appreciate it if you could
> > contact the sender and delete all copies stored on your computer.
> > Please be aware that the security and confidentiality of electronic data
> > transmitted by e-mail is not completely guaranteed and that data may be
> seen,
> > copied, downloaded or changed by third persons during transmission.
> > Atos Origin accepts no liability for the security and confidentiality of
> > data and documents sent by e-mail. Please make sure that all important
> > messages will be confirmed in writing by means of a telefax or a letter.
> > * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> >
>
>
> PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline und B+S Card Service.
> Infos und Anmeldung unter http://www.kartenforum.de
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstraße 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> Fax :
> mailto: Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> This e-mail is destined for the above mentioned recipient. In case you
> received this e-mail by accident, we would appreciate it if you could
> contact the sender and delete all copies stored on your computer.
> Please be aware that the security and confidentiality of electronic data
> transmitted by e-mail is not completely guaranteed and that data may be seen,
> copied, downloaded or changed by third persons during transmission.
> Atos Origin accepts no liability for the security and confidentiality of
> data and documents sent by e-mail. Please make sure that all important
> messages will be confirmed in writing by means of a telefax or a letter.
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
>

Antwort: Re: archetypes & velocity [Virus checked]

Posted by Wo...@atosorigin.com.
Sure I did, Raphaël. Did not see anything from velocity mentioned there.

mit freundlichen Grüßen/best regards

Wolfgang Schrecker

"... the elements of a good model have synergy, and well-chosen MODULES
bring together elements of the model with particulary rich relationships"
from Eric Evans: Domain-Driven Design p. 110
 --
--------------------------------------------------

Atos Worldline Processing GmbH
Hahnstrasse 25
60528 Frankfurt/Main
Germany
Phone: +49 69/6657-1176
mailto:Wolfgang.Schrecker@atosorigin.com
http://www.atosworldline.com

Geschäftsführer: Erik Munk Koefoed
Aufsichtsratsvorsitzender: Didier Dhennin
Sitz der Gesellschaft: Frankfurt/Main
Handelsregister: Frankfurt/Main HRB 40 417


                                                                           
             "Raphaël Piéroni"                                             
             <raphaelpieroni@g                                             
             mail.com>                                                  An 
                                        "Maven Users List"                 
             25.01.2008 15:11           <us...@maven.apache.org>           
                                                                     Kopie 
                                                                           
              Bitte antworten                                        Thema 
                    an                  Re: archetypes & velocity [Virus   
               "Maven Users             checked]                           
                   List"                                                   
             <users@maven.apac                                             
                  he.org>                                                  
                                                                           
                                                                           
                                                                           




Hi Wolfgang,

had you read that guide?
http://maven.apache.org/guides/mini/guide-creating-archetypes.html

Regards,

Raphaël

2008/1/25, Wolfgang.Schrecker@atosorigin.com
<Wo...@atosorigin.com>:
> Thanks a lot Raphaël!
>
> Then, once I have created the VTL text file (with help from your link),
> where in the archetype is it supposed to go, so it is executed when using
> the archetype to create a project??
>
> mit freundlichen Grüßen/best regards
>
> Wolfgang Schrecker
>
> "... the elements of a good model have synergy, and well-chosen MODULES
> bring together elements of the model with particulary rich relationships"
> from Eric Evans: Domain-Driven Design p. 110
>  --
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstrasse 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> mailto:Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
>
>              "Raphaël Piéroni"
>              <raphaelpieroni@g
>              mail.com>
An
>                                         "Maven Users List"
>              24.01.2008 22:36           <us...@maven.apache.org>
>
Kopie
>
>               Bitte antworten
Thema
>                     an                  Re: archetypes & velocity [Virus
>                "Maven Users             checked]
>                    List"
>              <users@maven.apac
>                   he.org>
>
>
>
>
>
>
>
> Hi Wolfgang.
>
> velocity templates used in archetypes are just plain text files with VTL
> http://velocity.apache.org/engine/releases/velocity-1.4
> /vtl-reference-guide.html
>
> Hope this helps.
>
> Raphaël
>
> 2008/1/24, Wolfgang.Schrecker@atosorigin.com
> <Wo...@atosorigin.com>:
> > Hi everyone ,
> >
> > creating a project using an archetype utilizes velocity. Is there an
> > example and/or docs how to create your own velocity template for use in
> > your own archetypes ??
> >
> > mit freundlichen Grüßen/best regards
> >
> > Wolfgang Schrecker
> >
>
>
> PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline
und B+S Card Service.
> Infos und Anmeldung unter http://www.kartenforum.de
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstraße 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> Fax :
> mailto: Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> This e-mail is destined for the above mentioned recipient. In case you
> received this e-mail by accident, we would appreciate it if you could
> contact the sender and delete all copies stored on your computer.
> Please be aware that the security and confidentiality of electronic data
> transmitted by e-mail is not completely guaranteed and that data may be
seen,
> copied, downloaded or changed by third persons during transmission.
> Atos Origin accepts no liability for the security and confidentiality of
> data and documents sent by e-mail. Please make sure that all important
> messages will be confirmed in writing by means of a telefax or a letter.
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
>

 
PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline und B+S Card Service.
Infos und Anmeldung unter http://www.kartenforum.de
--------------------------------------------------

Atos Worldline Processing GmbH
Hahnstraße 25
60528 Frankfurt/Main
Germany
Phone: +49 69/6657-1176
Fax :
mailto: Wolfgang.Schrecker@atosorigin.com
http://www.atosworldline.com

Geschäftsführer: Erik Munk Koefoed
Aufsichtsratsvorsitzender: Didier Dhennin
Sitz der Gesellschaft: Frankfurt/Main
Handelsregister: Frankfurt/Main HRB 40 417


* * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
This e-mail is destined for the above mentioned recipient. In case you
received this e-mail by accident, we would appreciate it if you could
contact the sender and delete all copies stored on your computer.
Please be aware that the security and confidentiality of electronic data
transmitted by e-mail is not completely guaranteed and that data may be seen,
copied, downloaded or changed by third persons during transmission.
Atos Origin accepts no liability for the security and confidentiality of
data and documents sent by e-mail. Please make sure that all important
messages will be confirmed in writing by means of a telefax or a letter.
* * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *

Re: archetypes & velocity [Virus checked]

Posted by Raphaël Piéroni <ra...@gmail.com>.
Hi Wolfgang,

had you read that guide?
http://maven.apache.org/guides/mini/guide-creating-archetypes.html

Regards,

Raphaël

2008/1/25, Wolfgang.Schrecker@atosorigin.com
<Wo...@atosorigin.com>:
> Thanks a lot Raphaël!
>
> Then, once I have created the VTL text file (with help from your link),
> where in the archetype is it supposed to go, so it is executed when using
> the archetype to create a project??
>
> mit freundlichen Grüßen/best regards
>
> Wolfgang Schrecker
>
> "... the elements of a good model have synergy, and well-chosen MODULES
> bring together elements of the model with particulary rich relationships"
> from Eric Evans: Domain-Driven Design p. 110
>  --
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstrasse 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> mailto:Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
>
>              "Raphaël Piéroni"
>              <raphaelpieroni@g
>              mail.com>                                                  An
>                                         "Maven Users List"
>              24.01.2008 22:36           <us...@maven.apache.org>
>                                                                      Kopie
>
>               Bitte antworten                                        Thema
>                     an                  Re: archetypes & velocity [Virus
>                "Maven Users             checked]
>                    List"
>              <users@maven.apac
>                   he.org>
>
>
>
>
>
>
>
> Hi Wolfgang.
>
> velocity templates used in archetypes are just plain text files with VTL
> http://velocity.apache.org/engine/releases/velocity-1.4
> /vtl-reference-guide.html
>
> Hope this helps.
>
> Raphaël
>
> 2008/1/24, Wolfgang.Schrecker@atosorigin.com
> <Wo...@atosorigin.com>:
> > Hi everyone ,
> >
> > creating a project using an archetype utilizes velocity. Is there an
> > example and/or docs how to create your own velocity template for use in
> > your own archetypes ??
> >
> > mit freundlichen Grüßen/best regards
> >
> > Wolfgang Schrecker
> >
>
>
> PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline und B+S Card Service.
> Infos und Anmeldung unter http://www.kartenforum.de
> --------------------------------------------------
>
> Atos Worldline Processing GmbH
> Hahnstraße 25
> 60528 Frankfurt/Main
> Germany
> Phone: +49 69/6657-1176
> Fax :
> mailto: Wolfgang.Schrecker@atosorigin.com
> http://www.atosworldline.com
>
> Geschäftsführer: Erik Munk Koefoed
> Aufsichtsratsvorsitzender: Didier Dhennin
> Sitz der Gesellschaft: Frankfurt/Main
> Handelsregister: Frankfurt/Main HRB 40 417
>
>
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
> This e-mail is destined for the above mentioned recipient. In case you
> received this e-mail by accident, we would appreciate it if you could
> contact the sender and delete all copies stored on your computer.
> Please be aware that the security and confidentiality of electronic data
> transmitted by e-mail is not completely guaranteed and that data may be seen,
> copied, downloaded or changed by third persons during transmission.
> Atos Origin accepts no liability for the security and confidentiality of
> data and documents sent by e-mail. Please make sure that all important
> messages will be confirmed in writing by means of a telefax or a letter.
> * * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
>

Re: archetypes & velocity [Virus checked]

Posted by Wo...@atosorigin.com.
Thanks a lot Raphaël!

Then, once I have created the VTL text file (with help from your link),
where in the archetype is it supposed to go, so it is executed when using
the archetype to create a project??

mit freundlichen Grüßen/best regards

Wolfgang Schrecker

"... the elements of a good model have synergy, and well-chosen MODULES
bring together elements of the model with particulary rich relationships"
from Eric Evans: Domain-Driven Design p. 110
 --
--------------------------------------------------

Atos Worldline Processing GmbH
Hahnstrasse 25
60528 Frankfurt/Main
Germany
Phone: +49 69/6657-1176
mailto:Wolfgang.Schrecker@atosorigin.com
http://www.atosworldline.com

Geschäftsführer: Erik Munk Koefoed
Aufsichtsratsvorsitzender: Didier Dhennin
Sitz der Gesellschaft: Frankfurt/Main
Handelsregister: Frankfurt/Main HRB 40 417


                                                                           
             "Raphaël Piéroni"                                             
             <raphaelpieroni@g                                             
             mail.com>                                                  An 
                                        "Maven Users List"                 
             24.01.2008 22:36           <us...@maven.apache.org>           
                                                                     Kopie 
                                                                           
              Bitte antworten                                        Thema 
                    an                  Re: archetypes & velocity [Virus   
               "Maven Users             checked]                           
                   List"                                                   
             <users@maven.apac                                             
                  he.org>                                                  
                                                                           
                                                                           
                                                                           




Hi Wolfgang.

velocity templates used in archetypes are just plain text files with VTL
http://velocity.apache.org/engine/releases/velocity-1.4
/vtl-reference-guide.html

Hope this helps.

Raphaël

2008/1/24, Wolfgang.Schrecker@atosorigin.com
<Wo...@atosorigin.com>:
> Hi everyone ,
>
> creating a project using an archetype utilizes velocity. Is there an
> example and/or docs how to create your own velocity template for use in
> your own archetypes ??
>
> mit freundlichen Grüßen/best regards
>
> Wolfgang Schrecker
>

 
PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline und B+S Card Service.
Infos und Anmeldung unter http://www.kartenforum.de
--------------------------------------------------

Atos Worldline Processing GmbH
Hahnstraße 25
60528 Frankfurt/Main
Germany
Phone: +49 69/6657-1176
Fax :
mailto: Wolfgang.Schrecker@atosorigin.com
http://www.atosworldline.com

Geschäftsführer: Erik Munk Koefoed
Aufsichtsratsvorsitzender: Didier Dhennin
Sitz der Gesellschaft: Frankfurt/Main
Handelsregister: Frankfurt/Main HRB 40 417


* * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
This e-mail is destined for the above mentioned recipient. In case you
received this e-mail by accident, we would appreciate it if you could
contact the sender and delete all copies stored on your computer.
Please be aware that the security and confidentiality of electronic data
transmitted by e-mail is not completely guaranteed and that data may be seen,
copied, downloaded or changed by third persons during transmission.
Atos Origin accepts no liability for the security and confidentiality of
data and documents sent by e-mail. Please make sure that all important
messages will be confirmed in writing by means of a telefax or a letter.
* * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *

Re: archetypes & velocity [Virus checked]

Posted by Raphaël Piéroni <ra...@gmail.com>.
Hi Wolfgang.

velocity templates used in archetypes are just plain text files with VTL
http://velocity.apache.org/engine/releases/velocity-1.4/vtl-reference-guide.html

Hope this helps.

Raphaël

2008/1/24, Wolfgang.Schrecker@atosorigin.com
<Wo...@atosorigin.com>:
> Hi everyone ,
>
> creating a project using an archetype utilizes velocity. Is there an
> example and/or docs how to create your own velocity template for use in
> your own archetypes ??
>
> mit freundlichen Grüßen/best regards
>
> Wolfgang Schrecker
>

RE: Setting the javac bootclasspath using dependencies

Posted by Matthew Tordoff <ma...@markit.com>.
The following page has an example of setting the bootclasspath:

http://maven.apache.org/plugins/maven-compiler-plugin/examples/pass-comp
iler-arguments.html

It seems to not use the -D before the parameter, im not sure if this is
partly to blame for the problems you are experiencing.

Matt 

-----Original Message-----
From: Clifton [mailto:clifton.craig@gmail.com] 
Sent: 24 January 2008 15:58
To: users@maven.apache.org
Subject: Setting the javac bootclasspath using dependencies


What's the best, most painless way to set the bootclasspath for the
maven-compiler-plugin? I'm trying to break out some shared code between
my J2ME midlet module and my servlet module into a shared module that
builds a jar. I'd like the compiler to use the midp20 and cldc11 jars on
the boot classpath. I just tried checking these jars into artifactory
(our local
repo) setting a dependency on them and then using the following
expression for the compilerArguments tag:
"-Dbootclasspath=${project.dependencies}"

The expression returns a list of dependencies and doesn't format
correctly.
Am I missing something?
--
View this message in context:
http://www.nabble.com/Setting-the-javac-bootclasspath-using-dependencies
-tp15067527s177p15067527.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org




The content of this e-mail is confidential and may be privileged. It may be read, copied and used only by the intended recipient and may not be disclosed, copied or distributed. If you received this email in error, please contact the sender immediately by return e-mail or by telephoning +44 20 7260 2000, delete it and do not disclose its contents to any person. You should take full responsibility for checking this email for viruses. Markit reserves the right to monitor all e-mail communications through its network.
Markit and its affiliated companies make no warranty as to the accuracy or completeness of any information contained in this message and hereby exclude any liability of any kind for the information contained herein. Any opinions expressed in this message are those of the author and do not necessarily reflect the opinions of Markit.
For full details about Markit, its offerings and legal terms and conditions, please see Markit's website at http://www.markit.com <http://www.markit.com/> .

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


archetypes & velocity [Virus checked]

Posted by Wo...@atosorigin.com.
Hi everyone ,

creating a project using an archetype utilizes velocity. Is there an
example and/or docs how to create your own velocity template for use in
your own archetypes ??

mit freundlichen Grüßen/best regards

Wolfgang Schrecker

"... the elements of a good model have synergy, and well-chosen MODULES
bring together elements of the model with particulary rich relationships"
from Eric Evans: Domain-Driven Design p. 110
 --
--------------------------------------------------

Atos Worldline Processing GmbH
Hahnstrasse 25
60528 Frankfurt/Main
Germany
Phone: +49 69/6657-1176
mailto:Wolfgang.Schrecker@atosorigin.com
http://www.atosworldline.com

Geschäftsführer: Erik Munk Koefoed
Aufsichtsratsvorsitzender: Didier Dhennin
Sitz der Gesellschaft: Frankfurt/Main
Handelsregister: Frankfurt/Main HRB 40 417
 
PS: Besuchen Sie am 21.02.2008 das Achte Kartenforum von Atos Worldline und B+S Card Service.
Infos und Anmeldung unter http://www.kartenforum.de
--------------------------------------------------

Atos Worldline Processing GmbH
Hahnstraße 25
60528 Frankfurt/Main
Germany
Phone: +49 69/6657-1176
Fax :
mailto: Wolfgang.Schrecker@atosorigin.com
http://www.atosworldline.com

Geschäftsführer: Erik Munk Koefoed
Aufsichtsratsvorsitzender: Didier Dhennin
Sitz der Gesellschaft: Frankfurt/Main
Handelsregister: Frankfurt/Main HRB 40 417


* * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *
This e-mail is destined for the above mentioned recipient. In case you
received this e-mail by accident, we would appreciate it if you could
contact the sender and delete all copies stored on your computer.
Please be aware that the security and confidentiality of electronic data
transmitted by e-mail is not completely guaranteed and that data may be seen,
copied, downloaded or changed by third persons during transmission.
Atos Origin accepts no liability for the security and confidentiality of
data and documents sent by e-mail. Please make sure that all important
messages will be confirmed in writing by means of a telefax or a letter.
* * * * * * * * L E G A L    D I S C L A I M E R * * * * * * * *