RE: can not run XDoclet

2004-11-11 Thread Charles Daniels
That's not how you install a plugin. To manually install a plugin, place the plugin jar file in MAVEN_HOME/plugins. When you run maven, it will take care of expanding jar files from MAVEN_HOME/plugins into the .maven/cache directory. > -Original Message- > From: Janos Mucsi [mailto:[EMA

can not run XDoclet

2004-11-11 Thread Janos Mucsi
Thanks, but how does Maven recognize a new plugin? After I created a directory called C:\Documents and Settings\jmucsi\.maven\cache\maven-xdoclet-plugin-1.2.1 I unzipped the 3 files (plugin.jelly, plugin.properties, project.xml) into it from maven-xdoclet-plugin-1.2.1.jar, the same thing happene

Re: Propety inherithance in 1.0.1

2004-11-11 Thread Brett Porter
Yes, this was a bugfix. project.properties belongs with project.xml, not with project_common.xml. As dan later suggests, creating a subdirectory putting the extension POM in there with the properties you want inherited is correct. This way, the inherited properties and the master build properties

RE: can not run XDoclet

2004-11-11 Thread Charles Daniels
Looks like you do not have the maven xdoclet plugin installed. Notice that there is no "Loading plugin 'maven-xdoclet-plugin-1.2.1'" message in your output. The xdoclet plugin is not part of the maven installation. You must download it separately. The xdoclet repository is here: http://xdoclet.

can not run XDoclet

2004-11-11 Thread Janos Mucsi
Hi Pascal I appreciate your reply! I upgraded to Maven 1.0.1 and here is the trace: C:\temp\eclipse\PlutoApp\modules\everest-module-registration>maven -X ejb:instal l __ __ | \/ |__ _Apache__ ___ | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~ |_| |_\__,_|\_/\___|_||_| v. 1.0.1 Initial

RE: German translation

