Problem with the BuildNumber plugin

2009-03-13 Thread Dave Rathnow
I've been trying to get my project to build using Hudson running as a Window service but I keep getting an "authorization failed" when my BuildNumber plugin tries to perform an "svn update". Could someone tell my why this is happening? Below is a snippet from the output generated by running Maven

Customizing manifest with ear-plugin

2009-02-04 Thread Dave Rathnow
Could someone explain, or point me to a place that documents, how to customize the manifest using the Maven2 ear-plugin? Thanks Dave

Re: Problems with SCM:UPDATE on linux with Subversion.

2008-08-28 Thread W. Dave Rathnow
We have a number of projects that are built from a single POM file that contains a much of . To build the project I just enter "mvn goal" and whatever goal is specified is applied to each project. However, the scm plugin does not seem to work this way. When I enter "mvn scm:update", only the cu

Re: Problems with SCM:UPDATE on linux with Subversion.

2008-08-25 Thread Dave Rathnow
I found the problem. I had copied my settings.xml file from a windows box and did not remove a entry. It had specified root as the account to use for this particular machine. I removed it and everything works fine now. Dave Rathnow wrote: > > I seem to be having problems rec

Re: Problems with SCM:UPDATE on linux with Subversion.

2008-08-25 Thread Dave Rathnow
? IF it happened to be "su USERNAME" > from root, you would still have root's environment. > > Other than that, the only reason I can think of is that root is > specified in the SCM URL. > > - Brett > > 2008/8/23 Dave Rathnow <[EMAIL PROTECTED]>: >>

Problems with SCM:UPDATE on linux with Subversion.

2008-08-22 Thread Dave Rathnow
I'm having a problem with SCM plugin on Linux. I've checked out a project from Subversion using my personal account and then tried to do an scm:update. Rather than using the account I am logged in as, the plugin is using root and so the command failes. Below is a snipped from the log: [IN

RE: General question about how to use Maven to build and deploy

2007-09-21 Thread Dave Rathnow
for > the same. > > Farhan. > > > to my knowledge most of the people are currently using or ant or other > scripts > > On 9/21/07, Dave Rathnow <[EMAIL PROTECTED]> wrote: > > So I've now got Maven to build my jars, wars, and ears, it installs > >

General question about how to use Maven to build and deploy

2007-09-21 Thread Dave Rathnow
So I've now got Maven to build my jars, wars, and ears, it installs them in my local repository and deploys to my remote repositories. But what do I do now? In order to run and test my apps, I have to manualy copy files to the appropriate directories, which seems a bit primative for such a complex

Maven install:install-file not working for sources

2007-09-19 Thread Dave Rathnow
Could someone tell me how to install sources into the repository? As far as I can make out from the doc, the following command should work: mvn install:install-file -DgroupId=myGroupId-DartifactId=myArtifactId -Dfile=myArtifact-1.0-sources.jar -Dversion=1.0 -Dpackaging=jar -DgeneratePom=true -Dc

RE: Maven install:install-file not working for sources

2007-09-19 Thread Dave Rathnow
y get automatically installed when "mvn install" is called. Wayne On 9/19/07, Dave Rathnow <[EMAIL PROTECTED]> wrote: > Could someone tell me how to install sources into the repository? As > far as I can make out from the doc, the following command should work: > > m

RE: Maven install:install-file not working for sources

2007-09-19 Thread Dave Rathnow
e suggested above. Wayne On 9/19/07, Dave Rathnow <[EMAIL PROTECTED]> wrote: > > Nope. That doesn't work. These are separater sources that I got with > the download off the web. They are not sources from my project. > > Dave > > -Original Message- > Fr

RE: Question about maven-war-plugin

2007-09-19 Thread Dave Rathnow
--Original Message----- From: Dave Rathnow [mailto:[EMAIL PROTECTED] Sent: 19 September 2007 17:15 To: Maven Users List Subject: Question about maven-war-plugin I've been able to use the war plugin to build a war file under the "target" directory of my project using the "pac

Question about maven-war-plugin

2007-09-19 Thread Dave Rathnow
I've been able to use the war plugin to build a war file under the "target" directory of my project using the "package" goal. It also creates a couple of other files, including a jar file. However, when I try to use the install to put it into my local repository, it appeares as though it is cop

How do I share test classes between projects?

2007-03-09 Thread Dave Rathnow
I'm new to Maven and have been working with if for a few days. I've been reading through the documentation but haven't found the answer to this question. I have two projects A and B with testing classes in both. The test classes in B Inherit from classes in A and they also use fixtures f