DB schema

2008-02-19 Thread Libor Kramoliš
Hello. I would like to ask what data type (length) is used for POM artifact version. I compose it from 4 properties and it looks Archiva can not index such artifact. Thanks for your work. Libor

Viewing the logfile

2008-02-19 Thread Ken Turner
While developing/testing my build processes I like to have a dynamic view of my logfile as it is produced, so I use BareTail controlled by the following lines in my ANT build file: forget exec executable=cmd.exe dir=${user.dir} failifexecutionfails=false arg value=/c / arg

Re: Release a multi modules project using Continuum

2008-02-19 Thread bfontaine
Thanks for your quick replies ! I've got a setting.xml file in the maven installation repository of my continuum server which is used when I'm lauching the release from a command line, and indeed, it doesnt seems to be used with continuum. So I gonna try your tip. I can't try it now but I will

Re: Multiple email recipients from notifiers

2008-02-19 Thread Mat Schaffer
On Feb 19, 2008, at 1:38 PM, KURT TOMETICH wrote: The only way I have gotten it to work is by adding multiple notifiers to the POM. I had problems trying to do what you are and just resorted to adding this information to the POM. Its a bit redundant looking in the POM file, but at least

RE: Multiple email recipients from notifiers

2008-02-19 Thread KURT TOMETICH
The only way I have gotten it to work is by adding multiple notifiers to the POM. I had problems trying to do what you are and just resorted to adding this information to the POM. Its a bit redundant looking in the POM file, but at least it works. Kurt From: [EMAIL PROTECTED] To:

Re: ArrayindexoutofBoundsException rewriting the Poms for release

2008-02-19 Thread Emmanuel Venisse
what is your Continuum version? On Feb 19, 2008 6:26 PM, Rafael da Silva Chiarinelli [EMAIL PROTECTED] wrote: Hi guys, I'm newbie as continuum user and a have issue here. When I try to release a project indo Continuum, it raises an ArrayOutOfBoundsException. I looked at

Re: problem with svn via https - pls help

2008-02-19 Thread Emmanuel Venisse
Continuum use the command line to launch svn so if svn command works fine with the tomcat user, it should work too from Continuum. Emmanuel On Feb 19, 2008 8:02 PM, Jens Riboe [EMAIL PROTECTED] wrote: I have problem with Continuum not not being able to checkout from svn via https, because of

Re: problem with svn via https - pls help

2008-02-19 Thread Jens Riboe
Continuum use the command line to launch svn so if svn command works fine with the tomcat user, it should work too from Continuum. That's my thought too. So, where do you suggest me looking when it doesn't? from the log I can see it executes /bin/sh -c cd /var/cache/tomcat/continuum/work svn

Re: problem with svn via https - pls help

2008-02-19 Thread Jens Riboe
OK. Thanks anyway. I could carry on with plain http access. /jens Emmanuel Venisse skrev: I'm sorry, but for the moment, I don't have ideas about it. Emmanuel On Feb 19, 2008 11:00 PM, Jens Riboe [EMAIL PROTECTED] wrote: Continuum use the command line to launch svn so if svn command

RES: ArrayindexoutofBoundsException rewriting the Poms for release

2008-02-19 Thread Rafael da Silva Chiarinelli
It is the 1.1 version. -Mensagem original- De: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Enviada:ter 19/2/2008 17:39 Para: continuum-users@maven.apache.org Cc: Assunto:Re: ArrayindexoutofBoundsException rewriting the Poms for release what is your Continuum

Re: Maven odd behavior

2008-02-19 Thread Siarhei Dudzin
AFAIK a new version of the archetype plugin just got released. Siarhei Dudzin On Feb 19, 2008 7:51 AM, Uthpala Wettewa [EMAIL PROTECTED] wrote: Hi, I just started learning Maven. Few days back I executed the command to build a project. mvn archetype:create -DgroupId=com.mycompany.app

