Re: Trouble with JIRA

2004-06-09 Thread Emmanuel Boudrant
I think you are right, I did not see the login form on right side ... ;)
-emmanuel
Jeff Turner wrote:
On Tue, Jun 08, 2004 at 11:55:05PM +0200, Emmanuel Boudrant wrote:
 

Hi,
I cannot login to jira on codehaus. I have an username but when I click
on login, jI have the project list but no login form.
   

There is a login form on the right of the project list.  Don't you see
it? Perhaps your browser is misrendering something in the page?
--Jeff
 

Any idea ?
Thx,
-emmanuel
   

-
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]


maven-jar-plugin deployment method

2004-06-08 Thread Emmanuel Boudrant
Hi,
Currently, maven-jar-plugin 1.5 use a different deployment method 
comparing to ear, war ... theses last use the tag artifact.
The advantage of artifact tag is we can deploy on windows OS (the only 
system used in our departement;).

Is it possible to fix this before maven 1.0 final release ?
The only thing to do is replace the deploy/install goals by this (Am I 
wrong?) and remove goal jar:snapshot :

* * 

 
 
  

 

   artifact="${maven.build.dir}/${maven.final.name}.jar"
   type="jar"
   project="${pom}"/>  
  
   
  
 
 
 
  

 
   prereqs="jar:jar"
   description="Deploys the snapshot version of  the jar to remote 
repository"> 


   artifact="${maven.build.dir}/${maven.final.name}.jar"
   type="jar"
   project="${pom}"/>   
  
 

 
 
 

 
   description="Install the jar in the local repository">
  

   artifact="${maven.build.dir}/${maven.final.name}.jar"
   type="jar"
   project="${pom}"/>   
  
 

 
 
 

 

   artifact="${maven.build.dir}/${maven.final.name}.jar"
   type="jar"
   project="${pom}"/>   
  
 

When I can login to jira I will post a patch.
Thx,
emmanuel
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Trouble with JIRA

2004-06-08 Thread Emmanuel Boudrant
Hi,
I cannot login to jira on codehaus. I have an username but when I click 
on login, jI have the project list but no login form.

Any idea ?
Thx,
-emmanuel
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: SNAPSHOT and multiproject

2004-05-25 Thread emmanuel . boudrant
Nicolas, 


I know what you said and, for some reasons, we don't want to put some
X.X.X-SNAPSHOT version, only X.X.X

So, in our master projects we set the pom.currentVersion at 3.0.0. All
subprojects use this version number.

In all our subprojects, we use ${pom.currentVersion} to references thems :

 
 msl-murexservice
 murexservice
 ${pom.currentVersion}
 jar
 

The version used by pom.currentVersion is logicaly 3.0.0 but when I build a
snapshot, logicaly maven should replace 3.0.0 by SNAPSHOT (or a timestamp) 


If project 2 depend on Project 2, result is : 

Project 1 : Maven build and install the murexservice-SNAPSHOT.jar
Project 2 : Maven try to download murexservice-3.0.0.jar, Fail because there is
no murexservice-3.0.0.jar on repo, only the murexservice-SNAPSHOT.jar


BTW: That is for this reason I want to override the pom.currentVersion at bootstrap


Thx,
-emmanuel




Selon [EMAIL PROTECTED]:

> SNAPSHOT have nothing in common whith pom.currentVersion.
> If you want you can have a 3.0.0-SNAPSHOT version, the artifact with this 
> version will be considere as SNAPSHOT version too.
> 
> Nicolas,
> 
> 
> 
> 
> 
> [EMAIL PROTECTED]
> 25/05/2004 16:34
> Veuillez répondre à "Maven Users List"
> 
>  
> Pour :  [EMAIL PROTECTED]
> cc : 
> Objet : SNAPSHOT and multiproject
> 
> 
> Hi,
> 
> I have two question, first, how can I make this code working (in a 
> maven.xml) :
> 
>  ${pom.currentVersion}
>  SNAPSHOT
>  ${pom.currentVersion}
> 
> Display is :
> 
>[echo] 3.0.0
>[echo] 3.0.0
> 
> But I want
> 
>[echo] 3.0.0
>[echo] SNAPSHOT
> 
> Second question, I have a multiproject versionned as 3.0.0, this is a J2EE
> project  (client, ear, service, web...). my client depend on service 
> project :
> 
> 
> msl-murexservice
> murexservice
> ${pom.currentVersion}
> jar
> 
> 
> When I build a snapshot (using *:install-snapshot goals), Maven use 3.0.0 
> for
> the dependency version (${pom.currentVersion}), I want 
> maven
> replace 3.0.0 per SNAPSHOT. Is there a way to do this without using the
> workaround on first question.
> 
> May I am clear ?
> 
> Thx,
> -emmanuel
> 
> 
> 
> 
> -
> 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]



RE: SNAPSHOT and multiproject

2004-05-25 Thread emmanuel . boudrant
Nicolas, 


I know what you said and, for some reasons, we don't want to put some
X.X.X-SNAPSHOT version, only X.X.X

So, in our master projects we set the pom.currentVersion at 3.0.0. All
subprojects use this version number.

In all our subprojects, we use ${pom.currentVersion} to references thems :

 
 msl-murexservice
 murexservice
 ${pom.currentVersion}
 jar
 

The version used by pom.currentVersion is logicaly 3.0.0 but when I build a
snapshot, logicaly maven should replace 3.0.0 by SNAPSHOT (or a timestamp) 


If project 2 depend on Project 2, result is : 

Project 1 : Maven build and install the murexservice-SNAPSHOT.jar
Project 2 : Maven try to download murexservice-3.0.0.jar, Fail because there is
no murexservice-3.0.0.jar on repo, only the murexservice-SNAPSHOT.jar


BTW: That is for this reason I want to override the pom.currentVersion at bootstrap


Thx,
-emmanuel




Selon [EMAIL PROTECTED]:

