Maven and JBoss

2004-04-06 Thread Amato Massimiliano \(TLAB\)
Hello, I am migrating allo our existing projects into Maven, but now i have a problem. We had a big J2EE project that used to be managed with ant, and we had a target that managed to configure Jboss with all the needed libs and configuration files needed by the AppServer. Now that i've

Using Maven in Chinese Envrionment - Suggestion

2004-04-06 Thread el wang
I am not an experienced user of maven. while I find some way to using maven in chinese environment. Currently, the code on CVS has on little problem. :-( I check maven source code, find maven using ResourceBoundle to load Message.properties (for english environment), or messages_zh_CN.properties

Re: Dependencies and the local repository

2004-04-06 Thread Henry Isidro
Jarrell, Maury wrote: Forgive me for asking what must be a very basic question. I've searched the Maven site and scoured the archives for this list and haven't found an answer. I have a simple java project defined in an Ant file. The dependencies for my current project are in jars in the

cactus:cactifywar failed

2004-04-06 Thread Lillian
I want to run the cactus test, but it keeps give me the following error: cactus:cactifywar: [cactifywar] Analyzing war: C:\pps\subprojects\util\target\ppsfs-util.war BUILD FAILED File.. file:/E:/maven/plugins/maven-cactus-plugin-3.1-SNAPSHOT/ Element... cactifywar Line.. 182

XDOC

2004-04-06 Thread James Hughes
Can somebody tell me if XDOC is a technology that exists purely in the Maven world? Thanks, James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: cactus:cactifywar failed

2004-04-06 Thread Vincent Massol
Hi Lillian, Cactus questions should go to the Cactus mailing list. You have already posted this question there (I have accepted your email. It was moderated because you had not subscribe to the mailing list). Please be a little patient and you'll get an answer... ;-) Thanks -Vincent

RE: Maven and JBoss

2004-04-06 Thread Vincent Massol
Hi Massimiliano, That's exactly what the JBoss plugin does! I've created it for exactly this purpose. -Vincent -Original Message- From: Amato Massimiliano (TLAB) [mailto:[EMAIL PROTECTED] Sent: 06 April 2004 10:02 To: Maven Users List Subject: Maven and JBoss Hello, I am

RE: Maven and JBoss

2004-04-06 Thread Arto Pastinen
Hi Vincent! Have you created plugin? I tried to use it some times ago, and i got java.io.IOException when i tried to use jboss:deploy, does it work? Artsi On Tue, 2004-04-06 at 13:55, Vincent Massol wrote: Hi Massimiliano, That's exactly what the JBoss plugin does! I've created it for

Multiproject instructions

2004-04-06 Thread Joshua Sherwood
Is there any documentation on how to setup multiproject structure? The plugin itself has goals and properties, but no indication of how to describe multiple projects. Do I create multiple project.xml files, how do I tell it about the projects?? Any suggestions? I checked the FAQ and WIKI in

RE: Dependencies and the local repository

2004-04-06 Thread Jarrell, Maury
Kevin, Henry, Thanks for your tips. Maven is cool, I'm just having trouble wrapping my mind around the repository concept for some reason. Thanks, Maury -Original Message- From: Kevin Hagel [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 4:21 AM To: Maven Users List

RE: Multiproject instructions

2004-04-06 Thread Ricardo de Souza Moura
in this url http://wiki.codehaus.org/maven/OtherMavenArticles The topic 7 Maven Magic show you about setup multiproject. From: Joshua Sherwood [EMAIL PROTECTED] Reply-To: Maven Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Multiproject instructions Date: Tue, 06 Apr 2004 08:08:34

easy way to 'add' my own jars?

2004-04-06 Thread gabor
hi, for now, i have been using ant to build my java program. now i am trying to build it with maven. i simply have a directory, witha a 'src' and a 'lib' subdirectory. the source code is in 'src', the needed jar files are in 'lib'. i understand that maven likes to do it the other way, so that

RE: Multiproject instructions

2004-04-06 Thread Jörg Schaible
Try the genapp plugin. It has several setups for a multiproject. Joshua Sherwood wrote on Tuesday, April 06, 2004 2:09 PM: Is there any documentation on how to setup multiproject structure? The plugin itself has goals and properties, but no indication of how to describe multiple projects.

RE: easy way to 'add' my own jars?

2004-04-06 Thread Jarrell, Maury
I am in no way an expert. In fact, I asked basically this same question yesterday. (RE: Dependencies and the local Repository in the archive) I'm going to try an answer and let folks correct me. There are some ways to get around the dependency thing. For example, Henry Isidro offered: Hi. I

RE: Maven and JBoss

2004-04-06 Thread Vincent Massol
Hi, I've not used it for a long time. However, I'm not aware of any issue. BTW, there is no jboss:deploy goal in the latest version of the plugin :-) (there are jboss:deploy-war and jboss:deploy-ear ones though). Thanks -Vincent -Original Message- From: Arto Pastinen [mailto:[EMAIL

test:test goal can't find JUnitTask

2004-04-06 Thread Jarrell, Maury
The test:test goal can't find the JUnitTask. I think it might have to do with the fact that I have ant 1.6.1 installed. Maven 1.0-rc2 seems to rely on ant 1.5.3-1. In 1.5.3-1 the JUnitTask is in optional.jar. In ant-1.6.1 it is in ant-junit.jar. I find the ant-optional-1.5.3-1.jar in

Jelly tag questions

2004-04-06 Thread Menetrieux Remy
Hi, I create this code : j:set var=vers value=${pom.getVersions()} / j:set var=max value=${size(vers)} / j:set var=max value=${max - 1} / j:forEach var=dep items=${pom.getVersions()} indexVar=index echo${ max 0 }/echo /j:forEach When I

RE: Jelly tag questions

2004-04-06 Thread Vincent Massol
Hi Remy, Your best bet is to call some java code (using j:invokeStatic for example) for all numerical computations. They are not supported by JEXL (AFAIK). -Vincent -Original Message- From: Menetrieux Remy [mailto:[EMAIL PROTECTED] Sent: 06 April 2004 17:01 To: Maven Users List

several the same deps in one POM

2004-04-06 Thread Sergey Khandogin
Hi All I have a following question. I'm going to use deps definition in the way described in EnsureProjectConsistencyWithEntities article at Maven wiki And I'm wondering how will act maven when several the same deps will be present in the sungle POM file. I mean is it normal situation or there

RE: Jelly tag questions

2004-04-06 Thread Menetrieux Remy
Thanks, but I have an other pb: j:invokeStatic className=java.lang.Integer var=truc method=parseInt j:arg type=java.lang.String value='3' / /j:invokeStatic This code make the following error .. : java.lang.reflect.InvocationTargetException at

RE: several the same deps in one POM

2004-04-06 Thread Jörg Schaible
Sergey Khandogin wrote on Tuesday, April 06, 2004 5:27 PM: Hi All I have a following question. I'm going to use deps definition in the way described in EnsureProjectConsistencyWithEntities article at Maven wiki And I'm wondering how will act maven when several the same deps will be

RE: Jelly tag questions

2004-04-06 Thread Vincent Massol
Remy, The answer is in the stack trace. As with all stack traces you have to look hard. If you do, you'll see: Caused by: java.lang.NumberFormatException: For input string: '3' '3' is not a number Try with 3 -Vincent -Original Message- From: Menetrieux Remy [mailto:[EMAIL

RE: Jelly tag questions

2004-04-06 Thread Menetrieux Remy
Ok thank's, This code works, but can you explain why in th j:arg expression my max variable is an int but in this expression not : echo{max 0} /echo j:set var=vers value=${pom.getVersions()} / j:set var=max value=${size(vers) - 1} / j:invokeStatic className=java.lang.Integer var=truc

RE: Jelly tag questions

2004-04-06 Thread Vincent Massol
-Original Message- From: Menetrieux Remy [mailto:[EMAIL PROTECTED] Sent: 06 April 2004 18:26 To: Maven Users List Subject: RE: Jelly tag questions Ok thank's, This code works, but can you explain why in th j:arg expression my max variable is an int but in this expression not

Re: several the same deps in one POM

2004-04-06 Thread Sergey Khandogin
Jörg Schaible wrote: Sergey Khandogin wrote on Tuesday, April 06, 2004 5:27 PM: Hi All I have a following question. I'm going to use deps definition in the way described in EnsureProjectConsistencyWithEntities article at Maven wiki And I'm wondering how will act maven when several the same

RE: NoClassDefFoundError for org/jaxen/JaxenException and org/saxpath/SAXPathException ( continues )

2004-04-06 Thread KRÁLIK Vladimír
http://jira.codehaus.org/ViewIssue.jspa?key=MAVEN-1216 I tryed maven-eclipse-plugin and got another exception : java.lang.ClassNotFoundException: org.apache.commons.jelly.tags.xml.XMLTagLibrary It's because maven-eclipse-plugin doesn't contain dependecy to commons-jelly-tags-xml.

Re: XDOC

2004-04-06 Thread robert burrell donkin
(i'm not sure exactly what you're asking but i'll do my best) the format used for the xml files in the xdoc section is based on anakia (which is widely used in the ASF). see http://maven.apache.org/start/anakia.html for more details. - robert On 6 Apr 2004, at 11:36, James Hughes wrote: Can

Re: Using Maven in Chinese Envrionment - Suggestion

2004-04-06 Thread robert burrell donkin
i'm not a maven committer but i'd suggest that (if you haven't done so already) please create a report in jira (http://jira.codehaus.org/BrowseProject.jspa?id=10030). - robert On 6 Apr 2004, at 09:48, el wang wrote: I am not an experienced user of maven. while I find some way to using maven