Re: Separating the base from the installation not working

2008-02-19 Thread Martin Hoeller
On 19 Feb 2008, Martin Hoeller wrote: I'll go and file an issue with the updated documentation. Added information from this thread to issue MRM-701 [0]. hth, - martin [0] http://jira.codehaus.org/browse/MRM-701 -- Martin Höller | [EMAIL PROTECTED] *x Software + Systeme

Re: PDE Plugin

2008-02-19 Thread amit kumar
Hi! I am trying to use maven-pde-plugin but without any success. When I do mvn install to a plug in project, maven-pde-plugin is not able to resolve the pom.xml's dependencies. I am unable to locate any relevant document over net. Could someone please help me? It has been continuously 2nd day

Re: What format is recommended for documentation when using mvn site ?

2008-02-19 Thread Lukas Theussl
Doxia has a LaTeX sink [1] (which works reasonably well btw), but no parser, so you can't write your site docs in LaTeX. (btw the maven1 plugin was deprecated a long time ago because it never worked that well IIRC.) Finally, the upcoming doxia-beta-1 release will have much improved pdf

Re: What format is recommended for documentation when using mvn site ?

2008-02-19 Thread Rune Flobakk
About LaTeX support in Maven 2. While this is not exactly what you are asking for, I still thought I'd mention a small and simple plugin I have started on that can be used to include BibTEX references in a Maven 2 site: http://boss.bekk.no/bibliography-maven-plugin/ It currently has only very

RE: Mavenide NetBeans