> SNAPSHOT have nothing in common whith pom.currentVersion.
> If you want you can have a 3.0.0-SNAPSHOT version, the artifact with this 
> version will be considere as SNAPSHOT version too.
> 
> Nicolas,
> 
> 
> 
> 
> 
> [EMAIL PROTECTED]
> 25/05/2004 16:34
> Veuillez répondre à "Maven Users List"
> 
>  
> Pour :  [EMAIL PROTECTED]
> cc : 
> Objet : SNAPSHOT and multiproject
> 
> 
> Hi,
> 
> I have two question, first, how can I make this code working (in a 
> maven.xml) :
> 
>  ${pom.currentVersion}
>  SNAPSHOT
>  ${pom.currentVersion}
> 
> Display is :
> 
>[echo] 3.0.0
>[echo] 3.0.0
> 
> But I want
> 
>[echo] 3.0.0
>[echo] SNAPSHOT
> 
> Second question, I have a multiproject versionned as 3.0.0, this is a J2EE
> project  (client, ear, service, web...). my client depend on service 
> project :
> 
> 
> msl-murexservice
> murexservice
> ${pom.currentVersion}
> jar
> 
> 
> When I build a snapshot (using *:install-snapshot goals), Maven use 3.0.0 
> for
> the dependency version (${pom.currentVersion}), I want 
> maven
> replace 3.0.0 per SNAPSHOT. Is there a way to do this without using the
> workaround on first question.
> 
> May I am clear ?
> 
> Thx,
> -emmanuel
> 
> 
> 
> 
> -
> 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]



SNAPSHOT and multiproject

2004-05-25 Thread emmanuel . boudrant
Hi,

I have two question, first, how can I make this code working (in a maven.xml) :

${pom.currentVersion}
SNAPSHOT
${pom.currentVersion}

Display is :

   [echo] 3.0.0
   [echo] 3.0.0

But I want

   [echo] 3.0.0
   [echo] SNAPSHOT

Second question, I have a multiproject versionned as 3.0.0, this is a J2EE
project  (client, ear, service, web...). my client depend on service project :


msl-murexservice
murexservice
${pom.currentVersion}
jar


When I build a snapshot (using *:install-snapshot goals), Maven use 3.0.0 for
the dependency version (${pom.currentVersion}), I want maven
replace 3.0.0 per SNAPSHOT. Is there a way to do this without using the
workaround on first question.

May I am clear ?

Thx,
-emmanuel




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



Webwork jars

2004-03-16 Thread emmanuel . boudrant


Hi,

Does anybody can tell me where are located the opensymphony Webwork 2 jars, of
course I'm looking for a maven repository ?

I'm looking for : 

* webwork-2.0.jar
* xwork-1.0.jar
* ognl-2.6.3-modified.jar

Thx,
-emmanuel

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



Re: How can I intercept artifact downloading

2004-01-18 Thread emmanuel . boudrant
Selon Marco Tedone <[EMAIL PROTECTED]>:

> If you have a project that depends on some dependencies, then I think you
> should indicate those dependencies in one of the project files.

In fact I want to execute some code within my maven plugin (with Jelly context
access) before Maven try to download the artifacts. It is concern all
dependencies with my Eclipse plugins archive, I want add them automaticly in my
Maven local repository from my Eclipse distribution. Because adding manually all
the Eclipse plugins jar is a boring task. May I was clear ?

The goal of this (oss) maven plugin is to easily manage a Eclipse PDE project
with Maven.

Thx,
-emmanuel

> Marco
> 
> - Original Message - 
> From: <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Sunday, January 18, 2004 3:21 PM
> Subject: How can I intercept artifact downloading
> 
> 
> > Hi,
> >
> > I have a special kind of project (Eclipse PDE project) which require some
> > dependencies I can't put in my maven repository so I want to use a special
> > plugin to retrieve these dependencies. Is it possible to intercept the
> Maven
> > bootstrap which download the dependencies ?
> >
> > In fact I want to resolve these kind of dependecies before Maven :
> >
> > Tentative de tÚlÚchargement de org.eclipse.core.resources-.jar.
> > ATTENTION: Impossible de tÚlÚcharger org.eclipse.core.resources-.jar.
> > Tentative de tÚlÚchargement de org.eclipse.ui-.jar.
> > ATTENTION: Impossible de tÚlÚcharger org.eclipse.ui-.jar.
> > Tentative de tÚlÚchargement de org.eclipse.jdt.core-.jar.
> > ATTENTION: Impossible de tÚlÚcharger org.eclipse.jdt.core-.jar.
> > Le processus ne peut continuer Ó cause des dÚpendances manquantes
> suivantes:
> >
> >
> > Thx,
> > -emmanuel
> >
> > -
> > 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]



How can I intercept artifact downloading

2004-01-18 Thread emmanuel . boudrant
Hi,

I have a special kind of project (Eclipse PDE project) which require some
dependencies I can't put in my maven repository so I want to use a special
plugin to retrieve these dependencies. Is it possible to intercept the Maven
bootstrap which download the dependencies ? 

In fact I want to resolve these kind of dependecies before Maven :

Tentative de tÚlÚchargement de org.eclipse.core.resources-.jar.
ATTENTION: Impossible de tÚlÚcharger org.eclipse.core.resources-.jar.
Tentative de tÚlÚchargement de org.eclipse.ui-.jar.
ATTENTION: Impossible de tÚlÚcharger org.eclipse.ui-.jar.
Tentative de tÚlÚchargement de org.eclipse.jdt.core-.jar.
ATTENTION: Impossible de tÚlÚcharger org.eclipse.jdt.core-.jar.
Le processus ne peut continuer Ó cause des dÚpendances manquantes suivantes:


Thx,
-emmanuel

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



Re: Generating md5 checksums

2004-01-15 Thread emmanuel . boudrant
Simply use the artifact tags : http://maven.apache.org/reference/plugins/artifact/

-emmanuel

Selon "Mark R. Diggory" <[EMAIL PROTECTED]>:

> Are there any details available on goals/properties necessary for 
> generating md5 checksums for distributions and jars produced by maven?
> 
> Thanks,
> -Mark
> -- 
> Mark Diggory
> Software Developer
> Harvard MIT Data Center
> http://osprey.hmdc.harvard.edu
> 
> -
> 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]



Re: javadoc plugin error : java.io.IOException: CreateProcess

2003-12-18 Thread emmanuel . boudrant

Ok, I found the solution ;) use the property 

maven.javadoc.useexternalfile=true

-emmanuel


Selon [EMAIL PROTECTED]:

> 
> I've an error with the javadoc plugin. I think the problem is there is too
> much
> dependencies in the project. So the command line used to launch javadoc.exe
> is
> very long and it is not complete, an error is raised. Is there any solution
> ?
> 
> 
> 
> BUILD FAILED
> File.. file:/C:/Documents and
> Settings/eboudrant/.maven/plugins/maven-multiproject-plugin-1.1/
> Element... maven:reactor
> Line.. 69
> Column 7
> Unable to obtain goal [site] -- file:/C:/Documents and
> Settings/eboudrant/.maven/plugins/maven-javadoc-plugin-1.3/:106:60:
>  Javadoc failed: java.io.IOException: CreateProcess: C
> :\j2sdk1.4.2_02\bin\javadoc.exe -use -stylesheetfile "C:\Documents and
>
Settings\eboudrant\.maven\plugins\maven-javadoc-plugin-1.3\plugin-resources\stylesheet.css"
> -d C:\win32app\cruisecontro
>
l-2.1.4\work\checkout\msl-eai-projects-nightly\eclipse\plugins\com.bnpparibas.eqd.plugin.eai\target\docs\apidocs
> -windowtitle "Eclipse EAI MAMO plugin 1.1.2 API" -doctitle "Eclipse EAI MAMO
> plugin 1.1.2 API" -bottom "Copyright © MAMO-2003. All Rights Reserved."
> -classpath "C:\Documents and
> Settings\eboudrant\.maven\repository\log4j\jars\log4j-1.2.7.jar;C:\Docum
> ents and
> Settings\eboudrant\.maven\repository\junit\jars\junit-3.8.1.jar;C:\Documents
> and
> Settings\eboudrant\.maven\repository\jdom\jars\jdom-b9.jar;C:\Documents and
> Settings\eboudrant\.mave
> n\repository\jgraph\jars\jgraph-0.5.0.jar;C:\Documents and
> Settings\eboudrant\.maven\repository\jgraph\jars\jgrapht-0.5.0.jar;C:\Documents
> and Settings\eboudrant\.maven\repository\msl-tools\
> jars\msl-tools-1.0.2.jar;C:\Documents and Settings\eboudra?
> Total time: 20 minutes 37 seconds
> Finished at: Thu Dec 18 15:01:07 CET 2003
> 
> -
> 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]



javadoc plugin error

2003-12-18 Thread emmanuel . boudrant

I've an error with the javadoc plugin. I think the problem is there is too much
dependencies in the project. So the command line used to launch javadoc.exe is
very long and it is not complete, an error is raised. Is there any solution ?



BUILD FAILED
File.. file:/C:/Documents and
Settings/eboudrant/.maven/plugins/maven-multiproject-plugin-1.1/
Element... maven:reactor
Line.. 69
Column 7
Unable to obtain goal [site] -- file:/C:/Documents and
Settings/eboudrant/.maven/plugins/maven-javadoc-plugin-1.3/:106:60:
 Javadoc failed: java.io.IOException: CreateProcess: C
:\j2sdk1.4.2_02\bin\javadoc.exe -use -stylesheetfile "C:\Documents and
Settings\eboudrant\.maven\plugins\maven-javadoc-plugin-1.3\plugin-resources\stylesheet.css"
-d C:\win32app\cruisecontro
l-2.1.4\work\checkout\msl-eai-projects-nightly\eclipse\plugins\com.bnpparibas.eqd.plugin.eai\target\docs\apidocs
-windowtitle "Eclipse EAI MAMO plugin 1.1.2 API" -doctitle "Eclipse EAI MAMO
plugin 1.1.2 API" -bottom "Copyright © MAMO-2003. All Rights Reserved."
-classpath "C:\Documents and
Settings\eboudrant\.maven\repository\log4j\jars\log4j-1.2.7.jar;C:\Docum
ents and
Settings\eboudrant\.maven\repository\junit\jars\junit-3.8.1.jar;C:\Documents and
Settings\eboudrant\.maven\repository\jdom\jars\jdom-b9.jar;C:\Documents and
Settings\eboudrant\.mave
n\repository\jgraph\jars\jgraph-0.5.0.jar;C:\Documents and
Settings\eboudrant\.maven\repository\jgraph\jars\jgrapht-0.5.0.jar;C:\Documents
and Settings\eboudrant\.maven\repository\msl-tools\
jars\msl-tools-1.0.2.jar;C:\Documents and Settings\eboudra?
Total time: 20 minutes 37 seconds
Finished at: Thu Dec 18 15:01:07 CET 2003

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



multiproject:site problem

2003-12-12 Thread emmanuel . boudrant


Hi,

I've got "strange" error with multiproject:site. I have a set of project [X, Y,
 Z], if I use goal [multiproject:site], it fail on project X.

Error is : Goal [xdoc:register-reports] has no action definition

But if I run goal [site] inside project X, it works fine and the site is generated.

Is there any troubles with [multiproject:site] ?


+
| Generating site for  MSL Tools
| Memory: 25M/31M
+

BUILD FAILED
File.. file:/C:/Documents and
Settings/eboudrant/.maven/plugins/maven-multiproject-plugin-1.1/
Element... maven:reactor
Line.. 69
Column 7
Unable to obtain goal [site] -- file:/C:/Documents and
Settings/eboudrant/.maven/plugins/maven-site-plugin-1.3/:22:42: 
Goal [xdoc:register-reports] has no action definition.
Total time: 1 minutes 3 seconds
Finished at: Fri Dec 12 17:42:22 CET 2003

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



ear/war:deploy problem

2003-12-10 Thread emmanuel . boudrant
Hi,
I want to deploy my artifacts (jar, ear, war...) on out remote reposipory. We
use scp protocole with key authentification.

When I use jar:deploy, it is working fine (I think it is using my Putty
configuration).
When I use ear/war:deploy (which use artifact plugin) it is fail. I've got this
exception : 

com.jcraft.jsch.JSchException: invaid privatekey: C:\win32app\ssh\maven_private.PPK
at com.jcraft.jsch.Identity.(Unknown Source)
at com.jcraft.jsch.JSch.addIdentity(Unknown Source)
at
org.apache.maven.deploy.deployers.GenericSshDeployer.init(GenericSshDeployer.java:163)


My build.properties contain :

