Re: How to access a dependency path in the pom?

2007-04-04 Thread Neil Blue
Thanks Franz, That works just great. Cheers Neil On Wednesday 04 April 2007 16:52, franz see wrote: > Good day to you, Neil , > > On top of my head, > > 1. Copy your tomcat-zip somewhere in your target ( probably using the > maven-dependency-plugin ). > 2. Set ${XXX} to the location where yo

How to access a dependency path in the pom?

2007-04-04 Thread Neil Blue
Hello, I am starting to use Cargo for functional testing in maven2. I would like to store the tomcat install zip in the local repository and then resolve the path to the dependancy as a system property in at test. For example: ... tomcat tomcat-zip 5 zip

usefile setting

2005-11-11 Thread Neil Blue
Hello, I have searched in the archive and looked at the docs, but I can't seem to find the answer to this simple question. How do I sent junit output to the console in maven 2? I need to set usefile to false. Is there a standard location where this information is recorded, such as it is with the g

eclipse:add-maven-repo problem

2005-10-27 Thread Neil Blue
Hello, I am just trying to enable maven support in eclipse, and I have used the following command: mvn eclipse:add-maven-repo -Declipse.workspace=c:/workspace This is the right location for my workspace, but the plugin creates a new directory: c:/workspaceX I am using the new Maven 2.0 install

RE: Re: Problems creating a site archetype

2005-10-26 Thread Neil Blue
le.com/Maven---Users-f178.html mail-archives.apache.org looks much different now, and they've removed the search capability to be more helpful, I guess. ..David.. -Original Message- From: Neil Blue [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 26, 2005 3:28 AM To: Maven U

RE: Re: Problems creating a site archetype

2005-10-26 Thread Neil Blue
2005 10:18 To: users@maven.apache.org Subject: Re: Problems creating a site archetype This came up a few weeks ago already, search the mailinglist. In short: you forgot to specify -DarchetypeVersion, which is default set to RELEASE. Neil Blue wrote: > Hello > > I am just looking a

Problems creating a site archetype

2005-10-26 Thread Neil Blue
Hello I am just looking at maven2 after using maven for a few years. I am trying to create a site with the command from the getting started guide: mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archet

sdocbook image pdf generation

2004-01-22 Thread Neil Blue
We are trying to include an image in a sdocbook generated pdf file, but the image does not appear. Has anyone else had success with this? Here is the docbook sample we are using: Cheers Neil - To unsub

pom:deploy / war:deploy - won't deploy?

2003-12-15 Thread Neil Blue
Hello, I have a project where I would like to deploy the pom and the war. When I ran maven pom:deploy or maven war:deploy they both said that no remote repository was set. This seemed strange as the site and jar deploy both work. So I looked at the plugin.jelly files for these plugins and saw th

DocBook example

2003-11-14 Thread Neil Blue
Hello, I have been trying a few example docbook files in maven, but so far the output from the docbok plugin does not seem to be as expected. Here is an example: Hello, world Hello, world This is my first DocBook file. from: http://opensource.bureau-cornavin.com/crash-course/hello-worl

RE: Réf. : XSL transform in Maven?

2003-11-07 Thread Neil Blue
uires a layout class org.jase.DiagLayout. Is there a way to put this on the classpath through maven? Neil -Original Message- From: Neil Blue Sent: 07 November 2003 17:12 To: Maven Users List Subject: RE: Réf. : XSL transform in Maven? Thank you that has got me started. The ant style target needs

RE: Réf. : XSL transform in Maven?

2003-11-07 Thread Neil Blue
t Subject: Réf. : XSL transform in Maven? Take a look at : http://nagoya.apache.org/eyebrowse/ReadMsg?listId=149&msgNo=3359 It may help. Nicolas "Neil Blue" <[EMAIL PROTECTED]> 07/11/2003 16:45 Veuillez répondre à "Maven Users List" Pour : <[EMAIL

XSL transform in Maven?

2003-11-07 Thread Neil Blue
Hello, I have an XML file that I would like to transform with an XSL file that I have. I can't seem to find a way to do this in Maven. Please can someone point me in the right direction. Thanks Neil - To unsubscribe, e-mail: [

ApsectJ javadoc