2008-02-19 Thread John Coleman
I got this when I tried to install from the contents of the mavenide-AU-SNAPSHOT... Missing required modules for Plugin NetBeans Maven2 ArchetypeNG: Maven Embedder library [module org.codehaus.mevenide.nbmvnembedder/3 3.1] NetBeans Maven2 project support [module org.codehaus.mevenide.netbeans/3

Re: Local repository not downloading Eclipse plugins from the internal repository

2008-02-19 Thread Papapara Tudu
Wendy Smoak-3 wrote: No pluginRespositories ? You'll need to repeat the repository as a pluginRepository if you want Maven to check it for plugins. Also check the repository metadata for the Eclipse plugin. Plugins won't work unless the metadata contains the 'release' and 'latest'

Re: What format is recommended for documentation when using mvn site ?

2008-02-19 Thread Arne Styve
Do you know anything about the LaTeX plugin that used to be supported in Maven1 ? LaTeX seams to be the favoured format for scientific documentation still, and it would be nice if this was supported By the way, what SW do you use to read these mailing lists ? Arne I've also seen

Maven-jar-plugin customization

2008-02-19 Thread Julien FOROT
Hi ! I want to make 2different jars from the same source folder. So I made this structure : - jar -- pom.xml -- src -- heavyJar --- pom.xml -- lightJar --- pom.xml I want that the heavy and light Jar used the folder src as sourceFolder. The light Jar has to exclude

Re: Maven-jar-plugin customization

2008-02-19 Thread [EMAIL PROTECTED]
Julien FOROT schrieb: Hi ! I want to make 2different jars from the same source folder. So I made this structure : - jar -- pom.xml -- src -- heavyJar --- pom.xml -- lightJar --- pom.xml I want that the heavy and light Jar used the folder src as sourceFolder.

Re: PDE Plugin

2008-02-19 Thread Dan Tran
pde-maven-plugin does not know about your declared dependencies in pom.xml. Every thing must still going thru the eclipse way. -D On Feb 19, 2008 12:50 AM, amit kumar [EMAIL PROTECTED] wrote: Hi! I am trying to use maven-pde-plugin but without any success. When I do mvn install to a plug in

Re: PDE Plugin

2008-02-19 Thread amit kumar
Oh Ok. But how to inform pde-maven-plugin about the declared dependencies? I mean is there any configuration that I am missing? Thanks and regards, Amit On Feb 19, 2008 3:57 PM, Dan Tran [EMAIL PROTECTED] wrote: pde-maven-plugin does not know about your declared dependencies in pom.xml.

Re: PDE Plugin

2008-02-19 Thread Dan Tran
The question here is how do you want pde plugin to consume your pom's dependencies thru a way that eclipse can understand? I maven-dependency-plugin to copy my dependencies to a place that eclispe's pde can pick up. -D On Feb 19, 2008 2:42 AM, amit kumar [EMAIL PROTECTED] wrote: Oh Ok. But how

Re: Mavenide NetBeans

2008-02-19 Thread Milos Kleint
I have filed it as bug against netbeans: http://www.netbeans.org/issues/show_bug.cgi?id=127716 a workaround for the time being is 1. uninstall and remove all maven modules from your installation (Tools/Plugins dialog should do) 2. download the

Re: Release a multi modules project using Continuum

2008-02-19 Thread bfontaine
Thanks for your quick replies ! I've got a setting.xml file in the maven installation repository of my continuum server which is used when I'm lauching the release from a command line, and indeed, it doesnt seems to be used with continuum. So I gonna try your tip. I can't try it now but I will

how set manifestEntries with maven-assembly-plugin

2008-02-19 Thread Rex Huang
I use maven-assembly-plugin instead of maven-jar-plugin, because I want to create a binary distribution with all runtime dependencies. but I don't know how set manifestEntries with maven-assembly-plugin. and also I wonder if the sunfire-test is test the jar file that I repackaged with

Re: Maven-jar-plugin customization

2008-02-19 Thread Rex Huang
maybe you should use maven-assembly-plugin http://maven.apache.org/plugins/maven-assembly-plugin/ Rex On Feb 19, 2008 11:53 AM, Julien FOROT [EMAIL PROTECTED] wrote: Hi ! I want to make 2different jars from the same source folder. So I made this structure : - jar -- pom.xml -- src

A question about the user list

2008-02-19 Thread amit kumar
Hi, I am confused on how to reply to a thread that was there even before I subscribed to this user list? Can someone please help me on that? Regards, Amit

RE: Mavenide NetBeans

2008-02-19 Thread John Coleman
I tried your script below, removed the Maven plugin and all related Maven category items. When I load NB6 up again it is not recognising Maven projects. Have I deleted too much perhaps? John -Original Message- From: Milos Kleint [mailto:[EMAIL PROTECTED] Sent: 19 February 2008 10:27

Re: A question about the user list

2008-02-19 Thread [EMAIL PROTECTED]
amit kumar schrieb: Hi, I am confused on how to reply to a thread that was there even before I subscribed to this user list? Can someone please help me on that? Most of the apache lists are archived by Nabble. If you have a Nabble account then you can just click on the archived message to

Re: Mavenide NetBeans

2008-02-19 Thread Milos Kleint
please check that the folder name created (mevenide) matches what you have in the written in the etc/netbeans.clusters file.. Milos On Feb 19, 2008 3:21 PM, John Coleman [EMAIL PROTECTED] wrote: I tried your script below, removed the Maven plugin and all related Maven category items. When I

Maven2 / Archiva / Informations about artifacts

2008-02-19 Thread Julien Stern
Hi list, I'm using Maven2 and Archiva. I'm looking for a way to programatically perform the following (or at least to be able to call it from a CLI): 1) Obtain the available versions of an artifact in my Archiva 2) Retrieve the latest SNAPSHOT of a given version of an artifact from the

Re: A question about the user list

2008-02-19 Thread amit kumar
Thank you. I would look into the Nabble option. On Feb 19, 2008 7:55 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: amit kumar schrieb: Hi, I am confused on how to reply to a thread that was there even before I subscribed to this user list? Can someone please help me on that? Most of

Re: Maven2 / Archiva / Informations about artifacts