# For jar:deploy
maven.ssh.executable=C:\\win32app\\ssh\\plink.exe
maven.scp.executable=C:\\win32app\\ssh\\pscp.exe
maven.username=maven
maven.repo.central=remote-maven-01
maven.repo.central.directory=/var/www/html/maven-repository
maven.remote.group=apache 

# For artifact:deploy
maven.repo.list=remote-maven-01
maven.repo.gieoracle1=scp://remote-maven-01
maven.repo.gieoracle1.username=maven
maven.repo.gieoracle1.directory=/var/www/html/maven-repository
maven.repo.gieoracle1.group=apache
maven.repo.gieoracle1.privatekey=C:\\win32app\\ssh\\maven_private.PPK
maven.repo.gieoracle1.passphrase=


Any idea ?
Thx,
-emmanuel

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



ear/war:deploy problem

2003-12-10 Thread emmanuel . boudrant
Hi,
I want to deploy my artifacts (jar, ear, war...) on out remote reposipory. We
use scp protocole with key authentification.

When I use jar:deploy, it is working fine (I think it is using my Putty
configuration).
When I use ear/war:deploy (which use artifact plugin) it is fail. I've got this
exception : 

com.jcraft.jsch.JSchException: invaid privatekey: C:\win32app\ssh\maven_private.PPK
at com.jcraft.jsch.Identity.(Unknown Source)
at com.jcraft.jsch.JSch.addIdentity(Unknown Source)
at
org.apache.maven.deploy.deployers.GenericSshDeployer.init(GenericSshDeployer.java:163)


My build.properties contain :

# For jar:deploy
maven.ssh.executable=C:\\win32app\\ssh\\plink.exe
maven.scp.executable=C:\\win32app\\ssh\\pscp.exe
maven.username=maven
maven.repo.central=remote-maven-01
maven.repo.central.directory=/var/www/html/maven-repository
maven.remote.group=apache 

# For artifact:deploy
maven.repo.list=remote-maven-01
maven.repo.gieoracle1=scp://remote-maven-01
maven.repo.gieoracle1.username=maven
maven.repo.gieoracle1.directory=/var/www/html/maven-repository
maven.repo.gieoracle1.group=apache
maven.repo.gieoracle1.privatekey=C:\\win32app\\ssh\\maven_private.PPK
maven.repo.gieoracle1.passphrase=


Any idea ?
Thx,
-emmanuel

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



aspectj:compile

2003-11-14 Thread emmanuel . boudrant


Hi,

I want to compile a project with some aspects but I've got this error :

 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0-rc1-SNAPSHOT

aspectj:compile:
[ajc] Compiling 16 source and 0 arg files to
C:\projects\j2eeservice\target\classes
missing type oracle.jdbc.OracleResultSetCache
missing type oracle.jdbc.OracleResultSetCache
public void Statement.setResultSetCache(OracleResultSetCache) conflicts with
public void Statement.setResultSetCache(*): defined in same type
missing type oracle.jdbc.OracleResultSetCache
missing type oracle.jdbc.OracleResultSetCache
public abstract void OracleStatement.setResultSetCache(OracleResultSetCache)
conflicts with public abstract void OracleStatement.setResultSetCache(*): defined i
n same type
missing type oracle.jdbc.OracleResultSetCache
missing type oracle.jdbc.OracleResultSetCache
missing type oracle.jdbc.OracleResultSetCache
missing type oracle.jdbc.OracleResultSetCache
missing type oracle.jdbc.OracleResultSetCache
missing type oracle.jdbc.OracleResultSetCache
12 errors



I using maven-aspectj-plugin-1.1.jar

and have aspectjrt-1.1.0.jar and aspectjtools-1.1.0.jar in my dependencies.

The Java files I wan't to weave are Entity/Session beans. Nothing to do with
oracle.jdbc.OracleResultSetCache.

Have you got any idea ?

Thx,
-emmanuel

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



Multiple generated jars for one project

2003-10-16 Thread emmanuel . boudrant


I've got a J2EE project managed with our own plugin, this plugin use EJBGen...
The problem is there is many jars and one ear for one maven project.

Here the main artifacts :

myj2eeapp-rmi-client.jar
myj2eeapp-webservice-client.jar
myj2eeapp.ear (include myj2eeapp.jar containing the ejbs)

But we have only one project.xml with artifactId=myj2eeapp. If I execute
jar:install, only myj2eeapp.jar was installed on local repository.

Another problem, I've got a application wich use the ejb so I add the
dependencies myj2eeapp-rmi-client.jar but if I use multiproject maven don't link
my webapp with myj2eeapp because myj2eeapp.jar != myj2eeapp-rmi-client.jar.

How can I fix it ? It there a workaround ?

Thx,
-emmanuel

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



j:file and xml files

2003-10-16 Thread emmanuel . boudrant


Hi,

How can I generate XML files with , notice that I need to add DTD
declaration in generated files. 



http://java.sun.com/dtd/application_1_3.dtd'>

${j2ee.displayName}
${j2ee.displayName}

${ejb}



  ${uri}
  ${j2ee.contextRoot}

  




Maven crash with : 

org.xml.sax.SAXParseException: doctype not allowed in content.
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at javax.xml.parsers.SAXParser.parse(Unknown Source)
at
org.apache.maven.plugin.PluginCacheManager.parse(PluginCacheManager.java:365)
at
org.apache.maven.plugin.PluginManager.loadJellyScript(PluginManager.java:481)
  

Thx,
-emmanuel

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



Ant task

2003-10-16 Thread emmanuel . boudrant


Hi,

How can I use a custom ant task (with a ) inside a maven.xml file.
I try to put my task lib inside MAVEN_HOME\lib but ant is unable to find my class.

Thx,
-emmanuel

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



context, pom ...?

2003-10-15 Thread emmanuel . boudrant


Hi,

What are the object context, pom (ex: ${context.getVariable(...)})
Is there any documentation about them ?

Thx,
-emmanuel

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



Re: How to check in a property is setted [found]

2003-10-15 Thread emmanuel . boudrant

No, it's 



Thx,
-emmanuel

Selon khote <[EMAIL PROTECTED]>:

