Generate maven.log

2004-07-28 Thread Eric Chow
Hello, How to generate maven.log in Maven 1.0 ??? Eric == If you know what you are doing, it is not called RESEARCH! == - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

file:// protocol not working for remote repsoitory in 1.0

2004-07-28 Thread Peter Anning
Hi all, We have a remote repository located on a Windows file server. The repository could be accessed using the file: protocol in maven rc2 upgrading to 1.0 seems to have broken this. I have tested it by putting the jar in question behind a local http server and it works. build.properties

Re: file:// protocol not working for remote repsoitory in 1.0

2004-07-28 Thread Arto Pastinen
Hi! Have you tried to put url something like this: file:lonfs02... Artsi On Wed, 2004-07-28 at 09:31, Peter Anning wrote: Hi all, We have a remote repository located on a Windows file server. The repository could be accessed using the file: protocol in maven rc2 upgrading to 1.0

Re: file:// protocol not working for remote repsoitory in 1.0

2004-07-28 Thread Peter Anning
On Wed, 28 Jul 2004 13:16:03 +0300, Arto Pastinen wrote Hi! Have you tried to put url something like this: file:lonfs02... Artsi On Wed, 2004-07-28 at 09:31, Peter Anning wrote: Hi all, We have a remote repository located on a Windows file server. The repository could be

Re: file:// protocol not working for remote repsoitory in 1.0

2004-07-28 Thread Peter Anning
Yes. Going back to rc2 fixes this. On Wed, 28 Jul 2004 13:16:03 +0300, Arto Pastinen wrote Hi! Have you tried to put url something like this: file:lonfs02... Artsi On Wed, 2004-07-28 at 09:31, Peter Anning wrote: Hi all, We have a remote repository located on a Windows

Global Variable Scope

2004-07-28 Thread Jörn Gebhardt
Hi, does there exists any global context where I can set and read some variables that are accessible from everywhere in my build? I have a multi-project build with many reactor calls and if I set a variable during the build of o sub-project I cannot access it in the parent project build. I

Re: file:// protocol not working for remote repsoitory in 1.0

2004-07-28 Thread Dennis Lundberg
Two things: 1. There is one slash (/) to many in your file-URL. Try this: maven.repo.remote=file:///lonfs02/EBJAVA/repository,http://www.ibiblio.org/maven,http://dist.codehaus.org,http://www.codeczar.com/maven 2. If that doesn't work you can enter a drive-letter, like this:

Re: file:// protocol not working for remote repsoitory in 1.0

2004-07-28 Thread Bent Andre Solheim
Hi, thought I would just share my experiences; file:///c:/lonfs02/EBJAVA/repository/, that is three forward slashes, has always worked for me. maven.repo.remote=file:///C:/lonfs02/EBJAVA/repository,http://www.ibiblio.org/maven,http://dist.codehaus.org,http://www.codeczar.com/maven Regards

Re: Generate maven.log

2004-07-28 Thread Matt Kurjanowicz
See FAQ: http://maven.apache.org/faq.html#where-is-maven-log The log4j.properties file is located in $MAVEN_HOME/lib/maven.jar Unpack that jar, change the log4j.properties file to what you'd like, then re-pack the jar. HTH, Matt On Wed, 28 Jul 2004 15:43:53 +0800, Eric Chow [EMAIL PROTECTED]

Re: Global Variable Scope

2004-07-28 Thread Dion Gillard
${systemScope.put('finalOutput','value')} as long as they're all running in one VM. On Wed, 28 Jul 2004 12:50:51 +0200, Jörn Gebhardt [EMAIL PROTECTED] wrote: Hi, does there exists any global context where I can set and read some variables that are accessible from everywhere in my build? I

RE: file:// protocol not working for remote repsoitory in 1.0

