Re: xdoc plugin and "comment" in dependencies

2006-02-13 Thread Charles-alexandre Sabourdin
Don't you think it woudl be simplier to use de "property" tag from 
dependancies

?
instead of adding the scope informations into 1.1 ?

Quoting Arnaud HERITIER <[EMAIL PROTECTED]>:


I suppose just for the documentation.
I think it was also asked to the users to begin to declare them in m1
POMs to be fully usable by m2 projects.

Arnaud

On 2/11/06, Lukas Theussl <[EMAIL PROTECTED]> wrote:

Maven 1 doesn't know anything about scope, so I don't see how this could
be useful?




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Bug in compile plugin (or in Java ?)

2005-10-18 Thread Charles-Alexandre Sabourdin
The problem is that when I use jdk 1.5 with 1.4 source code, I does not warn 
me for using methode that are only since 1.5.
I set the following simple exemple :
maven use jdk 1.5

my project.properties have the following parameter :
maven.compile.source=1.4
maven.compile.target=1.4
and my exemple class is :

public class App 
{
public static void main( String[] args )
{
String str1 = "Test 001";
System.out.println( "str1 : "+str1 );
System.out.println( "str1.replace(\"001\", \"002\") : 
"+str1.replace("001", "002"));
}
}

Normally does not works in 1.4, but I cant compile it.
with maven jar:jar, but I can not run this jar with 1.4 JRE.

Is it normal ?

I suppose that those parameter should have block compilation.

-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: change dependency properties in maven.xml [u]

2005-01-25 Thread Charles-Alexandre Sabourdin
My workaround was to create an other project.xml file that inherite from my 
main project then I only have to type mavne -p project-son.xml
Le mardi 25 Janvier 2005 12:09, Brett Porter a écrit :
> ok, I've had a look at the code. sorry, unfortunately there isn't any
> compatible way to modify them until 1.1 is released as the old model
> doesn't expose the properties object.
>
> For Maven 1.0.x, I think this will work, but it will stop working in Maven
> 1.1: ${dep.addProperty('dependencyType:lib')}
> ${dep.resolveProperties()}
>
> I'd strongly encourage seeking a workaround.
-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: remove dependencies from classpath

2005-01-25 Thread Charles-Alexandre Sabourdin
It seems to works thanks .
Le lundi 24 Janvier 2005 16:43, Russ Jubenville a écrit :
> Jar plugin: jar.manifest.classpath
> 
>   log4j
>   1.2.8
>   http://jakarta.apache.org/log4j/
>   
> true
> true
>   
>     
> ...
-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



remove dependencies from classpath

2005-01-24 Thread Charles-Alexandre Sabourdin
Hello,
I wonder if there was a properties to set for dependencies to not be set into 
the classpath ?

-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Dynamically modifing the ressources

2004-11-26 Thread Charles-Alexandre Sabourdin
I found the perfect  patch for my problem.
In the same director I set a project.xml with 
src/conf/default
and set a project-confiA.xml
with project.xml , and a new  information and
 stuff. 
this way I just have to do a maven -p project-confiA.xml to make it works.

I would like to thanks everone for their help ;)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Dynamically modifing the ressources

2004-11-25 Thread Charles-Alexandre Sabourdin
I don't know the main idea was to be able to make differnet build, with 
differnet conf file.
I am sure that a lot of person can use there projet in various environement an 
then need various conf files.

I will probably juste overwite the file with a post goal.


PS : the more I look around the more I fill this is a jelly question.
since I need to acces 
${pom.build.resources} :
[[dir = /home/sabourdin/Documents/projet/exemplebean/src/conf/default]]

