RE: Maven-Proxy error

2006-09-14 Thread Adrian Shum
Just throw away configs for Maven1 repositories in the maven proxy properties file. Adrian -Original Message- From: emerson cargnin [mailto:[EMAIL PROTECTED] Sent: Thursday, September 14, 2006 2:11 AM To: Maven Users List Subject: Maven-Proxy error Hi all to use maven-proxy with

StarTeam support in Maven 2

2006-09-14 Thread Roman Gelfand
Hello, Im new in Maven 2. So, I would be very grateful if you could you help me to start implementation of StarTeam support in my Maven system. Thank you in advance, Roman __ This email has been

RE: Cargo deploy on to a remote machine

2006-09-14 Thread Vincent Massol
Hi Prashanth, As it has been suggested, please use the cargo mailing list if you need more information and help. Note that I've also answered to you already on this list... :-( Thanks -Vincent -Original Message- From: Prashanth Krishnamurthy [mailto:[EMAIL PROTECTED] Sent: mercredi

maven2 / xdoclet plugin and strutsconfigxml

2006-09-14 Thread Marco Mistroni
hi all, i have a webapp where i want to generete the struts-config.xml i am currently using maven2, my action class is as follows /** * @struts.action name=contactForm path=/editPerson scope=request * validate=false input=mainMenu * * @struts.action-forward *name=success *

Continuum svn update suddenly not working

2006-09-14 Thread Geoffrey De Smet
I am suddenly getting this e-mail from Continuum: Build Error: Provider message: The svn command failed. Command output:

Re: Update over scm-local does not delete files removed from source dir

2006-09-14 Thread Emmanuel Venisse
ArneD a écrit : Emmanuel Venisse wrote: Are you sure it isn't possible to checkout sources in a specific folder with cleartool? It is possible with snapshot views. My ClearCase know-how is limited, but I am quite sure it is not possible with dynamic views. Do you think the suggested

Java project dependent on a dll

2006-09-14 Thread Markus KARG
We are running Maven 2 and need to use some third party Java component. That component actually is delivered as a windows .dll file, since it is implemented in a native way by JNI. So we do not have the c++ source code but only the .dll. The dll is needed for both, compilation and runtime. How

Re: Java project dependent on a dll

2006-09-14 Thread dan tran
upload your dll to your internal repo. At build time, use maven-dependency-plugin to copy it ( without version ) to your designated place. -Dan On 9/14/06, Markus KARG [EMAIL PROTECTED] wrote: We are running Maven 2 and need to use some third party Java component. That component actually

xdoclet2 maven2 plugin not resolving

2006-09-14 Thread neilblue
Hello, I have been using xdoclet2 in maven2 for a few months now, but I have just found a problem when a new developer has joined our team and tried to build the maven project. It is unable to find the xdoclet2 maven2 plugin. Has the repository changed as my local .m2/repository can still

Re: Java project dependent on a dll

2006-09-14 Thread Markus KARG
I am a beginner with Maven 2. Can you please be so kind and post me the lines how to do that? Or can you please give me an URL where to find a guide for that? Thanks a lot Markus dan tran schrieb: upload your dll to your internal repo. At build time, use maven-dependency-plugin to copy it (

uniqueVersion property accessible during deploy ?

2006-09-14 Thread Pete
Is there a way of referencing the date timestamp that is appended to artifacts during a deploy ? e.g. my_ear-1.0-20060912.160818-730.ear Can I reference something like ${uniqueVersion} ? - To unsubscribe, e-mail: [EMAIL

Class-Path: ?

2006-09-14 Thread Markus KARG
I have added a dependency to FOP-0.20.5 (from the maven main repository) to my project, using compile scope. I can compile and package my jar. But in the jar there is no Class-Path: fop-0.20.5.jar entry created by mvn, so at runtime java -jar my.jar will fail since it doesn't know where to

EJB Client JAR

2006-09-14 Thread Markus KARG
Using Maven2's ejb package, I was able to create an ejb-jar from my sources. But not I want Maven to create an EJB Client JAR, that only contains the interfaces, and make another JAR dependent of that EJB Client JAR (by means of Class-Path: entry in MANIFEST.MF). How to do that? begin:vcard

need my Mojo to execute a CVS status command - help

2006-09-14 Thread Pete
Could any of you guys help with the code I would need to put in my MOJO to execute a cvs command. The command is cvs status -v filename which isn't supported by maven-scm-providers-cvs. I see there is a AbstractCvsStatusCommand but this issues a cvs update I believe. Is there a way I can

Multi-module project in continuum

2006-09-14 Thread Richard Abbuhl
We have some CVS modules which are maven2 projects: acme-web, acme-upload, and acme-ear. I want to create a new CVS module called acme-pom which will recusively build these projects in continuum. I know that I need to add a parent directive to each of these modules: parent

Re: Class-Path: ?

2006-09-14 Thread Max Bowsher
Markus KARG wrote: I have added a dependency to FOP-0.20.5 (from the maven main repository) to my project, using compile scope. I can compile and package my jar. But in the jar there is no Class-Path: fop-0.20.5.jar entry created by mvn, so at runtime java -jar my.jar will fail since it

Re: Class-Path: ?

2006-09-14 Thread Markus KARG
Great, thanks a lot! In fact this was exactly I was looking for! :-) Markus Max Bowsher schrieb: Markus KARG wrote: I have added a dependency to FOP-0.20.5 (from the maven main repository) to my project, using compile scope. I can compile and package my jar. But in the jar there is no

Re: Update over scm-local does not delete files removed from source dir

2006-09-14 Thread continuum
my Continuum installation is accessing a file system directory using scm-local provider to get sources (BTW, the directory is on a ClearCase dynamic view). Updates are working fine as long as files are only changed or added. But when files are removed from the source directory, they still

Re: Update over scm-local does not delete files removed from source dir

2006-09-14 Thread ArneD
Emmanuel Venisse wrote: Do you think the suggested enhancement for scm-local would be useful and make sense? Not only in combination with ClearCase dynamic views but for other usage as well, e.g. testing. yes. Do you want to implement it? Yes, I can try to do so and then provide a

Uploading to a local repository

2006-09-14 Thread hermod.opstvedt
Hi I am strugling with the deploy task after we switched servers for the local repository. When I deploy, the artifacts get deployed to my user instead of ending up in the local repository My repository url in the distributionManagement section is : scp:my-server/repository where /repository

section

2006-09-14 Thread Markus KARG
I need to add the following information to the MANIFEST.MF file of a JAR: Name: S1 N1: V1 Name: S2 N2: V2 How can I do that? I tried it this way but it doesn't work: build plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-jar-plugin/artifactId

Re: Modified WAR Plugin

2006-09-14 Thread jp4
How do you refer to the new plugin in your pom.xml file? I thought that a project of packaging typewar/type will automatically use the default war plugin... How did you override this behavior? jp4 Max Cooper wrote: My project was using a modified version of the war plugin for a while. I

Re: Update over scm-local does not delete files removed from source dir

2006-09-14 Thread Emmanuel Venisse
ArneD a écrit : Emmanuel Venisse wrote: Do you think the suggested enhancement for scm-local would be useful and make sense? Not only in combination with ClearCase dynamic views but for other usage as well, e.g. testing. yes. Do you want to implement it? Yes, I can try to do so and

2.0.5 release?

2006-09-14 Thread John Taylor
Hi all, Apologies for what is probably a FAQ, but can anyone give me an approx timescale for the 2.0.5 release? Just knowing whether it's imminent, weeks or months away would help me decide whether to invest in finding workarounds to some of the issues in 2.0.4. I'm really hoping that 2.0.5

maven-surefire-plugin not redirecting test output

2006-09-14 Thread Manish Shah
Hi there, I'd like the maven-surefire-plugin to redirect all test console output to file. I've added the following to my POM: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-surefire-plugin/artifactId version2.3-SNAPSHOT/version configuration

Re: maven repositories https

2006-09-14 Thread franz see
Douglas Ferguson wrote: My IT department just started requiring my repository to use https. However they didn’t install a signed cert. Maven is now failing with the error: Error transferring file Could this be because the cert isn’t signed? Is there anything else that I need

Re: EJB Client JAR

2006-09-14 Thread Markus KARG
Actually I don't want to do that but I want to know and do the maven-ejb-plugin way. Nevertheless, thanks a lot! Markus [EMAIL PROTECTED] schrieb: Not necessarily the maven-ejb-plugin way, but you can create a separate module for the EJB client and then add a compile dependency on the that

Re: section

2006-09-14 Thread franz see
Markus Karg wrote: I need to add the following information to the MANIFEST.MF file of a JAR: Name: S1 N1: V1 Name: S2 N2: V2 How can I do that? I tried it this way but it doesn't work: build plugins plugin groupIdorg.apache.maven.plugins/groupId

Re: Uploading to a local repository

2006-09-14 Thread Nick Veys
On 9/14/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am strugling with the deploy task after we switched servers for the local repository. When I deploy, the artifacts get deployed to my user instead of ending up in the local repository What do you mean to your user, as in

RE: EJB Client JAR

2006-09-14 Thread Daryl.Dwyer
Not necessarily the maven-ejb-plugin way, but you can create a separate module for the EJB client and then add a compile dependency on the that project in your EJB project's pom. We did this to get around the fact that using the generateClient option on the maven-ejb-plugin generates a pom for

Re: section

2006-09-14 Thread Markus KARG
Franz, are you joking? Do you see any section tags on the URLs you posted? Maybe I am blind, but I don't see any, actually. Have Fun Markus franz see schrieb: Markus Karg wrote: I need to add the following information to the MANIFEST.MF file of a JAR: Name: S1 N1: V1 Name: S2 N2: V2

Re: Multi-module project in continuum

2006-09-14 Thread Edwin Punzalan
Just the parent section inside the modules and the modules section in the parent pom will do. The modules section in the parent pom tells maven where the modules are already. Richard Abbuhl wrote: We have some CVS modules which are maven2 projects: acme-web, acme-upload, and acme-ear. I

Problem with maven repository

2006-09-14 Thread HUGOT Franck
Maven2 fails to download http://dist.codehaus.org/org.mortbay.jetty/jars/servlet-api-2.5-6.0. I don't know why M2 is looking for the file there, since the file is on Ibiblio at http://www.ibiblio.org/maven2/org/mortbay/jetty/servlet-api/2.5-6.0.0beta12/ , and this is already cached in our Maven

Apache snapshot repository use unique versions

2006-09-14 Thread Alexandre Poitras
Why is the option uniqueVersion enabled when you deploy plugins to the apache snapshot repository? This feature doesn't work and so I can't use a snapshot version of a plugin without installing it myself on a daily basic. I find it very annoying and frustrating. Any comments?

RE: Stuck ! (was Re: Doxia module)

2006-09-14 Thread Vance Karimi
This is something I really needed, so after a bit of playing, I managed to write and use a customized version of the xdoc doxia module without needing to recompile doxia, maven2 or the site plugin. The module pom contains: build plugins plugin

RE: Stuck ! (was Re: Doxia module)

2006-09-14 Thread Vance Karimi
This is something I really needed, so after a bit of playing, I managed to write and use a customized version of the xdoc doxia module without needing to recompile doxia, maven2 or the site plugin. The module pom contains: build plugins plugin

RE: Problem with maven repository

2006-09-14 Thread HUGOT Franck
I remove my proxy repository and my local repository and now I get this error : [INFO] [INFO] Building Projets Framework AMT [INFO]task-segment: [package] [INFO]

Re: Problem with maven repository

2006-09-14 Thread Alexandre Poitras
I remember there was a issue with the latest jetty pom but I could be wrong. On 9/14/06, HUGOT Franck [EMAIL PROTECTED] wrote: Maven2 fails to download http://dist.codehaus.org/org.mortbay.jetty/jars/servlet-api-2.5-6.0. I don't know why M2 is looking for the file there, since the file is on

Re: Plugins Executions

2006-09-14 Thread Edwin Punzalan
There is a phase in execution... you can put it there. Douglas Ferguson wrote: If you are define a plugin in your pom that isn’t binded to a lifecyle phase, and then add executions to the plugin. When will this execute? I was thinking that it would be great if you can define 2

Re: section

2006-09-14 Thread Hendrik Busch
Hi! Franz, are you joking? Do you see any section tags on the URLs you posted? Maybe I am blind, but I don't see any, actually. The text may not mention it, but the JavaDocs show it. You have got to abstract a little from the example and the docs. Just make your POM look like this: plugin

RE: Plugins Executions

2006-09-14 Thread Douglas Ferguson
Yeah.. I know but I was curious if you didn't define a phase. It will use the configuration when you run it on the commandline. However, what does it do if there are 2 executions that aren't bound to any phase? -Original Message- From: Edwin Punzalan [mailto:[EMAIL PROTECTED] Sent:

Packaging

2006-09-14 Thread Douglas Ferguson
I have a project that needs to generate a jar with dependencies. The jar without the deps is never needed. At first I had the project set to packaging pom and used the assembly plugin to generate my jar with deps. However, neigther works great: 1) in packaging type pom, the

Building maven-plugins project

2006-09-14 Thread Matt Raible
We've developed a warpath plugin[1] that allows you to read dependencies from a war dependency. It works great, but we're currently unable to hook into the eclipse or idea plugin for project file generation. There's two thoughts I have to solving this: 1. Modify any typewar/type dependencies

RE: maven repositories https

2006-09-14 Thread Douglas Ferguson
I ended up using scp:// because I couldn't get anything to work over https:// However, I was unable to define multiple repositories using the same id So they could share the server user pass. When you have the same id the first one wins and the others aren't picked up. Using the same id works if

Re: Building maven-plugins project

2006-09-14 Thread Mick Knutson
What will this do for me? Were would I use the WAR dependancies with this plugin? On 9/14/06, Matt Raible [EMAIL PROTECTED] wrote: On 9/14/06, Matt Raible [EMAIL PROTECTED] wrote: We've developed a warpath plugin[1] that allows you to read dependencies from a war dependency. It works

filtering web.xml with profile properties

2006-09-14 Thread ertnutler
I can't for the life of me figure out how to have the maven-war-plugin filter my web.xml with properties from my profiles. i've read this thread: http://www.nabble.com/War-plugin-and-filtering-webapp-files-t1617964.html and i've tried all the configuration options mentioned there--except

cvs command from mojo gives error

2006-09-14 Thread Pete
I am trying to use the org.codehaus.plexus.util.cli.Commandline in a mojo to run a cvs status command (which isn't supported at the mo) the command looks correct on the log, and executes fine if I cut paste into a cvs command prompt, but via CommandLineUtils.executeCommandLine( cl, consumer,

Creating a FAQ with FML format

2006-09-14 Thread Sebastien Pennec
Hello, I've created a faq using the fml format, and I just can't get to display an xml example in the answer element. Here's what I'm trying to do: (skipping some elements) answer p some blablah /p pre lt;element1gt; ... lt;param1 value=value /gt; ...

Re: Update over scm-local does not delete files removed from source dir

2006-09-14 Thread ArneD
Thanks for your answer, David. continuum-3 wrote: my Continuum installation is accessing a file system directory using scm-local provider to get sources (BTW, the directory is on a ClearCase dynamic view). Updates are working fine as long as files are only changed or added. But when

Re: EJB Client JAR

2006-09-14 Thread Markku Saarela
Configure you ejb plugin like this: build plugins plugin artifactIdmaven-ejb-plugin/artifactId inheritedtrue/inherited configuration archive manifest addClasspathtrue/addClasspath /manifest /archive

where to set -D values in pom.xml

2006-09-14 Thread Charles Harvey III
Hello. I have a multiple module project with one of the modules being the war file, the rest being jar files. When I check the project out, I want to run mvn eclipse:clean eclipse:eclipse on the top-level project so it will run the command for each sub-project. So far, so good. Except, in

where to set -D values in pom.xml

2006-09-14 Thread Charles Harvey III
Hello. I have a multiple module project with one of the modules being the war file, the rest being jar files. When I check the project out, I want to run mvn eclipse:clean eclipse:eclipse on the top-level project so it will run the command for each sub-project. So far, so good. Except, in the

Re: Creating a FAQ with FML format

2006-09-14 Thread Jeff Jensen
It is basically an xdoc doc, so use CDATA. See #9 here: http://jakarta.apache.org/site/jakarta-site2.html Quoting Sebastien Pennec [EMAIL PROTECTED]: Hello, I've created a faq using the fml format, and I just can't get to display an xml example in the answer element. Here's what I'm

Re: Creating a FAQ with FML format

2006-09-14 Thread Sebastien Pennec
Hello Jeff, Thanks for your answer. However, when I do as said in the link, here's what gets printed: ![CDATA[ appender name=SOCKET class=ch.qos.logback.classic.net.SocketAppender ... param name=remoteHost value=127.0.0.1 / ... /appender ]] The CDATA part gets printed on my html page...

Re: EJB Client JAR

2006-09-14 Thread Markus KARG
Daryl, thanks a lot for your answer once again. Indeed we managed to let the ejb packager create the client jar and now understand why you have not been using it. Actually it is scary to see all the Class-Path entries in the client... Maybe we should file a feature request. Thanks again Markus

Re: section

2006-09-14 Thread Markus KARG
Hendrik and Franz, thanks a lot for your kind help! I indeed will try out tomorrow. But please one more question: How is the relationship between javadocs and pom structure? I did not yet understand how I can guess from the javadocs to the pom structure actually. Thanks a lot! Markus Hendrik

Re: EJB Client JAR

2006-09-14 Thread Markus KARG
Markku, thanks a lot for your kind help! We will try out tomorrow! Thanks a lot Markus Markku Saarela wrote: Configure you ejb plugin like this: build plugins plugin artifactIdmaven-ejb-plugin/artifactId inheritedtrue/inherited configuration

Re: Creating a FAQ with FML format

2006-09-14 Thread Wendy Smoak
On 9/14/06, Sebastien Pennec [EMAIL PROTECTED] wrote: I've created a faq using the fml format, and I just can't get to display an xml example in the answer element. I have the same problem: http://struts.apache.org/struts-sandbox/tiles/faq.html The JSP tags should be surrounded by but I

Re: WANTED: Suggestions on performing vendor-specific builds

2006-09-14 Thread kurron
I had looked at the profile documentation but obviously not close enough. I had originally thought that it would only allow me to set properties. Upone further inspection I see that I can also modify the modules list. My current solution, for those who might care, is to create a POM-based

Running mvn at any level of a multi-level project while still using inheritance

2006-09-14 Thread Tom Hurley
Hi: I am new to Maven so this issue is probably due to a misunderstanding on my part so any help would be greatly appreciated. I have a multi-level project structure (4 levels) i.e. applications-- common -- server -- project 1

Re: Creating a FAQ with FML format

2006-09-14 Thread Jeff Jensen
Did you wrap it in the source tags? Quoting Sebastien Pennec [EMAIL PROTECTED]: Hello Jeff, Thanks for your answer. However, when I do as said in the link, here's what gets printed: ![CDATA[ appender name=SOCKET class=ch.qos.logback.classic.net.SocketAppender ... param

Re: where to set -D values in pom.xml

2006-09-14 Thread Fneuch
You have to place plugin artifactIdmaven-eclipse-plugin/artifactId configuration wtpversion1.0/wtpversion /configuration /plugin in your pom in the build section. Sylvain On 9/14/06, Charles Harvey III [EMAIL PROTECTED] wrote: Hello. I have a multiple module project with one

Re: Creating a FAQ with FML format

2006-09-14 Thread Sebastien Pennec
Yes, just like your example mentionned. Finally, I got to display the wanted chars by doing this: source foo bar /foo /source Actually, I just used source elements and put the xml in, without coding the and chars, and without using the CDATA part. Thanks for the info :) Sébastien

Re: where to set -D values in pom.xml

2006-09-14 Thread Charles Harvey III
Spectacular. Thanks so much. Charlie Fneuch said the following on 9/14/2006 1:37 PM: You have to place plugin artifactIdmaven-eclipse-plugin/artifactId configuration wtpversion1.0/wtpversion /configuration /plugin in your pom in the build section. Sylvain On 9/14/06,

Company-wide Maven repo

2006-09-14 Thread Aleksei Valikov
Hi folks, Could anyone recommend software for implementing/installing a company-wide Maven repository? maven-proxy? proximity? Pros and contras? I'd be grateful for your opinions. Bye. /lexi - To unsubscribe, e-mail: [EMAIL

Wagon providers and webdav

2006-09-14 Thread Mykel Alvis
Is there a more recent version of the Wagon Providers site documentation than http://maven.apache.org/wagon/ ? That site appears to be very under-maintained, with the project team members curiously unavailable. Michal Maczka appears to no longer have the email address listed in the site docs.

RE: Wagon providers and webdav

2006-09-14 Thread Beyer,Nathan
I assume you've tried emailing the wagon-dev list. There's very little traffic there, so no response there wouldn't be too surprising. I would suggest emailing the maven-dev list and discussing it there. In general, emailing individual contributors and committers won't get you very far. All design

Re: Wagon providers and webdav

2006-09-14 Thread Mykel Alvis
Actually, when I clicked the mailing lists, I got a broken page link and assumed it was actually broken, when it was probably just my internet connection hiccuping . That was my mistake, but you clearly don't think it's likely to get good results. I will try anyway, and at the risk of the wrath

Re: Company-wide Maven repo

2006-09-14 Thread Tamás Cservenák
Hi, it depends on Your needs... Maven-proxy is a dead meat :) You left Archiva out from the list (http://maven.apache.org/archiva/) Proximity is mere a smart and simple proxy and tool to host reposes. It is extended to recognize Maven metadata (POMs, etc). It gives you useful funcs like

RE: EJB Client JAR

2006-09-14 Thread Daryl.Dwyer
One other concern would be that in general, the EJB client generation from the same EJB module violates Maven's principle of one artifact per project/module. As I understand it today, the only benefit of using it is that it will generate a separate JAR file in the repo that can be referenced by a

RE: EJB Client JAR

2006-09-14 Thread Daryl.Dwyer
Markus, No problem. I think because of transitive dependencies, the only way they could make it work would be to qualify the dependencies which would introduce problems elsewhere. Even if the plugin did provide this feature, unfortunately for me, I don't think it would be able to accommodate

Re: EJB Client JAR

2006-09-14 Thread Markku Saarela
And you can config this ejb client jar with |clientExcludes parameter in |maven-ejb-plugin as documented here: http://maven.apache.org/plugins/maven-ejb-plugin/ejb-mojo.html Regards, Markku Markus KARG wrote: Markku, thanks a lot for your kind help! We will try out tomorrow! Thanks a lot

dependency-maven-plugin question

2006-09-14 Thread Marc Chételat ML
Hi all, I m currently migrating from Ant 1.6.5 to Maven 2.0.4 a project with multiple modules as follow : Project root path (pom.xml with each subdirectory as module) | |--- applet |--- sharedlib |--- ejbmodule-jar |--- webapp1-war |--- webapp2-war |--- finalpackage-ear |... With the help of

Macker plugin

2006-09-14 Thread Fabricio Lemos
Hello, Does anyone have an example on how to use Macker plugin? thanks in advance, Fabricio Lemos - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Update over scm-local does not delete files removed from source dir

2006-09-14 Thread David Roussel
What Continuum does (with help of scm-local) is to copy all files from Z:\VOB\some\where to D:\continuum-work\99 before running the build. If someone removes an outdated class from ClearCase, it won't be on Z:\VOB\some\where any longer. Is there a reason you can't use a snapshot view? It

Re: 2.0.5 release?

2006-09-14 Thread jerome lacoste
On 9/14/06, John Taylor [EMAIL PROTECTED] wrote: Hi all, Apologies for what is probably a FAQ, but can anyone give me an approx timescale for the 2.0.5 release? I haven't followed closely lately but I would say 'When it's done'. Just knowing whether it's imminent, weeks or months away would

Re: 2.0.5 release?

2006-09-14 Thread Brett Porter
Plugin changes are rarely related to the base Maven version, so you'd be better tracking the progress of specific ones. Cheers, Brett On 15/09/06, jerome lacoste [EMAIL PROTECTED] wrote: On 9/14/06, John Taylor [EMAIL PROTECTED] wrote: Hi all, Apologies for what is probably a FAQ, but can

Overriding plugin's default phase/goal associations

2006-09-14 Thread Greg_Vaughn
I'm trying to figure out if it is even possible to override a plugin's default phase/goal associations. I'm basically working on a war project. What I'd ultimately like to do is change what maven-war-plugin's goals are called during the package lifecycle under different profiles. Without a

[m204] cobertura issue

2006-09-14 Thread Mick Knutson
I have a main project with several sub modules and my main project has no class files in it. I am now getting an error where c:\opt\npi\target\classes does not exists, and it will not exists either. How can I have cobertura run on just my sub modules that I describe? Here is my master pom.xml

[m2] hsql plugin, integration testing

2006-09-14 Thread Samuel Le Berrigaud
Hi all, I've been looking around and couldn't find anything relevant so here is my question: Is there a HSQLDB plugin for maven that would allow to start/stop the db, and maybe even more... I was thinking that if such a plugin exists I could manage to make the DB start before the unit tests

Re: [m204] cobertura issue

2006-09-14 Thread Mick Knutson
So how can I ignore the modules that do not have a classes dir??? Embedded error: Source directory doesn't exists (c:\opt\npi\common\target\classes). On 9/14/06, Mick Knutson [EMAIL PROTECTED] wrote: I have a main project with several sub modules and my main project has no class files in

Fwd: Repository not found

2006-09-14 Thread Riaz uddin
-- Forwarded message -- From: Riaz uddin [EMAIL PROTECTED] Date: Sep 14, 2006 11:52 AM Subject: Repository not found To: users@maven.apache.org I am totally new to Maven. I recently downloaded Maven and tried the installation. In the command prompt when I enter 'mvn --version',

Re: Repository not found

2006-09-14 Thread Mykel Alvis
No repository is created until you specify a goal that has dependencies that are unavailable in your (non-existant) repository. Do a mvn clean instead. Somethings should get downloaded into $HOME/.m2/repository at that point. On 9/14/06, Riaz uddin [EMAIL PROTECTED] wrote: I am totally new

[m204] How do I stage and deploy a site to a directory on my workstation?

2006-09-14 Thread Mick Knutson
mvn site:stage-deploy -DstagingDirectory=C:\fullsite \ -DstagingSiteURL=file://fullsite / -- Thanks DJ MICK http://www.djmick.com http://www.myspace.com/mickknutson

Repository not found

2006-09-14 Thread Riaz uddin
I am totally new to Maven. I recently downloaded Maven and tried the installation. In the command prompt when I enter 'mvn --version', the maven version number is displayed but I dont find any repository in the user directory, what is happening? Please help. Joe

RE: Company-wide Maven repo

2006-09-14 Thread Beyer,Nathan
Maven-proxy may be dead, but version 0.2 does work fairly well as a simple central repository mirror. I've had a single instance of it running on Tomcat 5.5.17 and Sun JDK 5.0_7 for over 30 days with no maintenance. Additionally, I front Tomcat with Apache HTTPD 2.2.3 and use the proxy mod to

Re: Company-wide Maven repo

2006-09-14 Thread Barrie Treloar
On 9/15/06, Aleksei Valikov [EMAIL PROTECTED] wrote: Hi folks, Could anyone recommend software for implementing/installing a company-wide Maven repository? maven-proxy? proximity? Pros and contras? I'd be grateful for your opinions. As people have already said your choices at this stage are

Re: where to set -D values in pom.xml

2006-09-14 Thread franz see
Charles Harvey III wrote: Hello. I have a multiple module project with one of the modules being the war file, the rest being jar files. When I check the project out, I want to run mvn eclipse:clean eclipse:eclipse on the top-level project so it will run the command for each

Regular Expressions using Awk

2006-09-14 Thread Morgovsky, Alexander \(US - Glen Mills\)
Hi, in a Mojo I am writing, I want to select all the directories which satisfy **/src, so that if there are 3 dircetories and only 2 of them have a src, then I should only select those two. a/resources b/src c/src Should only select b and c. I am using AwkFilenameFilter like this and I don't

Re: Building maven-plugins project

2006-09-14 Thread franz see
Matt Raible-3 wrote: On 9/14/06, Matt Raible [EMAIL PROTECTED] wrote: We've developed a warpath plugin[1] that allows you to read dependencies from a war dependency. It works great, but we're currently unable to hook into the eclipse or idea plugin for project file generation. There's

Re: filtering web.xml with profile properties

2006-09-14 Thread franz see
ertnutler wrote: I can't for the life of me figure out how to have the maven-war-plugin filter my web.xml with properties from my profiles. i've read this thread: http://www.nabble.com/War-plugin-and-filtering-webapp-files-t1617964.html and i've tried all the configuration options

Re: Regular Expressions using Awk

2006-09-14 Thread Hilco Wijbenga
Perhaps use a forward slash ('/') not \\? So String p = new String(^(.*)(.*)/src$); instead of String p = new String(^(.*)(.*)\\src$); Cheers, Hilco On 9/14/06, Morgovsky, Alexander (US - Glen Mills) [EMAIL PROTECTED] wrote: Hi, in a Mojo I am writing, I want to select all the directories

Re: Fwd: Repository not found

2006-09-14 Thread Maria Odea Ching
Hi Riaz, The repository will be created when you perform bootstrap (if you've checked out maven source from svn), or when you start building a project (if you've just installed maven). That's when your local repo will be created. Hope this helps :) Thanks, Odea Riaz uddin wrote:

Re: section

2006-09-14 Thread franz see
Markus KARG-2 wrote: Hendrik and Franz, thanks a lot for your kind help! I indeed will try out tomorrow. But please one more question: How is the relationship between javadocs and pom structure? I did not yet understand how I can guess from the javadocs to the pom structure actually.

building openpgp (from commons-sandbox)

2006-09-14 Thread Antoine Levy-Lambert
Hi, I have the whole commons-sandbox checked out. I try to build openpgp and I see : [INFO] Scanning for projects... [INFO] [ERROR] FATAL ERROR [INFO]

Re: maven-jetty-plugin PluginDescriptor

2006-09-14 Thread franz see
franz see wrote: Good day to you, Edwin, I tried getting the sources of 6.0.0rc0 to 4 from [1] and installed them all in my repo but the error remains the same. I've also tried downloading 6.0.0rc4 jar from [2] and install-file it but still the same error. Any idea what's causing

Re: building openpgp (from commons-sandbox)

2006-09-14 Thread Brett Porter
I'm not sure where Hen put this when he set it up - best to ask on commons-dev. - Brett On 15/09/06, Antoine Levy-Lambert [EMAIL PROTECTED] wrote: Hi, I have the whole commons-sandbox checked out. I try to build openpgp and I see : [INFO] Scanning for projects... [INFO]

creating archetypes

2006-09-14 Thread Douglas Ferguson
The create archetypes document seems to have descripancies. Which is correct? testRecources or test-recources? Is allowPartial supported? The document also says that you can’t create empty directories, is that still the case? D-

Re: Building maven-plugins project

2006-09-14 Thread Matt Raible
This almost worked - in that I was able to checkout both projects and install them. Unfortunately, I still get the following error: 222:~/dev/maven-plugins mraible$ mvn [INFO] Scanning for projects... Downloading:

RE: creating archetypes

2006-09-14 Thread Douglas Ferguson
Also, the archetype also seems to be creating a src/main/java/${groupId} directory. Anyway to keep this from happening? D- -Original Message- From: Douglas Ferguson Sent: Thursday, September 14, 2006 9:32 PM To: users Subject: creating archetypes The create archetypes document seems

  1   2   >