RE: [SOOT] Maven IDE

2003-12-10 Thread hermod . opstvedt
Hi I guess we all know where you are comming from now :) Hermod -Original Message- From: Jason van Zyl [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 3:29 PM To: Maven Users List Subject: RE: [SOOT] Maven IDE On Wed, 2003-12-10 at 07:52, [EMAIL PROTECTED] wrote: > Hi all

Re: MAVEN_HOME and MAVEN_HOME_LOCAL

2003-12-10 Thread Stephen McConnell
Jason van Zyl wrote: On Wed, 2003-12-10 at 10:34, Stephen McConnell wrote: Product: Maven 1.0-rc1 MAVEN_HOME = /java/maven MAVEN_HOME_LOCAL = During a build, it seems that Maven will ignore MAVEN_HOME when it copies the result to the repository cache. Instead it copies to ${user.home}/.mav

Re: Where to specify site:deploy target directory

2003-12-10 Thread dion
-- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ [EMAIL PROTECTED] wrote on 11/12/2003 11:23:31 AM: > > I'd like to know if anyone knows where the name of deployment directoy can be > specified for the site:generate goal. > > I've specified maven.site.

RE: ejb-jar generation pb with the ejb Maven's plugin

2003-12-10 Thread enghoe
I used to have the same problem as you. Then I realised that's because of my misunderstanding of maven.ejb.src. The property does not refers to the source files of your EJBs. It actually refers to the files that are required to build your EJB jar. That is, your ejb-jar.xml, your manifest.mf an

Re: Where to specify site:deploy target directory

2003-12-10 Thread Jefferson K. French
You can specify it in project.xml with the element. Jeff On Wed, 10 Dec 2003, at 19:23:31 [GMT -0500] [EMAIL PROTECTED] wrote: > I'd like to know if anyone knows where the name of deployment directoy can be > specified for the site:generate goal. > I've specified maven.site.deploy.method=fs

Where to specify site:deploy target directory

2003-12-10 Thread Vikram_Kumar
I'd like to know if anyone knows where the name of deployment directoy can be specified for the site:generate goal. I've specified maven.site.deploy.method=fs in project.properties -Vikram - To unsubscribe, e-mail: [EMAIL PR

Re: AttainGoal question

2003-12-10 Thread Peter Donald
On Thu, 11 Dec 2003 03:10 am, Lester Ward wrote: > Can anyone tell me what the difference is between running a goal from the > command line vs. having that goal called by an tag? Over the > last few days, I've seen three problems where I could run a goal just fine > from a command line, but if the

Re: war:deploy

2003-12-10 Thread Charles N. Harvey III
Ok. I did need to read the documentation a little bit. I have been through a lot of it over the past 5 days though. Ok, so I had set but I did not have . So I added and still got the same error when I ran war:deploy. There must be something else I am missing. I'll keep checking out the refer

Re: war:deploy

2003-12-10 Thread Jefferson K. French
You want and . Here is documentation on the POM: http://maven.apache.org/reference/project-descriptor.html. There is a lot of documentation at the Maven site: http://maven.apache.org/. Look under the "Reference" tab on the left. Jeff On Wed, 10 Dec 2003, at 15:33:08 [GMT -0500] Charles N. Har

Re: MavenTagLibrary class not found

2003-12-10 Thread Tim Chen
I just did the same thing and didnt receive any errors. Are you sure you're using a clean copy of Maven? (Make sure to blow out the .maven directory as well in your user.home directory -Tim Jason van Zyl wrote: On Wed, 2003-12-10 at 13:10, Brice Copy wrote: Hi, I launched : maven genapp Cho

war:deploy

2003-12-10 Thread Charles N. Harvey III
Hello. I am having a tough time with war:deploy. When I run it I get the following: No remote repository was defined. No remote repository was defined. Which, is actually pretty clear. It means that I don't have a remote repository defined in my project.xml. But I don't know where to define the

Including javascript in xdocs

2003-12-10 Thread David Garnier
Hi, Is there any way to include javascript in the xdocs? I've have tried to use the and tags, but it broke the site.jsl script (I use 1.0-RC1). Is there a fix for this somewhere? Another idea? I would really like to be able include some Javascript in my pages. If it is not possible, then is th

Re: FTP

2003-12-10 Thread Kevin Hagel
be sure to include commons-net in your dependencies. - Original Message - From: "Michael Dunn" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Wednesday, December 10, 2003 9:51 AM Subject: FTP > I have been trying to use Maven to do an FTP and it says the following

Re: MavenTagLibrary class not found

2003-12-10 Thread Jason van Zyl
On Wed, 2003-12-10 at 13:10, Brice Copy wrote: > Hi, > > I launched : maven genapp > > Chose all the default inputs and got the project.xml, > projects.properties and sample java. Everything seemed okay to me. > > Then launched : maven java:compile > > I got the exact same result. > Where can

Re: MavenTagLibrary class not found

2003-12-10 Thread Brice Copy
Hi, I launched : maven genapp Chose all the default inputs and got the project.xml, projects.properties and sample java. Everything seemed okay to me. Then launched : maven java:compile I got the exact same result. Where can I expect to find : org.apache.maven.jelly.tags.project.MavenTagLibra

FTP

2003-12-10 Thread Michael Dunn
I have been trying to use Maven to do an FTP and it says the following in my maven.log Any suggestions? Thanks, Mike 2003-12-10 12:49:51,505 WARN org.apache.commons.jelly.tags.ant.AntTag - Could not convert tag: ftp into an Ant task, data type or property 2003-12-10 12:49:51,521 WARN or

Re: Is it possible to keep unit tests in the same directories as production classes?

2003-12-10 Thread Chad Woolley
Hi, I had another idea on how I could approach this. Would it be possible to set up some sort of global initialization goal which would manually copy all the test classes to the separate test directory structure defined to maven, and then proceed with the normal maven goals? This definitely s

Re: MavenTagLibrary class not found

2003-12-10 Thread Jason van Zyl
On Wed, 2003-12-10 at 12:26, Brice Copy wrote: > Hello, > > I downloaded and installed Maven 1.0rc1, then created a dummy project > following the project descriptor in the user guide. > When I try to attain simple goals like "java:compile", I get the > following exception stack : > > java.lang.

MavenTagLibrary class not found

2003-12-10 Thread Brice Copy
Hello, I downloaded and installed Maven 1.0rc1, then created a dummy project following the project descriptor in the user guide. When I try to attain simple goals like "java:compile", I get the following exception stack : java.lang.ClassNotFoundException: org.apache.maven.jelly.tags.project.Ma

RE: AttainGoal question

2003-12-10 Thread Jason van Zyl
On Wed, 2003-12-10 at 11:56, Lester Ward wrote: > > Currently doesn't share the same session in > > which the rest of the goals are attained. > > How might this session be different? Does it use a different classpath? Load > plugins differently? It's the werkz session which keeps track of which

RE: AttainGoal question

2003-12-10 Thread Lester Ward
> Currently doesn't share the same session in > which the rest of the goals are attained. How might this session be different? Does it use a different classpath? Load plugins differently? - To unsubscribe, e-mail: [EMAIL PROTEC

Re: MAVEN_HOME and MAVEN_HOME_LOCAL

2003-12-10 Thread Jason van Zyl
On Wed, 2003-12-10 at 10:34, Stephen McConnell wrote: > Product: Maven 1.0-rc1 > > MAVEN_HOME = /java/maven > MAVEN_HOME_LOCAL = > > During a build, it seems that Maven will ignore MAVEN_HOME when it copies the > result to the repository cache. Instead it copies to ${user.home}/.maven First of

Re: AttainGoal question

2003-12-10 Thread Jason van Zyl
On Wed, 2003-12-10 at 11:10, Lester Ward wrote: > Can anyone tell me what the difference is between running a goal from the > command line vs. having that goal called by an tag? Over the > last few days, I've seen three problems where I could run a goal just fine > from a command line, but if the

AttainGoal question

2003-12-10 Thread Lester Ward
Can anyone tell me what the difference is between running a goal from the command line vs. having that goal called by an tag? Over the last few days, I've seen three problems where I could run a goal just fine from a command line, but if the same goal was invoked from an tag, various strange erro

RE: [SOOT] Maven IDE

2003-12-10 Thread Jason van Zyl
On Wed, 2003-12-10 at 10:54, Sonnek, Ryan wrote: > There is no doubt in my mind that JSR 198 will be one of the biggest flops > since the formation of the JCP. LOL Yah, I think it's just going to funnel in on itself. I know personally of a JSR that is being rushed because of financial concerns.

RE: [SOOT] Maven IDE

2003-12-10 Thread Sonnek, Ryan
There is no doubt in my mind that JSR 198 will be one of the biggest flops since the formation of the JCP. Especially since it's motto to "standardize plugins across IDE's" lacks the support of all major IDEs (eclipse). BEA has even stated that the JCP should rethink its approach to JSR's and FIR

MAVEN_HOME and MAVEN_HOME_LOCAL

2003-12-10 Thread Stephen McConnell
Product: Maven 1.0-rc1 MAVEN_HOME = /java/maven MAVEN_HOME_LOCAL = During a build, it seems that Maven will ignore MAVEN_HOME when it copies the result to the repository cache. Instead it copies to ${user.home}/.maven Internally in Avalon Merlin, we have a resolution of; maven.home.local ->

Re: no more google on the web page

2003-12-10 Thread Jason van Zyl
On Wed, 2003-12-10 at 04:39, [EMAIL PROTECTED] wrote: > Could someone tell me why the Google search has been removed from the site > homepage ? > I found it very usefull when looking for a specific property or plugin. I removed it because it was ugly and visually distracting. I didn't want it smac

Re: error in multiproject:site

2003-12-10 Thread Mikael Lundgren
Hi! Did you define maven.multiproject.includes in your project.properties/build.properties in your root project? It should looks something like maven.multiproject.includes=modules/moduleA/project.xml,modules/moduleB/project.xml,modules/moduleC/project.xml or if you want to save some characters: ma

error in multiproject:site

2003-12-10 Thread Dan Pomohaci
Hello, My project have the following structure: project - modules - moduleA - moduleB - moduleC If I run "maven site" from every module the result is OK but if I run from project "maven multiproject:site" the result is: -- maven-

no more google on the web page

2003-12-10 Thread julien . kirch
Could someone tell me why the Google search has been removed from the site homepage ? I found it very usefull when looking for a specific property or plugin. Thanks This message and any attachments (the "message") is intended solely for the addressees and is confidential. If you receive thi

RE: [SOOT] Maven IDE

2003-12-10 Thread Jason van Zyl
On Wed, 2003-12-10 at 07:52, [EMAIL PROTECTED] wrote: > Hi all > > I think perhaps you should look into what is going on with JSR 198 > before you make any commitments. My guess is that will be taken up in > most popular Java-based IDEs. No thanks, at this point in time I have no interest in JSRs

RE: ejb-jar generation pb with the ejb Maven's plugin

2003-12-10 Thread Stéphane Philippart
If a remove the maven.ejb.src=${basedir}/src line it's work. But i am confused of the use of the propertie maven.ejb.src, i thought it was the root of the source files of my EJBs but it seems it is the source root of the ressource files for may EJBs. Wrong ? -Original Message- From: Sté

Need help getting jcoverage to work

2003-12-10 Thread VLADIMIR TERZIC
i am using eclipse with maven and i get errors when i try to run jcoverage on my project. (i guess i should mention that i am able to run clover maven task just fine) i have my source in src/java and my test source code in src/test i don't have any jcoverage properties set and when i try to run

RE: Réf. : ejb-jar generation pb with the ejb Maven'splugin

2003-12-10 Thread Stéphane Philippart
Even i don't modify the maven.build.dir properties it creates the ejb-jar in the directory ../target but always with my source files ! So it's appear that is not the reason of my problem but now i can run the maven clean goal ! ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Réf. : ejb-jar generation pb with the ejb Maven's plugin

2003-12-10 Thread Nicolas . CHALUMEAU
> maven.build.dir=${basedir} Your maven src dir is in your build dir ! I advice you to NEVER try to do a maven:clean. It is probably the reason of your problem. Why don't you use a standard project structure ? Nicolas - To uns

ejb-jar generation pb with the ejb Maven's plugin

2003-12-10 Thread Stéphane Philippart
Hello everybody, I use Maven since few days and i try to create an ejb-jar using the ejb:ejb command. The generation and compilation are fine but when i open the ejb-jar created there is my sources (all *.java files) and my compiled clases (that is normal !). Obviously i dont't want the sources

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 exc

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 exc

RE: [SOOT] Maven IDE

2003-12-10 Thread hermod . opstvedt
Hi all I think perhaps you should look into what is going on with JSR 198 before you make any commitments. My guess is that will be taken up in most popular Java-based IDEs. Hermod -Original Message- From: Jeffrey Bonevich [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 2:37

Re: [SOOT] Maven IDE

2003-12-10 Thread Jeffrey Bonevich
Jason van Zyl wrote: On Tue, 2003-12-09 at 19:19, Jeffrey Bonevich wrote: Jason - Saw your post on Maven Dairies regarding Maven IDE. http://blogs.codehaus.org/projects/maven/archives/000276.html Just curious, what is a 'Maven IDE' and what would the relationship be with mevenide project? I'

Re: multiproject home page

2003-12-10 Thread Jeffrey Bonevich
with the exception of navigation,xml, but that one is a "special case" AFAIK. jeff [EMAIL PROTECTED] wrote: btw, xdocs aren't run through velocity. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Nathan Coast <[EMAIL PROTECTED]> wrote on 10/12/2003 07:41

Re: multiproject home page

2003-12-10 Thread dion
btw, xdocs aren't run through velocity. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Nathan Coast <[EMAIL PROTECTED]> wrote on 10/12/2003 07:41:50 PM: > Hi, > > should it be possible to generate an index page with sub-project descriptions > when doi

Re: multiproject home page

2003-12-10 Thread dion
Do you mean the 'overview page'? It's not well documented, but see the properties page of the multiproject plugin for details on the properties to include, and use: maven-multiproject-plugin -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Nathan Coa

maven junit plugin: errorProperty and failureProperty

2003-12-10 Thread Thomas Tatzel
Hello, could someone explain me if it is possible to use the "errorProperty" and the "failureProperty" of the ANT JUnit target also in Maven and if so, how? Thanks Thomas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

multiproject home page

2003-12-10 Thread Nathan Coast
Hi, should it be possible to generate an index page with sub-project descriptions when doing a multiproject:site. In the parent project of the multiproject I added this to the xdocs/index.xml ComponentDescription #foreach ($reactorProject in $reactorProjects)

RE: Need help getting jcoverage to work

2003-12-10 Thread GONNOT boris
I had encountered a problem with the Jcoverage plugin. I do not know if it's related but my problem was due to inner class. The plugin failed during report generation (I patch the plugin to solve it). -Message d'origine- De : VLADIMIR TERZIC [mailto:[EMAIL PROTECTED] Envoyé : mercredi