2004-11-11 Thread Aleksandr Shneyderman
Try altavista they are the language translation experts, but thye only have limited selection of languages to translate to. I guess German is one of the languages on the list -Original Message- From: Daniel Frey [mailto:[EMAIL PROTECTED] Sent: Thursday, November 11, 2004 6:23 PM To: 'Mave

Maven classloader breaks URLs

2004-11-11 Thread Daniel Frey
Hello I am using a method SharkUtils.class.getResource to load resources for my project. The resource is lateron addressed as a file: 001 final String name = "sql/hsql/LoaderJob.olj"; 002 final URL resource = SharkUtils.class.getResource(name); 003 final String external = resource.toExternalFo

German translation

2004-11-11 Thread Daniel Frey
Is there a way to translate automatically generated documentation titles like "Project documentation" into another language? Thanks Daniel

Re: maven test and eclipse.dependency=true

2004-11-11 Thread Joe Shomphe
Well, I can partly answer my own question. The eclipse.dependency property is only really used by the maven-eclipse-plugin to generate the .project files, etc. On Thu, 11 Nov 2004 12:08:39 -0800, Joe Shomphe <[EMAIL PROTECTED]> wrote: > Our current project uses a combo of eclipse + maven for e

Re: maven and ssh

2004-11-11 Thread Geoffrey
"it just hangs " I had that too, it's because it needs your private key password. But maven doesn't support it putting in. I solved it by running the ssh-agent command first. But I already documted all this in an xdoc which I send to Dion, he would review it and add it to the site plugin docs...

Re: Automating SCM plugin

2004-11-11 Thread Brett Porter
If it is something you need, you can certainly copy the plugin and install your own version. It would be a good idea to do something reusable, and submit a patch to JIRA so that when the next SCM release comes out, you can just use that again. - Brett On Thu, 11 Nov 2004 09:44:08 -0500, Juan Alv

Re: escapeText

2004-11-11 Thread Brett Porter
We have upgraded Jelly on CVS HEAD and it seems to be working, so you should be able to drop this all into Maven's lib directly. - Brett On Thu, 11 Nov 2004 09:26:03 -0500, Ben Anderson <[EMAIL PROTECTED]> wrote: > Is there anyway I can "insert" the latest version of jelly into maven > manually?

Re: [RESOLVED]: Maven Remote Repository 7 SSL

2004-11-11 Thread Brett Porter
I think the JRE looks for jssecacerts, so if you renamed and added the "s", the extra options should not be needed. If they are needed, you could add them to MAVEN_OPTS env var instead of modifying the script. Cheers, Brett On Thu, 11 Nov 2004 12:47:26 -0500, Haile, Mussie <[EMAIL PROTECTED]> w

Re: checkout question

2004-11-11 Thread Brett Porter
I'm not sure why you have the code in a pregoal, instead of just putting it in the goal, but that's a different issue. The default location of checkout is target/checkouts/... You should refer to the SCM plugin documentation: http://maven.apache.org/reference/plugins/scm/properties.html On Thu,

Re: Maven classloader breaks URLs

2004-11-11 Thread Brett Porter
I'd have to look closer to understand this and see whether it is a real problem or not, but a possible workaround is to have your tests in a forked JVM? maven.junit.fork=true - Brett On Thu, 11 Nov 2004 12:51:13 +0100, Daniel Frey <[EMAIL PROTECTED]> wrote: > Hello > > I am using a method Shar

Re: javac ... -source 1.3

2004-11-11 Thread Brett Porter
That's stange, because the plugin no longer has .source or .target set by default. Can you please run maven --info to find the java plugin version you are using (there should only be one hopefully!), and check your ~/build.properties and any other properties files in the project for specification

Re: problem with maven scm:perform-release

2004-11-11 Thread Brett Porter
is it possible that the checked out project extends a project not within the check out? - Brett On Thu, 11 Nov 2004 15:15:46 -0500, Juan Alvarado <[EMAIL PROTECTED]> wrote: > I am trying to run > > maven scm:perform-release -Dmaven.scm.cvs.sticky.tag=$buildVersion > -Dmaven.scm.cvs.module=$modu

Re: maven and ssh

2004-11-11 Thread Brett Porter
I have seen similar on cygwin but have been unable to correct it. In general, I have not been able to reproduce it consistently. It may be worth checking for an update to SSH and SCP to see if that helps. Thanks, Brett On Thu, 11 Nov 2004 15:43:43 -0500, Jason Roscoe <[EMAIL PROTECTED]> wrote:

Re: javac ... -source 1.3

2004-11-11 Thread Brett Porter
Sorry, my mistake. I was referring to a change made after the last release, which was included with Maven 1.0.1. You will need to set: maven.compile.source= This should be added as an FAQ. Cheers, Brett On Fri, 12 Nov 2004 09:24:37 +1100, Brett Porter <[EMAIL PROTECTED]> wrote: > That's stange,

Re: Propety inherithance in 1.0.1

2004-11-11 Thread dan tran
Jean-marc Create a directory called common under root, move your common_project.xml to become project.xml in that dir. Have common/project.xml to inherit root and have your subproject to inherit ../common/project.xml This works for me -D On Thu, 11 Nov 2004 13:44:00 -0500, Jean-Marc Lavoie <[

RE: Problem with was5 plugin victory (kindof)

2004-11-11 Thread Louis Burroughs
After editing the plugin.properties file to use user instead of username for each of the tasks. I still ended up changing the soap.client.props file to add a username and password. I think there is a way of passing in the username and password, but I have not yet found it. The was5 plugin is

RE: javac ... -source 1.3

2004-11-11 Thread Arnaud HERITIER
You must look at the plugin java : http://maven.apache.org/reference/plugins/java/ Arnaud > -Message d'origine- > De : Ben Anderson [mailto:[EMAIL PROTECTED] > Envoyé : jeudi 11 novembre 2004 21:13 > À : Maven Users List > Objet : javac ... -source 1.3 > > Hi, > I upgraded to maven1.0.1,

maven and ssh

2004-11-11 Thread Jason Roscoe
I am using windowsXP and downloaded openSSH, so I have ssh.exe and scp.exe. When I run maven site:deploy, it just hangs after deleting the tar file it created. When I run maven -X site:deploy, I get these errors: [exec] [VERBOSE] Current OS is Windows XP [exec] [VERBOSE] Executing 's

problem with maven scm:perform-release

2004-11-11 Thread Juan Alvarado
I am trying to run maven scm:perform-release -Dmaven.scm.cvs.sticky.tag=$buildVersion -Dmaven.scm.cvs.module=$module -Dmaven.scm.bootstrap.goals=dist and it keeps on failing: BUILD FAILED File.. /home/build/.maven/cache/maven-scm-plugin-1.4.1/plugin.jelly Element... maven:maven L

javac ... -source 1.3

2004-11-11 Thread Ben Anderson
Hi, I upgraded to maven1.0.1, but now my build is broken. The problem is we're using the javac bundled with websphere3.5.7. This javac does not have a -source option which maven is adding. I tried uninstalling 1.0.1 and reinstalling 1.0, but this didn't help. I also grepped through the plugins

maven test and eclipse.dependency=true

2004-11-11 Thread Joe Shomphe
Our current project uses a combo of eclipse + maven for editing/compiling. For the plain old java projects (no xdoclet, etc), we allow eclipse to handle compiling the source files. All dependencies for these projects are referred to with: true I was hoping that when maven -Dgoal=test multiproje

Re: Where should I put reusable test code?

2004-11-11 Thread Bent André Solheim
Hi Christopher, I have done the same thing Corey did; put the reusable test code into an own project. It has paid off so far. Depending on "how reusable" your Helper class is, you could either create a general purpose "commons-test" project, or a DataDictionaryTest project. Although it might seem

Maven classloader breaks URLs

2004-11-11 Thread Daniel Frey
Hello I am using a method SharkUtils.class.getResource to load resources for my project. The resource is lateron addressed as a file: 001 final String name = "sql/hsql/LoaderJob.olj"; 002 final URL resource = SharkUtils.class.getResource(name); 003 final String external = resource.toExternalFo

RE: Problem with was5 plugin

2004-11-11 Thread Louis Burroughs
The javadoc for the ListApplications class shows the property user While the plugin specifies username After changing the plugin property to user. I got back to my first error of the authentication failure. Louis M. Burroughs II

RE: maven and plink

2004-11-11 Thread Jason Roscoe
Ok, I got my server to authenticate me using an SSH1 key. When I run maven site:deploy, it still gets hung up at the same point, right after deleting the compress file. I'm trying go from WindowsXP to Linux. Can someone please help me out here. I've been trying to get this to work for 3 days now

RE: Problem with was5 plugin

2004-11-11 Thread Louis Burroughs
I have gotten a little closer to connecting to the appserver by passing in -Dmaven.was5.listApps.username=username -Dmaven.was5.listApps.password=password was5:listApps Instead of the more generic 'script' The error I get now is: [wasListApps] [ERROR] If one of userid or password is specifie

Propety inherithance in 1.0.1

2004-11-11 Thread Jean-Marc Lavoie
I have jus install maven 1.0.1, Thanks a lot to the team. I discovered that something seam to be working differently with inheritance. I got some subproject that extends from a project file in the parent directory. The parent directory contains a project.xml file which is used to generate the

[RESOLVED]: Maven Remote Repository 7 SSL

2004-11-11 Thread Haile, Mussie
I had to pay around with JSSE parameters and maven.bat file %MAVEN_JAVA_EXE% -Djavax.net.ssl.trustStore=%JAVA_HOME%\jre\lib\security\jssecacert -Djavax.net.ssl.trustStoreType=jks When using Keytool here is the parameters C:\Java\Sun\j2sdk1.4.2_05\jre\lib\security>keytool -import -keystore cacert

Re: mevenide with JBuilder 2005

2004-11-11 Thread Andrew Watters
Thank you very much. I don't know why I couldn't find that! Serge Huber wrote: Hi Andrew, Here you are : http://mevenide.codehaus.org/mail-lists.html Regards, Serge Huber. Andrew Watters wrote: Hi Serge Thanks for your reply. I did look for a mevenide list but couldn't find one. Could you point m

RE: Problem with was5 plugin

2004-11-11 Thread Louis Burroughs
I am running the plugin against WAS 5.0.2 on AIX. The wsadmin script takes a username and password argument, but I don't know if the plugin is using the -Dmaven.was5.script.username=username -Dmaven.was5.script.password=password arguments that I have passed in. The only guidance I have seen

RE: Problem with was5 plugin

2004-11-11 Thread Oren Berenson
I don't think you can use the plugin with wsad. Oren -Original Message- From: Louis Burroughs [mailto:[EMAIL PROTECTED] Sent: 11 November 2004 15:23 To: Maven Users List Subject: Re: Problem with was5 plugin When I run was5:listApps with the following command maven -Dmaven.was5.scrip

Re: mevenide with JBuilder 2005

2004-11-11 Thread Serge Huber
Hi Andrew, Here you are : http://mevenide.codehaus.org/mail-lists.html Regards, Serge Huber. Andrew Watters wrote: Hi Serge Thanks for your reply. I did look for a mevenide list but couldn't find one. Could you point me in the right direction please? Thanks Andrew Serge Huber wrote: Hi Andew, Yo

sshexec problem

2004-11-11 Thread erdem kilic
Hi, I want to use sshexec optinal task of ant. i downloaded i moved ant-jsch.jar file is to $ANT_HOME/lib directory. but it doesnt find sshexec class. could anyone help to me? my maven goal is this : but i get following error; BUILD FAILED File.. maven.xml Element... task

Re: mevenide with JBuilder 2005

2004-11-11 Thread Andrew Watters
Hi Serge Thanks for your reply. I did look for a mevenide list but couldn't find one. Could you point me in the right direction please? Thanks Andrew Serge Huber wrote: Hi Andew, You might want to move this question to the MevenIDE lists. Anyway I have found a bug in my class loading code because

Re: mevenide with JBuilder 2005

2004-11-11 Thread Serge Huber
Hi Andew, You might want to move this question to the MevenIDE lists. Anyway I have found a bug in my class loading code because JBuilder 2005 did some last minute changes before release. It will be corrected in the next release. Regards, Serge Huber. Andrew Watters wrote: Has anybody succeeded

Re: Problem with was5 plugin

2004-11-11 Thread Louis Burroughs
When I run was5:listApps with the following command maven -Dmaven.was5.script.username=username -Dmaven.was5.script.password=password was5:listApps The was5 plugin is trying to execute wsadmin but I am getting the following errors: was5:listApps: [wasListApps] WASX7246E: Cannot establis

RE: [ANN] Maven 1.0.1 Released

2004-11-11 Thread Darren Hartford
Bahumbug, I just say 'thanks!', give them a small break :-) -D > -Original Message- > From: Geoffrey [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 11, 2004 4:36 AM > To: [EMAIL PROTECTED] > Subject: Re: [ANN] Maven 1.0.1 Released > > > Grats :) > Nice work. > > What's the future

RE: Automating SCM plugin

2004-11-11 Thread Juan Alvarado
Bret: Thanks for your replies to my postings. One of the developers who I work with suggested that we change around the plugin.jelly file so that if the options for prepare-release are passed in it won't ask for them. What do you think?? Thanks -Original Message- From: Brett Porter [m

Re: escapeText

2004-11-11 Thread Ben Anderson
Is there anyway I can "insert" the latest version of jelly into maven manually? Isn't this the type of dependency version lagging maven set out to resolve? I'm really not trying to be an antagonist at all, I would just like to use all of Jelly's features. Thanks, Ben On Wed, 10 Nov 2004 15:50:1

RE: Problem with was5 plugin

2004-11-11 Thread Louis Burroughs
Thanks! You have allowed me to move on to new and more interesting errors. Louis M. Burroughs III, OCTO "Bowe, Bastian" <[EMAIL PROTECTED]> 11/11/2004 09:06 AM Please respond to "Maven Users List" To: 'Maven Users List' <[EMAIL PROTECTED]> cc: bcc:

RE: Problem with was5 plugin

2004-11-11 Thread Bowe, Bastian
http://maven-plugins.sourceforge.net/maven-was5-plugin/faq.html#JAVAHOME > -Original Message- > From: Louis Burroughs [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 11, 2004 3:04 PM > To: Maven Users List > Subject: RE: Problem with was5 plugin > > > JAVA_HOME is set to a runtime

Re: Problem with was5 plugin

2004-11-11 Thread Mark van Holsteijn
You have to use the IBM JVM supplied with WebSphere located at "C:\Program Files\WebSphere\AppServer\java" Cheers, Mark Louis Burroughs wrote: yes - java 1.3.1 "Oren Berenson" <[EMAIL PROTECTED]> 11/11/2004 03:57 AM Please respond to "Maven Users List" To: "Maven Users List" <[EMAI

RE: Problem with was5 plugin

2004-11-11 Thread Louis Burroughs
JAVA_HOME is set to a runtime environment external to WebSphere, do I need to set it to use the jdk provided with WebSphere for the was5 plugin to run? Louis M. Burroughs III, OCTO "Oren Berenson" <[EMAIL PROTECTED]> 11/11/2004 03:57 AM Please respond to "Maven Users List" To:

RE: Problem with was5 plugin

2004-11-11 Thread Louis Burroughs
yes - java 1.3.1 "Oren Berenson" <[EMAIL PROTECTED]> 11/11/2004 03:57 AM Please respond to "Maven Users List" To: "Maven Users List" <[EMAIL PROTECTED]> cc: bcc: Subject:RE: Problem with was5 plugin Is your JAVA_HOME set to the ibm jdk? Or

Re: jdbc driver error

2004-11-11 Thread nafise hassani
I change my paltform to linux but i still get previouse error --- nafise hassani <[EMAIL PROTECTED]> wrote: > I change the driver to Driver but I stiil get > previouse error > like this: > BUILD FAILED > > File.. D:\try\jakarta-jetspeed-2\maven.xml > > Element... sql > > Line.. 355 > >

how to transform docbook documents with Maven?

2004-11-11 Thread Feilpe Vieira Silva
Hi there, how can I use the docbook plugin to transform my docbook source documents ? do you have any example of maven.xml needed to produce PDF and HTML outputs ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

checkout question

2004-11-11 Thread Jeffrey Mutonho
I'm using maven to checkout stuff (docs) from a CVS repository and somehow a target directory is being created.I'm running maven from this directory /home/popsearch and wish to have the docs fetched and be placed in /home/popsearch/docs , like what happens with my other projects.At the moment

mevenide with JBuilder 2005

2004-11-11 Thread Andrew Watters
Has anybody succeeded in getting the mevenide working with JBuilder 2005? I have put the mevenide jar into JBuilders lib\ext folder and added project.xml to my JBuilder project but I get absolutely nothing. JBuilder sees project.xml as any other XML file. Please help! --

sshexec problem

2004-11-11 Thread erdem kilic
Hi, I want to use sshexec optinal task of ant. i downloaded jsch-0.1.18.jar and added the path.it doesnt find sshexec class. could anyone help to me? my maven goal is this : but i get following error; BUILD FAILED File.. maven.xml Element... taskdef Line.. 71 Column 91 taskd

Re: cache/repository question

2004-11-11 Thread Brett Porter
you should not share the cache directory - that would possibly corrupt the other if run at the same time. You can share the repository (you run the same risk, though it is much less likely), if you are short on disk. Just set maven.repo.local=/path/to/shared/repository in build.properties for both

cache/repository question

2004-11-11 Thread Jeffrey Mutonho
I've got a second user on my Linux box , who's also using maven to do builds.How can I stop his maven setup from downloading the plugin jars , but instead use the existing ones in ~/.maven/cache and ~/maven/repository? jeff - To

Re: jdbc driver error

2004-11-11 Thread nafise hassani
I change the driver to Driver but I stiil get previouse error like this: BUILD FAILED > File.. D:\try\jakarta-jetspeed-2\maven.xml > Element... sql > Line.. 355 > Column 39 > Class Not Found: JDBC driver com.mysql.jdbc.driver could not be loaded > Total time: 14 seconds > Finished at:

Re: jdbc driver error

2004-11-11 Thread M.-Leander Reimer
Hi, well according to the doc the mySQL driver is com.mysql.jdbc.Driver and not com.mysql.jdbc.driver (mind the capital D). Change the relevant properties and it should solve your problems. Leander nafise hassani schrieb: I change the home directory and also maven repository directory too also I

Re: jdbc driver error

2004-11-11 Thread nafise hassani
I change the home directory and also maven repository directory too also I put "mysql" driver in to maven repository This is my new "build.properties" file : # jetspeed 2 home required for build org.apache.jetspeed.project.home = D:/try/jakarta-jetspeed-2 # jetspeed required properties org.ap

Re: [ANN] Maven 1.0.1 Released

2004-11-11 Thread Geoffrey
Grats :) Nice work. What's the future timeline? Which release will support transitive dependencies? Any very rough month or year for maven 2? -- With kind regards, Geoffrey "Brett Porter" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > The maven team is pleased to announce the M

[ANN] Maven 1.0.1 Released

2004-11-11 Thread Brett Porter
The maven team is pleased to announce the Maven 1.0.1 release! http://maven.apache.org/start/download.html This release contains bugfixes since the Maven 1.0 release. In addition, all of the latest stable plugin releases are included, which include both bugfixes and some new features. We recomme

EJB Client problem ????

2004-11-11 Thread Eric Chow
Hello, If the multi-project type is EJB, when I call the goal "jar:jar", it will jar all the classes of all my EJB classes. How can I create two JAR within those EJB classes? - one jar includes all the classes (interface, home, bean) - one jarfor client only includes all the (interface and

RE: Problem with was5 plugin

2004-11-11 Thread Oren Berenson
Is your JAVA_HOME set to the ibm jdk? Oren -Original Message- From: Louis Burroughs [mailto:[EMAIL PROTECTED] Sent: 10 November 2004 21:01 To: Maven Users List Subject: Problem with was5 plugin I got this error when trying to invoke a command on the was5 plugin (version 1.2) Any sugg

Re: Where should I put reusable test code?

2004-11-11 Thread Corey Scott
Christopher, For me, I believe this is a personal preference thing, and it seems that you have given it some good thought already. With that said I thought I would tell you what I do. If its a small project/module and only 1 or 2 classes and I am feeling lazy, then I just put it in the productio

Re: maven repository location

2004-11-11 Thread Brett Porter
set the environment variable MAVEN_HOME_LOCAL or the java system property -Dmaven.home.local Make sure you use / for paths, not \ On Wed, 10 Nov 2004 22:54:41 -0800 (PST), nafise hassani <[EMAIL PROTECTED]> wrote: > Hi > how can I chage the location that maven store repository files I mean that