Re: How to set "maven.home.local" to different drive on windows?

2004-10-25 Thread Moritz Petersen
Argh. Stupid me. That's what happens if a mac os x user works on windows... -Mo. On Mon, 25 Oct 2004 13:07:13 +0200, Jörg Schaible <[EMAIL PROTECTED]> wrote: > Moritz Petersen wrote on Monday, October 25, 2004 12:54 PM: > > > > > Hello, > > > >

How to set "maven.home.local" to different drive on windows?

2004-10-25 Thread Moritz Petersen
Hello, I'd like to set "maven.home.local" to a different drive on my windows machine. How is it possible? Just setting maven.home.local = D:\Maven doesn't work. Thank you, -Mo. - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

Re: upload file plugin?

2004-10-16 Thread Moritz Petersen
If it doesn't help to copy the file into the xdocs folder (afaik, every file inside this folder is copied to the site, except .xml files), you can use every Ant task (e.g. scp). -Mo. On Sat, 16 Oct 2004 18:10:26 -0400, Adam Fisk <[EMAIL PROTECTED]> wrote: > Hi Everyone- > > I'm looking for a pl

Re: Maven/Junit: printing test failure/error stack trace to stdout

2004-09-22 Thread Moritz Petersen
Hi Omair, two suggestions: 1.) All test reports are placed into target/test-reports. There you'll find more information about the tests. 2.) Use the JUnit plugin of your favourite IDE or the JUnit testrunner during development. Using Maven for each test has too long development cycles. Those pug

Re: Ann: Mavenzilla

2004-09-15 Thread Moritz Petersen
I would have been surprised, if noone else had such an idea. But the best thing is, that this web application is a lot faster than Mavenzilla (although MZ is not programmed for speed... ;-) ). -Mo. On Thu, 16 Sep 2004 10:53:44 +0900, otsuka <[EMAIL PROTECTED]> wrote: > Try http://maven.ozacc.com

Re: Ann: Mavenzilla

2004-09-15 Thread Moritz Petersen
Yes, that's right. For Eclipse you could also run "maven eclipse", which wouldn't start a complete build, but just downloads missing artifacts and creates the eclipse project files. -Mo. On Wed, 15 Sep 2004 23:47:26 +0200, Gilles Dodinet <[EMAIL PROTECTED]> wrote: > downloading *makes* sense :

Re: Ann: Mavenzilla

2004-09-15 Thread Moritz Petersen
lles Dodinet <[EMAIL PROTECTED]> wrote: > is it yet a search tool or a real browser ? a remote repo browser, > capable of downloading dependencies, would be a very helpful. if you > dont mind we could integrate it into mevenide ? > > -- gd > > > > Moritz Pe

Ann: Mavenzilla

2004-09-15 Thread Moritz Petersen
Mavenzilla is a browser for Maven repositories. http://jface.sourceforge.net/mavenzilla/ To be honest: it is currently in a very early development stage, and more a prototype than a real application. The question is: is a repository browser neccessary / useful, or am I missing a point with Maven?

Re: XDoclet, Struts and Maven: Where to start? SOLUTION

2004-01-08 Thread Moritz Petersen
Thanks a lot, Regards, Steve Stephen Gargan, IT Engineer [EMAIL PROTECTED] Tel: (858) 658-3418 -----Original Message- From: Moritz Petersen [mailto:[EMAIL PROTECTED] Sent: Sunday, November 16, 2003 9:33 AM To: Maven U

Re: Encoding urls in navigation.xml

2004-01-03 Thread Moritz Petersen
Thank you for your reply. I didn't want to use filtering, so I created a raw HTML file (not xdoc) with a tag containing the URL. That works for me. So, the navigation.xml references the HTML file. Bye, Moritz. Am 02.01.2004 um 17:11 Uhr schrieb [EMAIL PROTECTED]: hmm this sounds like http

Encoding urls in navigation.xml

2004-01-02 Thread Moritz Petersen
Hi, this must be a trivial problem, but I don't find the solution. I need a similar URL in the navigation.xml as: http://www.acme.com?a=b&c=d"/> Problem is the "&" character in the URL. By parsing the file, a "&c;" entity is expected. My workarounds were to replace the "&" with "&" and "

Re: Some Maven Questions?

2003-12-25 Thread Moritz Petersen
Am 25.12.2003 um 0:02 Uhr schrieb <[EMAIL PROTECTED]>: Hi, I have the following maven questions: 1) How does one create a maven remote repository? It is nothing else, than a usual http webserver. 2) How does one properly add a 3rd party jar(s) to the maven remote repository? Create a folder

Re: issues in viewing generated docs in maven

2003-12-24 Thread Moritz Petersen
This is a question regarding your webserver configuration, so it is not easy to answer without knowing your machine's specs. Another way is to change the location of transformed xdocs. Create a file called 'project.properties' in your project root and add the property 'maven.docs.dest=C:\deepak