2004-07-28 Thread Maczka Michal
-Original Message- From: Peter Anning [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 8:32 AM To: [EMAIL PROTECTED] Subject: file:// protocol not working for remote repsoitory in 1.0 Hi all, We have a remote repository located on a Windows file server. The

Maven DBUnit 1.3 Plugin Release

2004-07-28 Thread Dion Gillard
The maven-plugins team is pleased to announce the Dbunit Plug-in 1.3 release! http://maven-plugins.sourceforge.net A plugin to automate Dbunit tasks Changes in this version include: Changes: o Use dbunit v2.1 To automatically install the plugin, type the following on a single line:

Maven WebSphere 5.0/5.1 plugin release

2004-07-28 Thread Dion Gillard
The maven-plugins team is pleased to announce the WebSphere 5 (5.0/5.1) Plugin 1.0 release! http://maven-plugins.sourceforge.net/maven-was5-plugin/ A plugin to manage a WebSphere AppServer 5/5.1 artifacts and installation Changes in this version include: New Features: o Add reinstallApp

Re: file:// protocol not working for remote repsoitory in 1.0

2004-07-28 Thread Dion Gillard
It's because it's a malformed URL and the 'host' is assumed to be C: On Wed, 28 Jul 2004 16:18:16 +0200, Maczka Michal [EMAIL PROTECTED] wrote: -Original Message- From: Peter Anning [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 8:32 AM To: [EMAIL PROTECTED]

RE: file:// protocol not working for remote repsoitory in 1.0

2004-07-28 Thread Maczka Michal
-Original Message- From: Dion Gillard [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 5:30 PM To: Maven Users List Subject: Re: file:// protocol not working for remote repsoitory in 1.0 It's because it's a malformed URL and the 'host' is assumed to be C: Possibly.

using different project.xml

2004-07-28 Thread Heiko Kundlacz
Hi all I have seen a parameter maven --pom and want to use different project.xml (project_product1.xml and so on). Maven --help says: -p,--pom arg Set project file But it won't be used. Does anybody of you have some experience with such a problem? Heiko

test dependency in war goal

2004-07-28 Thread March, Andres
I have read the archive about people who wanted to bypass tests in certain goals like war. I was wondering what came of this. I don't exactly want to bypass them but I would like to set a test.failonerror property = false when running war. I believe in always testing but this inflexibility (if

Re: using different project.xml

2004-07-28 Thread Heiko Kundlacz
Sorry for my Mail. It works fine. Hopefully nobody has wasted time, because of my stupid posting :o) Heiko Heiko Kundlacz wrote: Hi all I have seen a parameter maven --pom and want to use different project.xml (project_product1.xml and so on). Maven --help says: -p,--pom arg Set

RE: test dependency in war goal

2004-07-28 Thread Matt Read
How about: maven.test.failure.ignore=true ? -Original Message- From: March, Andres [mailto:[EMAIL PROTECTED] Sent: 28 July 2004 17:30 To: Maven Users List Subject: test dependency in war goal I have read the archive about people who wanted to bypass tests in certain goals

How can I override the currentversion from the POM?

2004-07-28 Thread Chad Woolley
Hi, I want to be able to override the currentversion that is used when I do a build. I attempted to do this, but it seems that the pom currentversion property cannot be changed. My goal is to use the version that is provided in a property by my continuous integration tool (anthill). Is this

Re: How does work maven:reactor?

2004-07-28 Thread Philippe Monnet
Eugene, You do not need to specify your projects dependencies inside maven.xml. Instead follow this approach: 1.Create a master project e.g. myproject 2.Create a project.xml for myproject 3.Add project1, project2, and project3 as subdirectories of myproject 4.Modify the project.xml of

Re: How can I override the currentversion from the POM?

2004-07-28 Thread Erik Husby
Chad Woolley wrote: Hi, I want to be able to override the currentversion that is used when I do a build. I attempted to do this, but it seems that the pom currentversion property cannot be changed. My goal is to use the version that is provided in a property by my continuous integration tool

Anthill Pro and Maven Site Publishing

2004-07-28 Thread Chad Woolley
Hi, Does anyone out there use Anthill Pro with Maven to manage the automatic publishing of their Maven-generated site to the Anthill Intranet? There seem to be some hardcoded stuff in the maven site:deploy goals which make this difficult. I have written some postGoal hacks, but they are ugly,

Problem running Reactor

2004-07-28 Thread Roberto Castro
Hi, I've been facing a problem when Maven runs Reactor in my project. Although Reactor shows an exception, It manages to determine the correct subprojects order. But, I'd like to run Maven without any error message. I have only one project.properties file in the master project and no

RE: Problem running Reactor

2004-07-28 Thread Carlos Sanchez
Hi, It's a known issue reported in JIRA. Id shouldn't be printed if don't run maven with -e or -X options. Regards Carlos Sanchez A Coruña, Spain Oness Project http://oness.sourceforge.net -Original Message- From: Roberto Castro [mailto:[EMAIL PROTECTED] Sent: Wednesday, July

Re: Anthill Pro and Maven Site Publishing

2004-07-28 Thread Jefferson K. French
Chad, I use AnthillOS and Maven, but publish to a different location and have an entry in navigation.xml that points to the Anthill build logs. Since you can specify the host and directory to which Maven deploys the site, can you not just deploy the site to the Anthill publishDir? Jeff On