2003-11-07 Thread Neil Blue
Hello, I am trying to use the aspectj plugin. So far compilation is fine, however when I try to use the aspectj:ajdoc goal, I get the following error: File.. file:/home/nblue/.maven/plugins/maven-aspectj-plugin-1.1/ Element... ant:ajdoc Line.. 108 Column 56 java.lang.IllegalAccessErr

RE: Stopping a goal in the pregoal

2003-08-22 Thread Neil Blue
Thanks Nicolas, That works great! Neil -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 22 August 2003 10:46 To: Maven Users List Subject: Re: Stopping a goal in the pregoal Do a in your pregoal in the case of an error. Nicolas "Neil Blue&quo

Stopping a goal in the pregoal

2003-08-22 Thread Neil Blue
Hello, We have a goal with a pregoal set. Sometimes it is the case that after a check faild in the pregoal we do not want to run the main goal. Is there a way to prevent the goal from running? Thanks Neil - To unsubscribe, e

Artifact properties

2003-08-01 Thread Neil Blue
Ooops sorry wrong subject line! --- Hello, In the POM we have found that dependencies can have war, jar and ear properties: e.g. true What other properties can be defined for a POM dependency. Cheers Neil - To unsubscri

Overriding prereqs

2003-08-01 Thread Neil Blue
Hello, We have noticed that when we use projects with sub-projects, and a sub-project overrides a goal in the parent object. If the sub-project defined different prereqs to that of the parent, the parent prereqs still get called. Is there a way to prevent this. thanks Neil ---

Reactor basedir

2003-08-01 Thread Neil Blue
Hello, In the POM we have found that dependencies can have war, jar and ear properties: e.g. true What other properties can be defined for a POM dependency. Cheers Neil - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

RE: Junit system properties

2003-07-31 Thread Neil Blue
server.name The test:test goal will iterate through the maven.junit.sysproperties and set them for you. On Thu, 31 Jul 2003, at 14:18:14 [GMT +0100] Neil Blue wrote: > Hello, > We have some junit tests that require certain system properties to be set. > As we are running the Junit t

Junit system properties

2003-07-31 Thread Neil Blue
addition is there a way to set system properties generally in maven scripts. Thank you Neil Blue - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: accessing the dependancies in maven.xml

2003-07-16 Thread Neil Blue
pendencies: does the trick. Neil Blue wrote: > Hello, > > we are trying to access the collection of pom dependancies in the maven.xml file. Is > there a variable we can access that will give us access to the dependa

accessing the dependancies in maven.xml