> 
> 
>  
> 
> 
> 
> 
> - Original Message - 
> From: "Marc Portier" <[EMAIL PROTECTED]>
> To: "Maven Users List" <[EMAIL PROTECTED]>
> Sent: Wednesday, October 15, 2003 7:51 AM
> Subject: Re: How to check in a property is setted
> 
> 
> > not sure, (quite new to maven too)
> > 
> > I've been checking some existing jelly code the last days and have seen 
> > this construct quite often:
> > 
> >
> > 
> > sounds like it is your way to go?
> > 
> > regards,
> > -marc=
> > 
> > 
> > [EMAIL PROTECTED] wrote:
> > > 
> > > Hi there,
> > > 
> > > Ho ca I check if a property is setted in project.properties (or
> > > ~/build.properties...).
> > > 
> > > This is not working : 
> > > 
> > >  ... 
> > > 
> > > Thx,
> > > -emmanuel
> > > 
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > 
> > 
> > -- 
> > Marc Portierhttp://outerthought.org/
> > Outerthought - Open Source, Java & XML Competence Support Center
> > Read my weblog at  http://radio.weblogs.com/0116284/
> > [EMAIL PROTECTED]  [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]



RE: How to fail inside a maven plugin

2003-10-15 Thread emmanuel . boudrant

It's because I was thinking the 'fail' exist in Maven or Jetty... ;)

 work fine ;)

Thx,
-emmanuel

Selon Vincent Massol <[EMAIL PROTECTED]>:

> I guess that if you're asking, it's because  doesn't work?
> 
> -Vincent
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: 15 October 2003 16:04
> > To: [EMAIL PROTECTED]
> > Subject: How to fail inside a maven plugin
> > 
> > Hi there,
> > 
> > How to fail inside a maven plugin ?
> > 
> > example:
> > 
> > 
> > 
> > false
> > 
> > 
> > true
> > 
> > 
> > 
> > FAIL HERE
> > 
> > ...
> > 
> > 
> > Thx,
> > -emmanuel
> > 
> > -
> > 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]



How to check in a property is setted

2003-10-15 Thread emmanuel . boudrant


Hi there,

Ho ca I check if a property is setted in project.properties (or
~/build.properties...).

This is not working : 

 ... 

Thx,
-emmanuel

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



How to fail inside a maven plugin

2003-10-15 Thread emmanuel . boudrant
Hi there,

How to fail inside a maven plugin ?

example:



false


true



FAIL HERE

...


Thx,
-emmanuel

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



Re: MavenProxy

2003-09-30 Thread emmanuel . boudrant
I've just created an issue :

http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-871

Selon Trygve Laugstøl <[EMAIL PROTECTED]>:

> On Tue, 30 Sep 2003 [EMAIL PROTECTED] wrote:
> 
> >
> > Here my maven out :
> >
> > T:\eb\maven-proxy\core>maven artifact:load
> >  __  __
> > |  \/  |__ _Apache__ ___
> > | |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
> > |_|  |_\__,_|\_/\___|_||_|  v. 1.0-rc1-SNAPSHOT
> >
> > Tentative de t¥Èl¥Èchargement de maven-fetch-SNAPSHOT.jar.
> > BUILD SUCCESSFUL
> > Total time: 14 seconds
> > Finished at: Tue Sep 30 16:52:45 CEST 2003
> >
> > Here my MavenProxy out :
> >
> > 16:52:43.688 WARN!! Exception for /maven/jars/maven-fetch-SNAPSHOT.jar
> > java.lang.IllegalArgumentException: Cannot convert date: mar., 30 sept.
> 2003
> > 13:00:17
> > at org.mortbay.http.HttpFields.getDateField(HttpFields.java:916)
> > at org.mortbay.http.HttpMessage.getDateField(HttpMessage.java:457)
> > at
> org.mortbay.jetty.servlet.ServletHttpRequest.getDateHeader
(ServletHttpRequest.java:275)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> > at
> org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:360)
> > at
> org.mortbay.jetty.servlet.ServletHandler.dispatch(ServletHandler.java:651)
> > at
> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:558)
> > at org.mortbay.http.HttpContext.handle(HttpContext.java:1714)
> > at org.mortbay.http.HttpContext.handle(HttpContext.java:1664)
> > at org.mortbay.http.HttpServer.service(HttpServer.java:863)
> > at
> org.mortbay.http.HttpConnection.service(HttpConnection.java:775)
> > at
> org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:939)
> > at org.mortbay.http.HttpConnection.handle(HttpConnection.java:792)
> > at
> org.mortbay.http.SocketListener.handleConnection(SocketListener.java:201)
> > at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:289)
> > at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:455)
> >
> > It's only a warning (but why?)
> >
> 
> Guess it is because "mar., 30 sept. 2003 13:00:17" isnt a valid date.
> Seems like it is a extra ',' in it. Seems like a jetty issue anyway.
> Which browser are you using? or maven fetcher? If so it might have
> something to with some fields the fetcher are setting.
> 
> I've check the jetty code and it seems like the field it is trying to read
> is the If-modified-since header field. Might be a lead for the one that is
> going to investigate into this.
> 
> 
http://cvs.sourceforge.net/viewcvs.py/jetty/Jetty/src/javax/servlet/http/HttpSer
vlet.java?rev=1.4&content-type=text/vnd.viewcvs-markup
> 
> long ifModifiedSince = req.getDateHeader(HEADER_IFMODSINCE);
> 
> >
> > Thx,
> >
> > Selon Trygve Laugst©ªl <[EMAIL PROTECTED]>:
> >
> > > On Tue, 30 Sep 2003 [EMAIL PROTECTED] wrote:
> > >
> > > > Hi,
> > > >
> > > > I've just installed maven proxy and I've got an error on retriving
> some
> > > > SNAPSHOP dependencies :
> > > >
> > > > 15:21:37.878 WARN!! Exception for /maven/jars/maven-fetch-SNAPSHOT.jar
> > > > java.lang.IllegalArgumentException: Cannot convert date: mar., 30
> sept.
> > > 2003
> > > > 13:00:17
> > > > at
> org.mortbay.http.HttpFields.getDateField(HttpFields.java:916)
> > >
> > > Do you mind positing the rest of the trace? I've looked at the
> maven-proxy
> > > for some time now so I know at least some parts of the code rather well.
> > >
> > > What did you do to get this exception?
> > >
> > > >
> > > > Any idea ?
> > > >
> > > > Thx,
> > > > -emmanuel
> > >
> > > Trygve
> 
> Trygve
> 
> -
> 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]