Le mercredi 24 Novembre 2004 23:09, Brett Porter a écrit :
> No, it won't ever work. The project is loaded before maven.xml, and
> all the values evaluated.
>
> Don't you think you are making this build overly complicated?
>
> - Brett
>
>
> On Wed, 24 Nov 2004 18:24:57 +0100, Charles-Alexandre Sabourdin
>
> <[EMAIL PROTECTED]> wrote:
> > i is not working, it seem that the variable is not event modifiy :(
> >
> > Le mercredi 24 Novembre 2004 17:20, Steve Molloy a écrit :
> > > Try adding scope="parent" to your j:set.
> > >
> > > Steve Molloy
> > >
> > > -Original Message-
> > > From: Charles-Alexandre Sabourdin [mailto:[EMAIL PROTECTED]
> > > Sent: Wednesday, November 24, 2004 10:56 AM
> > > To: Maven Users List
> > > Subject: Re: Dynamically modifing the ressources
> > >
> > > it it not woking correctly.
> > > What I am tried was to set in
> > > project.xml
> > > src/conf${configDir}
> > > in project.properties
> > > configDir=/default
> > > and in my maven.xml I creat the following goal :
> > >
> > > 
> > >   
> > >set configuration directory : ${configDir}
> > >   
> > >   
> > > 
> > >
> > > unfortunatly it does not works.
> > >
> > > Le mardi 23 Novembre 2004 20:30, Brett Porter a écrit :
> > > > in the resources, set it to something like:
> > > >
> > > > src/conf/project${foo}, then set foo to A or B.
> > > >
> > > > - Brett
> > > >
> > > >
> > > > On Tue, 23 Nov 2004 12:47:55 +0100, Charles-Alexandre Sabourdin
> > > >
> > > > <[EMAIL PROTECTED]> wrote:
> > > > > Hi,
> > > > > I feel that this must have been discuss somewhere but I could not
> > > > > figure it out.
> > > > > The basic idea is to have 2 directory /src/conf/projetA
> > > > > /src/conf/projetB. I would like to set maven goals to use a
> > > > > specific directory.
> > > > > I llok aroud and found :
> > > > > [echo] $ {pom.build.resources}:
> > > > > [[dir =
> > > > > /home/sabourdin/Documents/projet/exemplebean/src/conf/projetA]] but
> > > > > I did not find how to modify this propertie :(
> > > > >
> > > > > --
> > > > > Charles-Alexandre
> > > > > SABOURDIN
> > > > > -
> > > > >
> > > > > ---
> > > > >-- To unsubscribe, e-mail: [EMAIL PROTECTED] For
> > > > > additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > > -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> > --
> > Charles-Alexandre
> > SABOURDIN
> > -
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Dynamically modifing the ressources

2004-11-24 Thread Charles-Alexandre Sabourdin
i is not working, it seem that the variable is not event modifiy :(
Le mercredi 24 Novembre 2004 17:20, Steve Molloy a écrit :
> Try adding scope="parent" to your j:set.
>
> Steve Molloy
>
> -Original Message-
> From: Charles-Alexandre Sabourdin [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 24, 2004 10:56 AM
> To: Maven Users List
> Subject: Re: Dynamically modifing the ressources
>
> it it not woking correctly.
> What I am tried was to set in
> project.xml
> src/conf${configDir}
> in project.properties
> configDir=/default
> and in my maven.xml I creat the following goal :
>
> 
>   
>set configuration directory : ${configDir}
>   
>   
> 
>
> unfortunatly it does not works.
>
> Le mardi 23 Novembre 2004 20:30, Brett Porter a écrit :
> > in the resources, set it to something like:
> >
> > src/conf/project${foo}, then set foo to A or B.
> >
> > - Brett
> >
> >
> > On Tue, 23 Nov 2004 12:47:55 +0100, Charles-Alexandre Sabourdin
> >
> > <[EMAIL PROTECTED]> wrote:
> > > Hi,
> > > I feel that this must have been discuss somewhere but I could not
> > > figure it out.
> > > The basic idea is to have 2 directory /src/conf/projetA
> > > /src/conf/projetB. I would like to set maven goals to use a specific
> > > directory.
> > > I llok aroud and found :
> > > [echo] $ {pom.build.resources}:
> > > [[dir =
> > > /home/sabourdin/Documents/projet/exemplebean/src/conf/projetA]] but I
> > > did not find how to modify this propertie :(
> > >
> > > --
> > > Charles-Alexandre
> > > SABOURDIN
> > > -
> > >
> > > ---------
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Dynamically modifing the ressources

2004-11-24 Thread Charles-Alexandre Sabourdin
it it not woking correctly.
What I am tried was to set in 
project.xml
src/conf${configDir}
in project.properties
configDir=/default
and in my maven.xml I creat the following goal :



 set configuration directory : ${configDir}




unfortunatly it does not works.

Le mardi 23 Novembre 2004 20:30, Brett Porter a écrit :
> in the resources, set it to something like:
>
> src/conf/project${foo}, then set foo to A or B.
>
> - Brett
>
>
> On Tue, 23 Nov 2004 12:47:55 +0100, Charles-Alexandre Sabourdin
>
> <[EMAIL PROTECTED]> wrote:
> > Hi,
> > I feel that this must have been discuss somewhere but I could not figure
> > it out.
> > The basic idea is to have 2 directory /src/conf/projetA
> > /src/conf/projetB. I would like to set maven goals to use a specific
> > directory.
> > I llok aroud and found :
> > [echo] $ {pom.build.resources}:
> > [[dir =
> > /home/sabourdin/Documents/projet/exemplebean/src/conf/projetA]] but I did
> > not find how to modify this propertie :(
> >
> > --
> > Charles-Alexandre
> > SABOURDIN
> > -
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
> ---------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Dynamically modifing the ressources

2004-11-23 Thread Charles-Alexandre Sabourdin
Hi,
I feel that this must have been discuss somewhere but I could not figure it 
out.
The basic idea is to have 2 directory /src/conf/projetA /src/conf/projetB. I 
would like to set maven goals to use a specific directory.
I llok aroud and found :
[echo] $ {pom.build.resources}:
[[dir = /home/sabourdin/Documents/projet/exemplebean/src/conf/projetA]]
but I did not find how to modify this propertie :(

-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [Jalopy-plugin] : java.lang.NoClassDefFoundError

2004-11-16 Thread Charles-Alexandre Sabourdin
It is the default file. I did nothing more then maven genapp (answer the 
questions); maven jalopy

maven jar:jar runs correctly.
I can send you the project if you want.

Could this be a permission problem ?
I set maven with root for all my users ( maven.java rwxr-xr-x )
since my user sabourdin can use maven but I can not install plugins could this 
be the probleme ? 
If so how could I check that ?

Le mardi 9 Novembre 2004 15:59, Emmanuel Venisse a Ãcrit :
> I think you have an error in your jalopy conf file.
> Can you try with all jalopy plugin default settings?
>
> Emmanuel
>
> - Original Message -
> From: "Charles-Alexandre Sabourdin" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, November 09, 2004 2:22 PM
> Subject: Re: [Jalopy-plugin] : java.lang.NoClassDefFoundError
>
> Le mardi 9 Novembre 2004 11:41, Emmanuel Venisse a Ãcrit :
> > Can you run maven with -X option for obtain more infomations?
>
> This is a long log but here it is :

-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: [Jalopy-plugin] : java.lang.NoClassDefFoundError

2004-11-09 Thread Charles-Alexandre Sabourdin
Le mardi 9 Novembre 2004 11:41, Emmanuel Venisse a Ãcrit :
> Can you run maven with -X option for obtain more infomations?
>
This is a long log but here it is :
I must add that I am on linux mandrake 10.0
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0

Initializing Plugins!
Set plugin source directory to /usr/java/maven/current/plugins
Set unpacked plugin directory to /home/sabourdin/.maven/cache
Set user plugin directory to /home/sabourdin/.maven/plugins
Unpacking maven-castor-plugin-1.2.jar to directory 
--> /home/sabourdin/.maven/cache/maven-castor-plugin-1.2
expand complete
Unpacking maven-clover-plugin-1.5.jar to directory 
--> /home/sabourdin/.maven/cache/maven-clover-plugin-1.5
expand complete
Unpacking maven-jdepend-plugin-1.5.jar to directory 
--> /home/sabourdin/.maven/cache/maven-jdepend-plugin-1.5
expand complete
Unpacking maven-pmd-plugin-1.5.jar to directory 
--> /home/sabourdin/.maven/cache/maven-pmd-plugin-1.5
expand complete
Unpacking maven-genapp-plugin-2.2.jar to directory 
--> /home/sabourdin/.maven/cache/maven-genapp-plugin-2.2
expand complete
Unpacking maven-jboss-plugin-1.5.jar to directory 
--> /home/sabourdin/.maven/cache/maven-jboss-plugin-1.5
expand complete
Unpacking maven-dashboard-plugin-1.3.jar to directory 
--> /home/sabourdin/.maven/cache/maven-dashboard-plugin-1.3
expand complete
Unpacking maven-developer-activity-plugin-1.5.jar to directory 
--> /home/sabourdin/.maven/cache/maven-developer-activity-plugin-1.5
expand complete
Unpacking maven-war-plugin-1.6.jar to directory 
--> /home/sabourdin/.maven/cache/maven-war-plugin-1.6
expand complete
Unpacking maven-native-plugin-1.1.jar to directory 
--> /home/sabourdin/.maven/cache/maven-native-plugin-1.1
expand complete
Unpacking maven-webserver-plugin-2.0.jar to directory 
--> /home/sabourdin/.maven/cache/maven-webserver-plugin-2.0
expand complete
Unpacking maven-docbook-plugin-1.2.jar to directory 
--> /home/sabourdin/.maven/cache/maven-docbook-plugin-1.2
expand complete
Unpacking maven-ear-plugin-1.5.jar to directory 
--> /home/sabourdin/.maven/cache/maven-ear-plugin-1.5
expand complete
Unpacking maven-repository-plugin-1.2.jar to directory 
--> /home/sabourdin/.maven/cache/maven-repository-plugin-1.2
expand complete
Unpacking maven-j2ee-plugin-1.5.jar to directory 
--> /home/sabourdin/.maven/cache/maven-j2ee-plugin-1.5
expand complete
Unpacking maven-rar-plugin-1.0.jar to directory 
--> /home/sabourdin/.maven/cache/maven-rar-plugin-1.0
expand complete
Unpacking maven-vdoclet-plugin-1.2.jar to directory 
--> /home/sabourdin/.maven/cache/maven-vdoclet-plugin-1.2
expand complete
Unpacking maven-hibernate-plugin-1.1.jar to directory 
--> /home/sabourdin/.maven/cache/maven-hibernate-plugin-1.1
expand complete
Unpacking maven-appserver-plugin-2.0.jar to directory 
--> /home/sabourdin/.maven/cache/maven-appserver-plugin-2.0
expand complete
Unpacking maven-release-plugin-1.4.jar to directory 
--> /home/sabourdin/.maven/cache/maven-release-plugin-1.4
expand complete
Unpacking maven-ant-plugin-1.7.jar to directory 
--> /home/sabourdin/.maven/cache/maven-ant-plugin-1.7
expand complete
Unpacking maven-tasklist-plugin-2.3.jar to directory 
--> /home/sabourdin/.maven/cache/maven-tasklist-plugin-2.3
expand complete
Unpacking maven-ashkelon-plugin-1.2.jar to directory 
--> /home/sabourdin/.maven/cache/maven-ashkelon-plugin-1.2
expand complete
Unpacking maven-tjdo-plugin-1.0.0.jar to directory 
--> /home/sabourdin/.maven/cache/maven-tjdo-plugin-1.0.0
expand complete
Unpacking maven-html2xdoc-plugin-1.3.jar to directory 
--> /home/sabourdin/.maven/cache/maven-html2xdoc-plugin-1.3
expand complete
Unpacking maven-scm-plugin-1.4.jar to directory 
--> /home/sabourdin/.maven/cache/maven-scm-plugin-1.4
expand complete
Unpacking maven-struts-plugin-1.3.jar to directory 
--> /home/sabourdin/.maven/cache/maven-struts-plugin-1.3
expand complete
Unpacking maven-junit-doclet-plugin-1.2.jar to directory 
--> /home/sabourdin/.maven/cache/maven-junit-doclet-plugin-1.2
expand complete
Unpacking maven-jar-plugin-1.6.jar to directory 
--> /home/sabourdin/.maven/cache/maven-jar-plugin-1.6
expand complete
Unpacking maven-license-plugin-1.2.jar to directory 
--> /home/sabourdin/.maven/cache/maven-license-plugin-1.2
expand complete
Unpacking maven-multiproject-plugin-1.3.1.jar to directory 
--> /home/sabourdin/.maven/cache/maven-multiproject-plugin-1.3.1
expand complete
Unpacking maven-jetty-plugin-1.1.jar to directory 
--> /home/sabourdin/.maven/cache/maven-jetty-plugin-1.1
expand complete
Unpacking maven-jdee-plugin-1.1.jar to directory 
--> /home/sabourdin/.maven/cache/maven-jdee-plugin-1.1
expand complete
Unpacking maven-file-activity-plugin-1.5.jar to directory 
--> /home/sabourdin/.maven/cache/maven-file-activity-plugin-1.5
expand complete
Unpacking maven-jdiff-plugin-1.4.jar to directory 
--> /home/sabourdin/.maven/cache/maven-jdiff-plugin-1.4
expand complete
Unpacking maven-faq-plugi

[Jalopy-plugin] : java.lang.NoClassDefFoundError

2004-11-09 Thread Charles-Alexandre Sabourdin
Hello I tried to use jalopy plugin from scatch on a fresh genapp projet 
and I have the following exception :

java.lang.ClassCastException
at 
de.hunsicker.jalopy.storage.Convention.synchronize(Convention.java:2419)

informations :

BUILD FAILED
File.. /home/sabourdin/.maven/cache/maven-jalopy-plugin-1.3.1/plugin.jelly
Element... ant:jalopy
Line.. 64
Column 46
java.lang.NoClassDefFoundError
Total time: 13 seconds
Finished at: Tue Nov 09 10:59:21 CET 2004

Maven v1.0
--
jalopy 1.3.1

java -version
java version "1.4.2_05"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)


-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



"javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found"

2004-11-03 Thread Charles-Alexandre Sabourdin
I set a local https serveur with a local SSL certificate.
I have  

Error retrieving artifact from 
[https://java.imkodev02/maven/commons-io/jars/commons-io-20030203.000550.jar]: 
javax.net.ssl.SSLHandshakeException: 
sun.security.validator.ValidatorException: No trusted certificate found

I wonder how I could set to accepte the Certificate anyway ?

-- 
Charles-Alexandre
SABOURDIN
-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Ann: Mavenzilla

2004-09-17 Thread Charles-Alexandre Sabourdin
I think that you can already use the  tag in dependency ?

Le jeudi 16 Septembre 2004 17:20, Serge Huber a écrit :
> Another feature that would be cool is to support "download location" for
> libraries that cannot be stored in repositories because of licenses.
> Basically if there was a way for example to retrieve the javamail
> distrib on java.sun.com, *going* through the license agreement and
> everything, and then putting it in the user's local repository.
-- 
Charles-Alexandre
SABOURDIN
-
01.46.90.64.90

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Ann: Mavenzilla

2004-09-17 Thread Charles-Alexandre Sabourdin
There is also inner repository.

I means that I set a rsync on my dev server where I do upload my project jar.
I am still working on a way to set maven on a team scale, but non of those 
project jar would never be on iblio.

Le jeudi 16 Septembre 2004 14:41, Nathan Coast a écrit :
> there's a repo here http://www.codeczar.com/maven/
> otsuka wrote:
> >>Can other repositories be added to the search engine?

-- 
Charles-Alexandre
SABOURDIN
-
01.46.90.64.90

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [FOURTH TIME] Cannot run the "site" goal

2004-01-27 Thread Charles-Alexandre Sabourdin
So i suggest that you create an empty project using maven 
-Dpackage=com.mycompany.app genapp and try to generate your site form this 
project.
Base on that, you would be able to say if your struture or maven is wrong.

I also sugest that you check you project.xml fil and remove all the report tag 
first an then and then one by one. 

good luck ;)
Le Mardi 27 Janvier 2004 10:06, Marco Tedone a écrit :
> No, I didn't. I created a directory structure following the suggestions on
> the Maven site, and then I generated the artifacts and the site.
>
> Marco
> - Original Message -
> From: "Charles Sabourdin" <[EMAIL PROTECTED]>
> To: "Maven Users List" <[EMAIL PROTECTED]>
> Sent: Monday, January 26, 2004 10:29 PM
> Subject: Re: [FOURTH TIME] Cannot run the "site" goal
>
>
> Did you create a regular empty project "maven -Dpackage=com.mycompany.app
> genapp" and then generate you site.
>
> Le Lundi 26 Janvier 2004 01:17, Marco Tedone a écrit :
> > Yes, I just tried to delete the plugin folder and I get the same error.
> >
> > Marco
> > - Original Message -
> > From: "Arnaud Heritier" <[EMAIL PROTECTED]>
> > To: "'Maven Users List'" <[EMAIL PROTECTED]>; "'Marco Tedone'"
> > <[EMAIL PROTECTED]>
> > Sent: Sunday, January 25, 2004 11:12 PM
> > Subject: RE: [FOURTH TIME] Cannot run the "site" goal
> >
> >
> > Hello Marco.
> >
> > Did you try to delete your directory  C:/Documents and
> > Settings/mtedone/.maven/plugins directory ??
> >
> > The plugin cache directory is maybe corrupted !!
> >
> > Arnaud
> >
> > > -Message d'origine-
> > > De : Marco Tedone [mailto:[EMAIL PROTECTED]
> > > Envoyé : dimanche 25 janvier 2004 23:53
> > > À : Maven-users
> > > Objet : [FOURTH TIME] Cannot run the "site" goal
> > >
> > > Hi folk, it's the fourth time (included the one sent to the "license-
> > > plugin"
> > > pm) that I post the following problem, hoping that first or later
>
> someone
>
> > > will answer.
> > >
> > > I'm trying to execute the 'default' site goal, and I obtain the
>
> following
>
> > > error:
> > >
> > > D:\Projects\Merlin_template>maven site
> > >  __  __
> > >
> > > |  \/  |__ _Apache__ ___
> > > |
> > > | |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
> > > |
> > > |_|  |_\__,_|\_/\___|_||_|  v. 1.0-rc1-SNAPSHOT
> > >
> > > BUILD FAILED
> > > File.. file:/C:/Documents and
> > > Settings/mtedone/.maven/plugins/maven-xdoc-plugin-1.4/
> > > Element... attainGoal
> > > Line.. 587
> > > Column 57
> > > No goal [maven-license-plugin:register]
> > > Total time: 2 seconds
> > > Finished at: Sun Jan 25 22:48:12 GMT 2004
> > >
> > > D:\Projects\Merlin_template>
> > >
> > > This happens if I don't specify any report in the project.xml file or
> > > if I specify the
> > >
> > > maven-license-plugin
> > >
> > > element.
> > >
> > > I've got both the "license" and the "xdoc" plugins. The
> > > 'maven-license-plugin:register' goal exists in the license plugin,
> > > therefore
> > > I cannot figure out why I obtain the following error.
> > >
> > > Plz help!
> > >
> > > Marco
> > >
> > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: chicken and egg

2003-12-22 Thread Charles-Alexandre Sabourdin
Le Lundi 22 Décembre 2003 16:49, Charles Tassoni a écrit :
>   I've got a chicken-and-egg problem.  I need to declare the jars
> created by my project inside project.xml-- otherwise I couldn't use maven
> to distribute them to the necessary ears, wars, etc.  And that means that
> when I build maven will load earlier versions of my jars into the
> repository, and that maven will include those jars in the classpath during
> compilation of my 
> 
this article would answer your problem :
http://www.theserverside.com/resources/article.jsp?l=MavenMagic


  Foobar-Travels
  foobar-services
  ${pom.currentVersion}
  
    true
  
  
-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: why repository is set per user?

2003-12-17 Thread Charles-Alexandre Sabourdin
I desagree with you on that point there is two repository.
One per user where all jars (for every project) are store
and one repository on a web server (maven jar:deploy.)

To me this allow a regular separation of user préférences and project. 
Anyway you can still overload this in your ~/build.properties

I personnaly have a 15 Mo repository, that does not seems to big, but this is 
a personnal point of view.

Le Mercredi 17 Décembre 2003 14:29, Federico Spinazzi a écrit :
> Hy,
> second question in too little time, sorry.
>
> I'd like to know which is the reason maven rc1 uses a per user
> repository by default.
> It seems like a vaste of space as each user have his own repository.
> There should be a good reason but I cannot understand it.
> Thank you very much
> Federico
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Torque Plugin in Eclipse

2003-12-03 Thread Charles-Alexandre Sabourdin
Me too, in fact the (my) torque plugin generate error in source code

 /**
 * Stores the object in the database.  If the object is new,
 * it inserts it; otherwise an update is performed.
 *
 * @throws $saveException
 */
public void save() throws $saveException
{
  save(AnomaliePeer.getMapBuilder()
.getDatabaseMap().getName());
  }

I only have to modify $saveException to Exception.
I am using the same schema.xml then the one that is working correctly in 
torque-gen 3.1

I try to go for the cvs, but it seem to be instanble because plugin move from 
one folder to another.

Apache Foudantion is doing a great job, I would like to help, but this is 
difficult some time.

Le Mardi 2 Décembre 2003 19:50, Vikas Phonsa a écrit :
> Yeah Charles I'm able to do all that, its just the torque plugin that I'm
> not able to use.
>
> Anyways we can't expect the torque programmers to make everything work for
> us, they have already done a great job by making torque and maven and
> everything else on Apache.
>
> I'll find some way.
>
>  And by the way I was able to run Torque ant script and perform all the
> functions that it does inside my IDE. But not with the maven torque plugin.
> Just running the tasks in build-torque.xml
>
> Thanks
>
> Vikas
>
>
>
> -Original Message-
> From: Charles-Alexandre Sabourdin [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, December 02, 2003 9:30 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Torque Plugin in Eclipse
>
> I means that I can import my maven project into exclipse usin create new
> project (i do not use default) look for teh root of my project an there i
> have an eclipse project with all the jars I need to compile.
> And It does compile into target.
>
> but I only use a simple project.
>
> so what I  means is that tha project is created using all the valu from
> project.xml.
>
> Le Mardi 2 Décembre 2003 18:01, Vikas Phonsa a écrit :
> > Hi Charles,
> > What do u mean when u say that the project is correctly created ?
> >
> > Thanks
> > Vikas
> >
> > -Original Message-
> > From: Charles-Alexandre Sabourdin [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, December 02, 2003 5:37 AM
> > To: [EMAIL PROTECTED]
> > Subject: Re: Torque Plugin in Eclipse
> >
> > I tried, with no succes with the external tools
> > but the project is correctly created
> >
> > Le Lundi 1 Décembre 2003 20:01, Vikas Phonsa a écrit :
> > > Hi,
> > >
> > > Has anybody tried using the Torque Plugin configured as an External
> > > tool from within Eclipse.
> > >
> > > I would like to know how to use that in Eclipse, what the directory
> > > structure should be, where to place build.xml and other files, where
> > > the generated sql and java code would go and other configuration steps.
> > >
> > > Thanks
> > >
> > > Vikas
> > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Torque Plugin in Eclipse

2003-12-02 Thread Charles-Alexandre Sabourdin
I means that I can import my maven project into exclipse usin create new 
project (i do not use default) look for teh root of my project an there i 
have an eclipse project with all the jars I need to compile.
And It does compile into target.

but I only use a simple project.

so what I  means is that tha project is created using all the valu from 
project.xml.

Le Mardi 2 Décembre 2003 18:01, Vikas Phonsa a écrit :
> Hi Charles,
> What do u mean when u say that the project is correctly created ?
>
> Thanks
> Vikas
>
> -Original Message-
> From: Charles-Alexandre Sabourdin [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, December 02, 2003 5:37 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Torque Plugin in Eclipse
>
> I tried, with no succes with the external tools
> but the project is correctly created
>
> Le Lundi 1 Décembre 2003 20:01, Vikas Phonsa a écrit :
> > Hi,
> >
> > Has anybody tried using the Torque Plugin configured as an External tool
> > from within Eclipse.
> >
> > I would like to know how to use that in Eclipse, what the directory
> > structure should be, where to place build.xml and other files, where the
> > generated sql and java code would go and other configuration steps.
> >
> > Thanks
> >
> > Vikas
> >
> >
> >
> > ---------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Torque Plugin in Eclipse

2003-12-02 Thread Charles-Alexandre Sabourdin
I tried, with no succes with the external tools
but the project is correctly created
Le Lundi 1 Décembre 2003 20:01, Vikas Phonsa a écrit :
> Hi,
>
> Has anybody tried using the Torque Plugin configured as an External tool
> from within Eclipse.
>
> I would like to know how to use that in Eclipse, what the directory
> structure should be, where to place build.xml and other files, where the
> generated sql and java code would go and other configuration steps.
>
> Thanks
>
> Vikas
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Torque Plugin

2003-12-01 Thread Charles-Alexandre Sabourdin
Base on that information which cvs should I used ?
Because I have trouble with torque plugin?
Ths same schema works in torque-gen-3.1 but neither in maven-plugin-torque 
(form normal used) or form maven-plugin-torque form cvs 
 cvs -z3 -d :pserver:[EMAIL PROTECTED]:/home/cvspublic co 
maven-plugins/torque/

using 
maven plugin
Le Lundi 1 Décembre 2003 12:07, Martin Poeschl a écrit :
> > Hi Martin,
> >
> > The torque plugin is now part of Torque, yes?
>
> yes!
>
> > I just wanted to check as I want to nuke the issues related to the
> > torque plugin in Maven's JIRA install.
>
> no problem ..
>
> martin
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [VOTE] The Maven Logo

2003-11-26 Thread Charles-Alexandre Sabourdin
Le Mercredi 26 Novembre 2003 10:25, Norbert Pabiś a écrit :
> Jim Crossley wrote:
> > A runoff between the top 2 vote getters listed at
> > http://projects.walding.com/powered/
> >
> > propaganda or feather?
+1 propaganda

-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Translate Maven in French

2003-11-21 Thread Charles-Alexandre Sabourdin

Le Vendredi 21 Novembre 2003 14:17, Emmanuel Venisse a écrit :
> http://jakarta.apache.org/commons/jelly/libs/fmt/tags.html
>
> If you want translate report, I prefer if you work on cvs files and not on
> your extrected plugins.
I agree with you, but first I try to set up on my working environement. I feel 
to much in a "searching" patern to go for cvs right now.

I am not sure how to set the ftm tag  and where to put the bundle files.


>
> Emmanuel
>
> - Original Message -
> From: "Charles-Alexandre Sabourdin" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, November 21, 2003 12:38 PM
> Subject: Re: Translate Maven in French
>
>
> Ok, So I start with the Junit-repport
>
> I openned :
> ~home/.maven/plugins/maven-junit-report-plugin-1.3/junit-failed.jsl
> ~home/.maven/plugins/maven-junit-report-plugin-1.3/junit.jsl
>
> None of them have a fmt tag can you tell me where (and how ) to use those
> tag
> ?
>
> Le Mercredi 19 Novembre 2003 20:33, Vincent Massol a écrit :
> > You'll need to use the Jelly fmt tag library to separate text messages
> > from report logic.
> >
> > -Vincent
> >
> > > -Original Message-
> > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > > Sent: 19 November 2003 17:40
> > > To: Maven Users List
> > > Subject: Re: Translate Maven in French
> > >
> > > Excellente idee !
> > > Si tu veux un coup de main...
> > > didier
> > >
> > > Selon Charles-Alexandre Sabourdin <[EMAIL PROTECTED]>:
> > > >     Hi,
> > > >   I am willing to translate the maven report into french but I not
> >
> > know
> >
> > > how
> > >
> > > > to
> > > > do so, does any-one have a suggestion ?
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > Charles-Alexandre
> > > > SABOURDIN
> > > > -
> >
> > -
> >
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Translate Maven in French

2003-11-21 Thread Charles-Alexandre Sabourdin
Ok, So I start with the Junit-repport

I openned :
~home/.maven/plugins/maven-junit-report-plugin-1.3/junit-failed.jsl
~home/.maven/plugins/maven-junit-report-plugin-1.3/junit.jsl

None of them have a fmt tag can you tell me where (and how ) to use those tag 
?




Le Mercredi 19 Novembre 2003 20:33, Vincent Massol a écrit :
> You'll need to use the Jelly fmt tag library to separate text messages
> from report logic.
>
> -Vincent
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: 19 November 2003 17:40
> > To: Maven Users List
> > Subject: Re: Translate Maven in French
> >
> > Excellente idee !
> > Si tu veux un coup de main...
> > didier
> >
> > Selon Charles-Alexandre Sabourdin <[EMAIL PROTECTED]>:
> > > Hi,
> > >   I am willing to translate the maven report into french but I not
>
> know
>
> > how
> >
> > > to
> > > do so, does any-one have a suggestion ?
> > >
> > >
> > >
> > >
> > > --
> > > Charles-Alexandre
> > > SABOURDIN
> > > -
>
> -
>
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Charles-Alexandre
SABOURDIN
-
01.46.90.64.90


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Translate Maven in French

2003-11-19 Thread Charles-Alexandre Sabourdin
Hi, 
  I am willing to translate the maven report into french but I not know how to 
do so, does any-one have a suggestion ?
  



-- 
Charles-Alexandre
SABOURDIN
-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]