2003-07-15 Thread Neil Blue
Hello, we are trying to access the collection of pom dependancies in the maven.xml file. Is there a variable we can access that will give us access to the dependancy jar information? Thanks Neil - To unsubscribe, e-mail: [EMAI

RE: J2EE project : EAR/WAR/JAR - web site generation

2003-07-14 Thread Neil Blue
These slides are missing from the site at the moment :( -Original Message- From: Ben Walding [mailto:[EMAIL PROTECTED] Sent: 13 July 2003 12:29 To: Maven Users List Subject: Re: J2EE project : EAR/WAR/JAR - web site generation I've slapped up a page on the wiki for this http://wiki.code

Stopping a goal from execting

2003-07-09 Thread Neil Blue
Hello, We are using the WAR pluging, but need to prevent the default test:test goal from running when the war:war goal is called. Is there a way to prvent a goal from executing such as overriding it or stopping the execution in a pregoal? Thanks Neil ---

Calling dist:deploy and jar:deploy from same goal causes problems

2003-07-04 Thread Neil Blue
Have set up the following goal: +--+ | Deploying project dist, jar and site | +--+ The jar:deploy runs correctly, deploying the jar to the jars directory in the remote repository. The dist:deploy g

RE: Problem with preGoal

2003-06-25 Thread Neil Blue
www: http://redverst.ispras.ru e-mail: [EMAIL PROTECTED] ICQ 740187 - Original Message - From: "Neil Blue" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAIL PROTECTED]> Sent: Tuesday, June 24, 2003 8:54 PM Subject: Problem with preGoal > > > Using MA

Problem with preGoal

2003-06-24 Thread Neil Blue
Using MAVEN_1_0_B9. I have a pre goal set up as follows: where the goal generate source will generate source code and put it in the ${maven.src.dir}/java directory. On running 'maven java:compile' for this project, the source is successfully generated, but then get the message [ec

POM variables in xdocs

2003-05-29 Thread Neil Blue
Hello, Is it possible to reference pom variables in xdocs, such as the groupId? Thanks Neil - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

project plugin dist

2003-05-27 Thread Neil Blue
Hello, I have written my first working plugin and managed to install it too with maven plugin:install. Now I just need to find how I can distribute it with my current project. Please can anyone offer some advice? Thanks Neil - T

expected release timeline?

2003-04-05 Thread Neil Blue
Hello, Is there is any guides as to when maven may be released? It seems that many people are using maven as if it was in a final release, but then again Jelly seems to be in early beta? Neil -- I am taking part in Flora London Marathon 2003 on behalf of Breakthrough Breast Cancer Please click

Re: problem finding maven-j2ee-plugin-1.1.jar

2003-04-05 Thread Neil Blue
Thank you. Kasper Nielsen wrote: David Zeleznik wrote: I am progressing with building maven from cvs, however I have hit a small problem. Maven is looking for: maven-j2ee-plugin-1.1.jar in the boot stratp, but there only seems to be snapshots available at: http://www.ibiblio.org/maven/maven/jars

problem finding maven-j2ee-plugin-1.1.jar

2003-04-04 Thread Neil Blue
Hello, I am progressing with building maven from cvs, however I have hit a small problem. Maven is looking for: maven-j2ee-plugin-1.1.jar in the boot stratp, but there only seems to be snapshots available at: http://www.ibiblio.org/maven/maven/jars/ Is this correct? Thanks Neil -- I am taking p

Re: cvs build error

2003-04-04 Thread Neil Blue
Doh! I moved terminal windows after setting it in the other one first :) thanks Neil Ben Walding wrote: Looks to me like MAVEN_HOME variable isn't set See http://maven.apache.org/start/bootstrap.html Neil Blue wrote: Hello, In an attempt to learn more about what maven is and how to use

sorry

2003-04-04 Thread Neil Blue
sorry about the double post there, mozilla is playing up at the moment. -- I am taking part in Flora London Marathon 2003 on behalf of Breakthrough Breast Cancer Please click on a link below to support me! http://www.bmycharity.com/breakthrough/event.asp?eventid=BE3CD43A-0243-44BB-A564-40A0B38C075C

cvs build error

2003-04-04 Thread Neil Blue
Hello, In an attempt to learn more about what maven is and how to use it, I am trying to build the latest version. I have got the source from cvs but I get the following error when I run the bootstrap process. [exec] ${env.MAVEN_HOME}/bin/maven: line 1: cd: ${env.MAVEN_HOME}/bin/..: No su

build problems with cvs version

2003-04-04 Thread Neil Blue
Hello, In an attempt to find out more about what maven is and how to use it, I am trying to build the latest cvs version, but I am running into trouble. When I run the bootstrap.xml I get the following error: [exec] ${env.MAVEN_HOME}/bin/maven: line 1: cd: ${env.MAVEN_HOME}/bin/..: No suc

Re: werkz or jeez documetation

2003-04-04 Thread Neil Blue
some werkz documentation here: http://werkz.werken.com/ although you normally shouldn't have to understand werkz that much if all you want to do is use maven (as opposed to hacking it). Neil Blue wrote: Hello, I am trying to get started with Maven, but I can't find any documentatio

werkz or jeez documetation

2003-04-04 Thread Neil Blue
Hello, I am trying to get started with Maven, but I can't find any documentation on werkz or jeez. Please can anyone tell me if any is available. Thanks Neil - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

RE: Maven initial project creation throws an exception and dies

2003-04-02 Thread Neil Blue
Hi Graham, I think you need to use genapp as the command e.g. maven -Dpackage=za.co.fma.patricia genapp Neil :) -Original Message- From: Graham Leggett [mailto:[EMAIL PROTECTED] Sent: 02 April 2003 15:08 To: [EMAIL PROTECTED] Subject: Maven initial project creation throws an exception