Re: MavenProxy

2003-09-30 Thread emmanuel . boudrant
Selon Paul Libbrecht <[EMAIL PROTECTED]>:

> Dare I ask what MavenProxy is ?
> Google doesn't seem to find anything on this topic.
> Is it simply the proxy settings in Maven... or is it a Servlet-based 
> maven at work ?

It's just a great tool, more info on :

http://wiki.codehaus.org/maven/MavenProxy

> Thanks.
> 
> Paul
> 
> 
> 
> Jason van Zyl wrote:
> > On Tue, 2003-09-30 at 09:41, [EMAIL PROTECTED] wrote:
> > 
> >>Hi,
> >>
> >>I've just installed maven proxy and I've got an error on retriving some 
> >>SNAPSHOP 
> >>dependencies :
> >>
> >>15:21:37.878 WARN!! Exception for /maven/jars/maven-fetch-SNAPSHOT.jar
> >>java.lang.IllegalArgumentException: Cannot convert date: mar., 30 sept.
> 2003 
> >>13:00:17
> >>at org.mortbay.http.HttpFields.getDateField(HttpFields.java:916)
> >>
> >>Any idea ?
> > 
> > 
> > I might be able to take a peek next week, but Ben, the author, is on
> > vacation right now but I'll be seeing him in Amsterdam so I will give
> > him a little nudge for you :-)
> 
> 
> -
> 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]



Re: MavenProxy

2003-09-30 Thread emmanuel . boudrant

Here my maven out :

T:\eb\maven-proxy\core>maven artifact:load
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0-rc1-SNAPSHOT

Tentative de t¥Èl¥Èchargement de maven-fetch-SNAPSHOT.jar.
BUILD SUCCESSFUL
Total time: 14 seconds
Finished at: Tue Sep 30 16:52:45 CEST 2003

Here my MavenProxy out :

16:52:43.688 WARN!! Exception for /maven/jars/maven-fetch-SNAPSHOT.jar
java.lang.IllegalArgumentException: Cannot convert date: mar., 30 sept. 2003 
13:00:17
at org.mortbay.http.HttpFields.getDateField(HttpFields.java:916)
at org.mortbay.http.HttpMessage.getDateField(HttpMessage.java:457)
at org.mortbay.jetty.servlet.ServletHttpRequest.getDateHeader
(ServletHttpRequest.java:27
5)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.mortbay.jetty.servlet.ServletHolder.handle
(ServletHolder.java:360)
at org.mortbay.jetty.servlet.ServletHandler.dispatch
(ServletHandler.java:651)
at org.mortbay.jetty.servlet.ServletHandler.handle
(ServletHandler.java:558)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1714)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1664)
at org.mortbay.http.HttpServer.service(HttpServer.java:863)
at org.mortbay.http.HttpConnection.service(HttpConnection.java:775)
at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:939)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:792)
at org.mortbay.http.SocketListener.handleConnection
(SocketListener.java:201)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:289)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:455)



It's only a warning (but why?)



Thx,





Selon Trygve Laugst©ªl <[EMAIL PROTECTED]>:

> On Tue, 30 Sep 2003 [EMAIL PROTECTED] wrote:
> 
> > Hi,
> >
> > I've just installed maven proxy and I've got an error on retriving some
> > SNAPSHOP dependencies :
> >
> > 15:21:37.878 WARN!! Exception for /maven/jars/maven-fetch-SNAPSHOT.jar
> > java.lang.IllegalArgumentException: Cannot convert date: mar., 30 sept.
> 2003
> > 13:00:17
> > at org.mortbay.http.HttpFields.getDateField(HttpFields.java:916)
> 
> Do you mind positing the rest of the trace? I've looked at the maven-proxy
> for some time now so I know at least some parts of the code rather well.
> 
> What did you do to get this exception?
> 
> >
> > Any idea ?
> >
> > Thx,
> > -emmanuel
> 
> Trygve
> 
> -
> 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]



Re: MavenProxy

2003-09-30 Thread emmanuel . boudrant
> On Tue, 2003-09-30 at 09:41, [EMAIL PROTECTED] wrote:
> > Hi,
> > 
> > I've just installed maven proxy and I've got an error on retriving some 
> > SNAPSHOP 
> > dependencies :
> > 
> > 15:21:37.878 WARN!! Exception for /maven/jars/maven-fetch-SNAPSHOT.jar
> > java.lang.IllegalArgumentException: Cannot convert date: mar., 30 sept.
> 2003 
> > 13:00:17
> > at org.mortbay.http.HttpFields.getDateField(HttpFields.java:916)
> > 
> > Any idea ?
> 
> I might be able to take a peek next week, but Ben, the author, is on
> vacation right now but I'll be seeing him in Amsterdam so I will give
> him a little nudge for you :-)

BTW, is there any bugtracking systems for this great tool ?
 
> 
> > Thx,
> > -emmanuel
> > 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> -- 
> jvz.
> 
> Jason van Zyl
> [EMAIL PROTECTED]
> http://tambora.zenplex.org
> 
> In short, man creates for himself a new religion of a rational
> and technical order to justify his work and to be justified in it.
>   
>   -- Jacques Ellul, The Technological Society
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 



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



MavenProxy

2003-09-30 Thread emmanuel . boudrant
Hi,

I've just installed maven proxy and I've got an error on retriving some 
SNAPSHOP 
dependencies :

15:21:37.878 WARN!! Exception for /maven/jars/maven-fetch-SNAPSHOT.jar
java.lang.IllegalArgumentException: Cannot convert date: mar., 30 sept. 2003 
13:00:17
at org.mortbay.http.HttpFields.getDateField(HttpFields.java:916)

Any idea ?

Thx,
-emmanuel

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



Re: weblogic plugin

2003-09-09 Thread Emmanuel Boudrant
Here the file

sorry,
-emmanuel

[--  En réponse à  Emmanuel Boudrant <[EMAIL PROTECTED]>:  --]
 