2008-02-19 Thread VUB Stefan Seidel
For 2), use a simple pom that declares a dependency on the artifact, using version[0,)/version, then you can use the maven-dependency-plugin to do whatever you want with it. For 1) I don't know. regards, Stefan Julien Stern wrote: Hi list, I'm using Maven2 and Archiva. I'm looking for a

Re: Where to put example code

2008-02-19 Thread Wayne Fay
Set up 2 modules with a shared parent, and inherit versions from the parent. Make one module api and the other example. Set a dependency in example to api. Project structure will look like: parent\pom.xml parent\api\pom.xml parent\example\pom.xml Wayne On 2/19/08, Richard Chamberlain [EMAIL

RE: Maven-jar-plugin

2008-02-19 Thread John Coleman
please ignore this thread - issue resolved Eurobase International Limited and its subsidiaries (Eurobase) are unable to exercise control over the content of information in E-Mails. Any views and opinions expressed may be personal to the sender and are not necessarily those of Eurobase.

Re: Maven2 / Archiva / Informations about artifacts

2008-02-19 Thread Julien Stern
On Tue, Feb 19, 2008 at 04:30:36PM +0100, VUB Stefan Seidel wrote: For 2), use a simple pom that declares a dependency on the artifact, using version[0,)/version, then you can use the maven-dependency-plugin to do whatever you want with it. Thank you for your reply. Do you know if I can do

[ANN] JavaCC Maven Plugin 2.4 Released

2008-02-19 Thread Benjamin Bentmann
The Mojo team is pleased to announce the release of the JavaCC Maven Plugin version 2.4. Among various bug fixes, especially for JTB, the primary focus of this release is simplified plugin configuration. For example, two new goals have been added that allow to execute JJTree/JTB and JavaCC in a

Windows path length limitation

2008-02-19 Thread KURT TOMETICH
Is there a way to configure Continuum to checkout project from Subversion using an absolute path instead of a relative path? This would solve the path limitation issue on Windows. I ran into the problem where the path was too long and was able to verify that if I checked out the project

RE: Surefire 2.4.1 classpath order