Re: XDoclet, Struts and Maven: Where to start? SOLUTION

2003-11-16 Thread Moritz Petersen
xdoclet-xdoclet-module xdoclet 1.2b4 jar -Mo. Am 15.11.2003 um 20:59 Uhr schrieb Moritz Petersen: Hi Konstantin, you gave me very helpful pointers, thank you! But I still can't get it work. I must have mis

Re: XDoclet, Struts and Maven: Where to start?

2003-11-15 Thread Moritz Petersen
Hi Konstantin, you gave me very helpful pointers, thank you! But I still can't get it work. I must have missed something very obvious. A look into plugin.jelly discovered: ... ... So, I added the property maven.xdoclet.webdoclet.strutsconfigxml.0=true maven.xdoclet.webdoclet.strutscon

Re: XDoclet, Struts and Maven: Where to start?

2003-11-15 Thread Moritz Petersen
Am 15.11.2003 um 10:08 Uhr schrieb Moritz Petersen: Hi List, I need to work with the XDoclet Maven Plugin to generate struts-config.xml. Does anyone else have experience with that? I took a look at the XDoclet and XDoclet-Maven-Plugin, as well as in the xdoclet-apache-module source code, but di

XDoclet, Struts and Maven: Where to start?

2003-11-15 Thread Moritz Petersen
Hi List, I need to work with the XDoclet Maven Plugin to generate struts-config.xml. Does anyone else have experience with that? I took a look at the XDoclet and XDoclet-Maven-Plugin, as well as in the xdoclet-apache-module source code, but did not find real pointers how to start. Is there a t

Re: How to use Ant's FTP task from Maven?

2003-09-15 Thread Moritz Petersen
> > > > > but when I ran it, I got: > > " taskdef class > org.apache.tools.ant.taskdefs.optional.net.FTP cannot > be found" > > Is there anything else that I need to do? > > Thank you. > >

Re: How to use Ant's FTP task from Maven?

2003-09-15 Thread Moritz Petersen
Hi, you need to define the task first. Take a look at the checkstyle plugin, where the task is defined as follows: Using ${checkstyleProperties} for checkstyle ...

Re: Two problems with test plugin

2003-09-03 Thread Moritz Petersen
Ah, great. That works. Thank you! Should I post to JIRA to get the bug fixed? -Mo. Am Mittwoch, 03.09.03, um 21:02 Uhr (Europe/Berlin) schrieb Andy Jefferson: On Wednesday 03 Sep 2003 19:42, Moritz Petersen wrote: Second problem -- BUILD FAILED File.. file:/Users/mpetersen

Two problems with test plugin

2003-09-03 Thread Moritz Petersen
Hi all! I have two problems with the maven test plugin (maven-test-pugin-1.3) of the maven beta-10 binary distribution. Both problems occur on different projects. First problem - File.. file:/Users/mpetersen/.maven/plugins/maven-test-plugin-1.3/ Element... junit Line.. 64 Co

Re: WEB Application Structure

2003-07-31 Thread Moritz Petersen
See the war plugin docs for more information. -Mo. Am Donnerstag, 31.07.03, um 10:19 Uhr (Europe/Berlin) schrieb Bateman, Patrick eMEDIA: I can't find any documentation or an example of how to structure a WEB application within a Maven project. Can I simply place a WEB-INF under the src/java di

Re: What does dev mean in jar name?

2003-07-28 Thread Moritz Petersen
Something like "still under DEVelopment", but there was a discussion on the maven list about using -dev or -SNAPSHOT, and the snapshot handling in Maven does a great job to generate "under development" versions. -Mo. On Monday, July 28, 2003, at 00:23AM, Dave Ford <[EMAIL PROTECTED]> wrote:

Re: Problem with beta-10 and java:jar-resources again

2003-07-27 Thread Moritz Petersen
Hi Michael, Am Sonntag, 27.07.03, um 13:10 Uhr (Europe/Berlin) schrieb Michal Maczka: 1. Don't keep your resources in src/java Why not? It's what Eclipse expects and automatically puts into the classpath... 2. Do something like: Ah! That's the problem. The documentation is not correct. The t

Problem with beta-10 and java:jar-resources again

2003-07-27 Thread Moritz Petersen
This was discussed before, but the solution did not fit my problem. The resources are not copied to the target/classes directory. When I run maven -X java:jar-resources, I notice, that ---%<- [DEBUG] Adding reference: maven.jar.resources.set -> patternSet{ includes: [] excl

Mavenizing Cocoon

2003-07-17 Thread Moritz Petersen
I just started a Cocoon based project and realized that the Cocoon 2.0.4 project is still not mavenized. In this e-mail I describe how I mavenized cocoon. I would like to hear some suggestions and comments about my procedure. First I realized that Cocoon 2.0.4 contains about 57 libraries (not al