>>Hi,
>>
>>Here a maven.xml I made quickly for weblogic 8.1, the
>>goals are :
>>
>>Generate EJB with ejbgen
>>Gererate Stubs with weblogic.appc
>>Generate WebServices with weblogic.servicegen
>>Generate WWebServices web client with weblogic.clientgen
>>Deploy all on weblogic 8.1
>>
>>This script isn't VERY CLEAN but it a "bon debut" ...
>>perhaps you can use it for making yours (or a weblogic
>>8.1 plugin) and share your work ;).
>>
>>I attach you four files:
>>
>>- maven.xml
>>- project.properties
>>- eb.cmd > to set the environement variables before
>>deploying.
>>- gaia.properties
>>
>>
>>Hope this helps you...
>>-emmanuel
>>
>>
>>
>>
>>
>>
>>[--  En réponse à  Jean-François El Fouly
>><[EMAIL PROTECTED]>:  --]
>> 
>>>>A 08:39 09/09/2003 +0800, vous avez écrit :
>>>>>Hi,
>>>>>
>>>>>Does anyone have a weblogic plugin for weblogic 8.1? 
>>>>The weblogic tasks 
>>>>>I'm looking for are things like the ejbgen tasks and
>>jsp
>>>>/ ejb validation 
>>>>>and compilation?
>>>>>
>>>>>Thanks
>>>>>Nathan
>>>>
>>>>There have been several proposals to contribute
>>plugins
>>>>for different 
>>>>versions of WebLogic... Most of the time they have
>>been
>>>>ignored, I guess 
>>>>because of incompatible licences: these plugins
>>obviously
>>>>need weblogic.jar 
>>>>in one place or another.
>>>>
>>>>I've developed a very good plugin for WLS 6.1 with a
>>team
>>>>of another 
>>>>corporate development team (at AGF Asset Management).
>>>>Someone else developed a plugin for WLS 7.0; I had a
>>look
>>>>at it, and I must 
>>>>say it performs rather different operations. I guess a
>>>>realistic future for 
>>>>these plugins would be to contribute them all to the
>>>>maven-plugins project 
>>>>hosted at sourceforge; have different plugins for the
>>>>different WLS 
>>>>versions and try to merge / harmonize / match their
>>>>functionalities.
>>>>
>>>>Hope this helps you...
>>>>
>>>>Cheers,
>>>>
>>>>Jean-François
>>>>
>>>>
>>>>
>>>>-
>>>>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]
>>
>>



wl8.1-goals.zip
Description: Zip compressed data
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: weblogic plugin

2003-09-09 Thread Emmanuel Boudrant
Hi,

Here a maven.xml I made quickly for weblogic 8.1, the goals are :

Generate EJB with ejbgen
Gererate Stubs with weblogic.appc
Generate WebServices with weblogic.servicegen
Generate WWebServices web client with weblogic.clientgen
Deploy all on weblogic 8.1

This script isn't VERY CLEAN but it a "bon debut" ... perhaps you can use it for 
making yours (or a weblogic 8.1 plugin) and share your work ;).

I attach you four files:

- maven.xml
- project.properties
- eb.cmd > to set the environement variables before deploying.
- gaia.properties


Hope this helps you...
-emmanuel






[--  En réponse à  Jean-François El Fouly <[EMAIL PROTECTED]>:  --]
 
>>A 08:39 09/09/2003 +0800, vous avez écrit :
>>>Hi,
>>>
>>>Does anyone have a weblogic plugin for weblogic 8.1? 
>>The weblogic tasks 
>>>I'm looking for are things like the ejbgen tasks and jsp
>>/ ejb validation 
>>>and compilation?
>>>
>>>Thanks
>>>Nathan
>>
>>There have been several proposals to contribute plugins
>>for different 
>>versions of WebLogic... Most of the time they have been
>>ignored, I guess 
>>because of incompatible licences: these plugins obviously
>>need weblogic.jar 
>>in one place or another.
>>
>>I've developed a very good plugin for WLS 6.1 with a team
>>of another 
>>corporate development team (at AGF Asset Management).
>>Someone else developed a plugin for WLS 7.0; I had a look
>>at it, and I must 
>>say it performs rather different operations. I guess a
>>realistic future for 
>>these plugins would be to contribute them all to the
>>maven-plugins project 
>>hosted at sourceforge; have different plugins for the
>>different WLS 
>>versions and try to merge / harmonize / match their
>>functionalities.
>>
>>Hope this helps you...
>>
>>Cheers,
>>
>>Jean-François
>>
>>
>>
>>-
>>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]



Weblogic ejbgen task

2003-08-18 Thread Emmanuel Boudrant
Does anybody try to launch the weblogic 8.1 ejbgen ant task inside a maven plugin ? 

I've got this error :

BUILD FAILED
File.. file:/D:/eclipse/workspace/g-contact/
Element... ant:wlappc
Line.. 104
Column 35
java.lang.NullPointerException
Total time:  10 seconds

By the way, is there any weblogic plugin planned for maven ;)


Thx,
-emmanuel



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



Ant teskdef question

2003-08-18 Thread Emmanuel Boudrant
Hello,

With a Ant build file, I made a Maven plugin. The Ant build file use some custom 
taskdef. When I run it with maven (I put build.xml in maven.xml), I've got an error on 
the taskdef :

-
BUILD FAILED
File.. file:/D:/eclipse/workspace/g-contact/
Element... ant:taskdef
Line.. 7
Column 87
taskdef class weblogic.ant.taskdefs.management.WLDeploy cannot be found
Total time:  2 seconds
--

Where I must put the jar whitch contain my custom taskdef ? I put it in the 
project.xml dependencies but it's not working.

Here my maven.xml :





  
  


...


Thx,
-emmanuel



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



Multiple source directory

2003-08-18 Thread Emmanuel Boudrant
Hello,

Can I have 2 or more source directories in a maven project.
The reason is, I have some java classes generated with ejb-gen and I don't want to use 
my src/java. 

src/java >> My sources files
src/gen >> Sources generated by ejb-gen
src/test >> My unit tests

Thx,
-emmanuel



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



Re: Struts TLDs dependencies

2003-08-14 Thread Emmanuel Boudrant
Only because my TLDs déclarations in my JSPs does not contain the version number. 

Same thing from the TLDs provided by Struts framework binaries.

Thx,
-emmanuel


[--  En réponse à  [EMAIL PROTECTED]:  --]
 