2008-02-19 Thread Ben Lidgey
-Original Message- From: Dan Fabulich [mailto:[EMAIL PROTECTED] Sent: 18 February 2008 22:23 To: Maven Users List Subject: RE: Surefire 2.4.1 classpath order [snip] Looks like we'll need to try some more debugging. :-) 1) If you run mvn -X you'll see lots of useful debugging

Where to put example code

2008-02-19 Thread Richard Chamberlain
Hi all, My project is an API for 3rd parties to use. My source and test are in standard locations, however I want to have some example usage code that gets compiled to a separate artefact. I would put them in a separate projects; however the example and the API are always the same version. What

Maven-jar-plugin

2008-02-19 Thread John Coleman
The following config doesn't seem to configure the manifest file proeprly... plugin artifactIdmaven-jar-plugin/artifactId configuration archive manifest

Re: Windows path length limitation

2008-02-19 Thread Olivier Lamy
Try to configure Build Output Directory and Working Directory to c:\\bd and c:\\wd Go to the configuration entry of the administration menu [1] -- Olivier [1] http://maven.apache.org/continuum/docs/1.1/administrator_guides/configuration.html 2008/2/19, KURT TOMETICH [EMAIL PROTECTED]: Is

Re: Nexus repository manager

2008-02-19 Thread Jason van Zyl
Went well, not a hiccup for the small audience of 20. We're going to giving the next rev to some clients, and folks in the oss community to bang away on and if nothing craters we hope to release a version this week. As I've said before the base version will be OSS, but we are going to be

RE: Surefire 2.4.1 classpath order

2008-02-19 Thread Ben Lidgey
From: Dan Fabulich [mailto:[EMAIL PROTECTED] 2) Try pulling down our classpath-order test project here: http://svn.apache.org/repos/asf/maven/surefire/trunk/surefire- integration-tests/src/test/resources/classpath-order http://tinyurl.com/3csqca Run mvn test and confirm that you see the

ArrayindexoutofBoundsException rewriting the Poms for release

2008-02-19 Thread Rafael da Silva Chiarinelli
Hi guys, I'm newbie as continuum user and a have issue here. When I try to release a project indo Continuum, it raises an ArrayOutOfBoundsException. I looked at Jira(http://jira.codehaus.org/browse/MRELEASE-236) and seems that it has a fix in order to solve this bug. Where I can download

Multiple email recipients from notifiers

2008-02-19 Thread Mat Schaffer
I'm trying to have a notifier (defined in pom.xml) to email multiple recipients after a build in continuum. But comma-seperated lists don't seem to work on continuum 1.1. CONTINUUM-860 marks it as fixed in 1.1-alpha1, but I can't find anything in svn addressing it. What's the right way

Re: Maven + Subversion directory structure

2008-02-19 Thread Mathieu Lemay
Hi Chris I'm doing the Maven plugin for Globus right now to build and create the GARs.. ;) that's perfect!! I probably can be of assistance...I have a meeting in 2 mins I'll write a little more later.. Chris wrote: I'm migrating a number of projects and modules to Maven. I'm confused on

Maven + Subversion directory structure

2008-02-19 Thread Chris
I'm migrating a number of projects and modules to Maven. I'm confused on how the directories should be set up. Maven wants this: /projectname /module0 /src /module1 /src Subversion wants this: /root /projectname

Re: Maven + Subversion directory structure

2008-02-19 Thread John Coleman
Seems like you have a fundamental misunderstanding of what Maven is for. Maven is a build tool, similar to Ant. The structure that Maven wants is a conventional way to setup your project so that Maven can build it with minimal fuss. A Maven repo and a Subversion repo are two different

unable to skip tests help!

2008-02-19 Thread Neeraj Joshi
Hi All, I am trying to disable execution of unit tests for a project as follows project . dependencies .. /dependencies build plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-surefire-plugin/artifactId configuration

problem with svn via https - pls help

2008-02-19 Thread Jens Riboe
I have problem with Continuum not not being able to checkout from svn via https, because of a SSL cert validation error. Provider message: The svn command failed. Command output: --- svn: PROPFIND request failed on

Re: Maven + Subversion directory structure

2008-02-19 Thread Chris
Umm, no. This question has nothing to do with repositories. It has to do with the directory structure on the development machines. John Coleman wrote: Seems like you have a fundamental misunderstanding of what Maven is for. Maven is a build tool, similar to Ant. The structure that Maven

Re: Maven + Subversion directory structure

2008-02-19 Thread John Coleman
Sorry, that wasn't clear from your original post. Branches, tags, and trunk do not belong in a Maven directory structure, rather the Maven directory structure belongs in the branches/tags/trunk: /root /project /trunk /src /test /module0 /src

Re: unable to skip tests help!

2008-02-19 Thread Manuel Jesús Recena Soto
Hi. Try this: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-surefire-plugin/artifactId configuration skiptrue/skip /configuration /plugin Regards. 2008/2/19, Neeraj Joshi [EMAIL PROTECTED]: Hi All, I am trying to disable

Re: How can I disable maven download source-code and javadoc for dependency jars?

2008-02-19 Thread Dennis Lundberg
youhaodeyi wrote: My maven will try to download all the dependency jars including source-code and javadoc. There are many errors for downloading source-code and javadoc. How can disable maven to download them? What command are you using when this happens? To the best of my knowledge,

Re: Handling webapp dependencies

2008-02-19 Thread Tomasz Pik
On Feb 19, 2008 9:56 PM, Chris [EMAIL PROTECTED] wrote: We have two webapps. One is the basic app, and one is the enhanced version of the same app. In our current setup, when we want to run the enhanced app we copy the basic app into /webapps/mywebapp, then we overwrite the directory with

release scm changes

2008-02-19 Thread Ben Tatham
Is there a way in the release plugin to have it not change the scm urls? Or at least put them back as they were on the trunk? I want the trunk to keep the urls of the trunk, instead of changing it to tags/project-version everytime. And this change seems to be inconsistent. Does anyone

Handling webapp dependencies

2008-02-19 Thread Chris
We have two webapps. One is the basic app, and one is the enhanced version of the same app. In our current setup, when we want to run the enhanced app we copy the basic app into /webapps/mywebapp, then we overwrite the directory with the files from the enhanced app. This is necessary because

Re: release scm changes

2008-02-19 Thread Dennis Lundberg
Ben Tatham wrote: Is there a way in the release plugin to have it not change the scm urls? Or at least put them back as they were on the trunk? I want the trunk to keep the urls of the trunk, instead of changing it to tags/project-version everytime. And this change seems to be

Re: release scm changes

2008-02-19 Thread Ben Tatham
Perhaps it is failing the release then, which explains the periodic nature of tags being left in the scm urls. Shouldn't release:clean supposed to clean this up? Or is that what release:rollback is for? Do you know since what version release:rollback has been available? I tried it a

LDAP problem

2008-02-19 Thread Lucas Gonçalves
I configured security.properties for authenticate from ldap # # ldap settings # ldap.user.store.enabled=true ldap.bind.authenticator.enabled=true # ldap options

Re: Maven + Subversion directory structure

2008-02-19 Thread Chris
Thanks. This seems like the right answer. John Coleman wrote: Sorry, that wasn't clear from your original post. Branches, tags, and trunk do not belong in a Maven directory structure, rather the Maven directory structure belongs in the branches/tags/trunk: /root /project /trunk

Re: release scm changes

2008-02-19 Thread Dennis Lundberg
Ben Tatham wrote: Perhaps it is failing the release then, which explains the periodic nature of tags being left in the scm urls. Shouldn't release:clean supposed to clean this up? clean will only clean up locally. If you made it half way into a release, clean will remove all temp files used

Re: maven, archiva, and hibernate

2008-02-19 Thread Benjamin Scribner
Lee, thank you for your response. I will try to clarify a bit. We are using archiva as a proxy to the following maven repositories: http://repository.atlassian.com/maven2 http://repo1.maven.org/maven2/ http://developer.ja-sig.org/maven2 http://download.java.net/maven/2/ We just recently set up

Re: unable to skip tests help!

2008-02-19 Thread Neeraj Joshi
Hi Manuel, I tried your suggestion however I am still facing the same issue... doing mvn install still ends up running the tests :( Any other ideas? Thanks Neeraj ps I am running mvn 2.0.8 Try this: plugin groupIdorg.apache.maven.plugins/groupId

maven appends sub-project artifactId to urls

2008-02-19 Thread Jens Riboe
I have an organization POM, with common defs, including url templates for scm and distribution. Here are the relevant snippets, from the parent pom scm connectionscm:svn:https://www.ribomation.com/svn/pub/${project.name}/trunk/connection

[m208] testng error when no clean

2008-02-19 Thread Mick Knutson
I used the supplied tutorial: http://maven.apache.org/plugins/maven-surefire-plugin/examples/testng.html I have the dependancy set as shown. *here is My plugin:* plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-surefire-plugin/artifactId

Good Project Structure for Web Services?

2008-02-19 Thread Mathieu Lemay
Hello everyone, I'm struggling at getting a good structure for webservice packages. From the WSDL Java stubs will be created therefore should the structure be: parent -client -stubs -service where parent also contains the schemas and WSDL files as well as any server-config.wsdd , or

filtering of archetype resources

2008-02-19 Thread Laurie Harper
How do I package resources in an archetype so that they don't get filtered through Velocity when the archetype is used? Currently Velocity is choking on Javascript files contained in the archetype, and I'd rather not have to modify all the Javascript files so they will pass through Velocity

Re: Good Project Structure for Web Services?

2008-02-19 Thread Michael McCallum
simple question for you so this structure looks 'nice'... what do you do when you have 2 webservices? 3? 4? now you have that in you head look at your poms... where is the duplication? in the configuration of the plugins in each of the so called children. if you have a parent of client and

Re: How can I disable maven download source-code and javadoc for dependency jars?

2008-02-19 Thread youhaodeyi
Hi, Dennis I know what wrong. I work with eclipse and the setting of eclipse is to download source code and java doc. Now I disabled it in eclipse. I just wander how to enable download source code and java-doc in mvn command. Dennis Lundberg-2 wrote: youhaodeyi wrote: My maven will try to

Re: Good Project Structure for Web Services?

2008-02-19 Thread Mathieu Lemay
Thanks alot Michael, Indeed that makes quite alot of sense especially since we have 15 grid services that we want to migrate. I had thought of creating a single parent pom but that is probably more acurate as client deps are not the same as service/stubs deps. However since I'm writing the

Does Maven dependency only work with jar?

2008-02-19 Thread youhaodeyi
I have some *.class files in a directory. I know I can make them into a jar file and add it to the dependency of Maven, but I don't want to package them. How can I set the dependency in Maven to add this directory to classpath? -- View this message in context:

How can I package source code without run test?

2008-02-19 Thread youhaodeyi
This command: mvn package will compile the source code and run the test before packaging. How can I disable the test? -- View this message in context: http://www.nabble.com/How-can-I-package-source-code-without-run-test--tp15580805s177p15580805.html Sent from the Maven - Users mailing list

RE: How can I package source code without run test?

2008-02-19 Thread Adrian Shum
You may try -Dmaven.test.skip=true -Original Message- From: youhaodeyi [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 20, 2008 10:11 AM To: users@maven.apache.org Subject: How can I package source code without run test? This command: mvn package will compile the source code

RE: How can I package source code without run test?

2008-02-19 Thread youhaodeyi
It seems like using maven properties. Where can I get all the properties maven can use? Adrian Shum-2 wrote: You may try -Dmaven.test.skip=true -Original Message- From: youhaodeyi [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 20, 2008 10:11 AM To:

Re: Good Project Structure for Web Services?

2008-02-19 Thread Michael McCallum
my ws1 and ws2 were conceptual... i would have ws1 - client - services - gar the gar project would be a new packaging that created an assembly from the bits and pieces required e.g. (making things up but hopefully you get the idea) configuration

Re: How can I disable maven download source-code and javadoc for dependency jars?

2008-02-19 Thread youhaodeyi
Since the maven repository doesn't store many source code and java-docs, there are a lot of errors when maven try to download these. How can let maven to download them without show the errors if they are not available. Michael McCallum-3 wrote: mvn dependency:resolve and mvn

Re: How can I disable maven download source-code and javadoc for dependency jars?

2008-02-19 Thread Michael McCallum
mvn dependency:resolve and mvn dependency:sources On Wed, 20 Feb 2008 13:51:44 youhaodeyi wrote: Hi, Dennis I know what wrong. I work with eclipse and the setting of eclipse is to download source code and java doc. Now I disabled it in eclipse. I just wander how to enable download source code

Re: How can I package source code without run test?

2008-02-19 Thread nicolas de loof
maven.test.skip is a property use by the surefire plugin (maven test runner). Each maven plugin can define it's properties. http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html Nico 2008/2/20, youhaodeyi [EMAIL PROTECTED]: It seems like using maven properties. Where can I get

Re: unable to skip tests help!

2008-02-19 Thread [EMAIL PROTECTED]
Neeraj Joshi schrieb: Hi All, I am trying to disable execution of unit tests for a project as follows project . dependencies .. /dependencies build plugins plugin groupIdorg.apache.maven.plugins/groupId