>>Why would you want to?
>>--
>>dIon Gillard, Multitask Consulting
>>Blog:  http://blogs.codehaus.org/people/dion/
>>
>>
>>"Emmanuel Boudrant" <[EMAIL PROTECTED]> wrote on
>>14/08/2003 02:16:15 AM:
>>
>>> Hi,
>>> 
>>> I've got a struts application described by maven, in my
>>dependencies
>>> I add all the struts 1.1 TLDS. When I build the war
>>(maven war), 
>>> maven copy all the TLDs in my webapp but it's keeping
>>the version 
>>> suffix (struts-html-1.1.tld).
>>> 
>>> How can I tell maven to remove the version suffix in my
>>webapp 
>>> structure (WEB_INF/tld/*) ?
>>> 
>>> Here the declaration :
>>> 
>>>  
>>>struts
>>>struts-nested
>>>1.1
>>>tld
>>>
>>>  true
>>>
>>>  
>>> 
>>> Thx,
>>> -emmanuel
>>> 
>>> 
>>> 
>>>
>>-
>>> 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]



Continous integration question

2003-08-14 Thread Emmanuel Boudrant
Hi,

I'm a little lost ;) ... Does Maven reactor replace Gump ? If no, what are the 
differences between Maven reactor and Gump ?

Thx,
-emmanuel



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



Re: Struts TLDs dependencies

2003-08-14 Thread Emmanuel Boudrant
Yes, the trick in web.xml work fine. I just explain you my reason ;)

Thx a lot,
-emmanuel



[--  En réponse à  [EMAIL PROTECTED]:  --]
 
>>You've found the web.xml mapping trick, but the version
>>number is in the 
>>TLDs for a reason.
>>--
>>dIon Gillard, Multitask Consulting
>>Blog:  http://blogs.codehaus.org/people/dion/
>>
>>
>>"Emmanuel Boudrant" <[EMAIL PROTECTED]> wrote on
>>14/08/2003 08:13:41 PM:
>>
>>> Only because my TLDs déclarations in my JSPs does not
>>contain the 
>>> version number. 
>>> 
>>> Same thing from the TLDs provided by Struts framework
>>binaries.
>>> 
>>> Thx,
>>> -emmanuel
>>> 
>>> 
>>> [--  En réponse à  [EMAIL PROTECTED]:  --]
>>> 
>>> >>Why would you want to?
>>> >>--
>>> >>dIon Gillard, Multitask Consulting
>>> >>Blog:  http://blogs.codehaus.org/people/dion/
>>> >>
>>> >>
>>> >>"Emmanuel Boudrant" <[EMAIL PROTECTED]> wrote on
>>> >>14/08/2003 02:16:15 AM:
>>> >>
>>> >>> Hi,
>>> >>> 
>>> >>> I've got a struts application described by maven,
>>in my
>>> >>dependencies
>>> >>> I add all the struts 1.1 TLDS. When I build the
>>war
>>> >>(maven war), 
>>> >>> maven copy all the TLDs in my webapp but it's
>>keeping
>>> >>the version 
>>> >>> suffix (struts-html-1.1.tld).
>>> >>> 
>>> >>> How can I tell maven to remove the version suffix
>>in my
>>> >>webapp 
>>> >>> structure (WEB_INF/tld/*) ?
>>> >>> 
>>> >>> Here the declaration :
>>> >>> 
>>> >>>  
>>> >>>struts
>>> >>>struts-nested
>>> >>>1.1
>>> >>>tld
>>> >>>
>>> >>>  true
>>> >>>
>>> >>>  
>>> >>> 
>>> >>> Thx,
>>> >>> -emmanuel
>>> >>> 
>>> >>> 
>>> >>> 
>>> >>>
>>>
>>>>-
>>> >>> 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]



Struts TLDs dependencies

2003-08-14 Thread Emmanuel Boudrant
Hi,

I've got a struts application described by maven, in my dependencies I add all the 
struts 1.1 TLDS. When I build the war (maven war), maven copy all the TLDs in my 
webapp but it's keeping the version suffix (struts-html-1.1.tld).

How can I tell maven to remove the version suffix in my webapp structure 
(WEB_INF/tld/*) ?

Here the declaration :

  
struts
struts-nested
1.1
tld

  true

  

Thx,
-emmanuel



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



Jelly question

2003-07-09 Thread Emmanuel boudrant
Hi,
 
Is it possible to update an xml file with Jelly ? For example, modify
the content of an attribute or a tag.
 
Thx,
-emmanuel


RE : maven and eclipse-plugins

2003-07-07 Thread Emmanuel boudrant
Ok...I will take a look to this contribution but any idea or help is
welcome.

Thx,
-emmanuel

-Message d'origine-
De : Vincent Massol [mailto:[EMAIL PROTECTED] 
Envoyé : dimanche 6 juillet 2003 11:24
À : 'Maven Users List'
Objet : RE: maven and eclipse-plugins

Hi Emmanuel,

Not yet. I was planning to make one but haven't found the time. That
would be a great contribution :-)

Including the support for unit testing of Eclipse plug-in would also be
great...

Thanks
-Vincent

> -Original Message-
> From: Emmanuel boudrant [mailto:[EMAIL PROTECTED]
> Sent: 06 July 2003 11:13
> To: [EMAIL PROTECTED]
> Subject: maven and eclipse-plugins
> 
> Hi,
> 
> Is there any maven plug-in/goal in project to distribute Eclipse
plug-in
> and features (build+upload on update site)?
> 
> Thx
> -emmanuel
> 
> 


-
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]



maven and eclipse-plugins

2003-07-06 Thread Emmanuel boudrant
Hi, 
 
Is there any maven plug-in/goal in project to distribute Eclipse plug-in
and features (build+upload on update site)? 
 
Thx
-emmanuel
 
 


About ibiblio.org

2003-07-05 Thread Emmanuel boudrant
Hi,
 
Who is in charge in managing the repository ibiblio.org/maven ? 
What is the position between apache/ibiblio ?
And can we request for adding new libraries in ibiblio repository (like
eclipse-pde, eclipse-form.)
 
And can I use in a project.xml dependencies some libraries located on
ibiblio.org and some on my computer without putting them in my local
maven repository (use my eclipse distribution plugins for example).
 
Thx,
-emmanuel