Re: Reuse of hibernate domain objects in multiple maven projects?

2005-05-25 Thread Kristian Nordal
Hi, On 5/26/05, phillip rhodes <[EMAIL PROTECTED]> wrote: > > I have a core project that encapsulates some domain > objects that I reuse in many of my projects. Many of > the domain objects use hibernate to be persisted. I > use the xdoclet and hibernate plugins to generate the > mapping files a

Re: using maven properties/variables in xdocs

2005-05-25 Thread Kenney Westerhof
On Thu, 26 May 2005 [EMAIL PROTECTED] wrote: You could create a maven.xml task that uses ant copy using filtering to copy the xdocs/ dir to target/generated-docs (or something) and possibly setting the xdoc document location to the new location. If you use ant filtering you should use @token@ styl

Re: HSQLDB locking when using tomcat plugin

2005-05-25 Thread Kenney Westerhof
On Wed, 25 May 2005, Sebastien Arbogast wrote: > 2005/5/25, dan tran <[EMAIL PROTECTED]>: Can't you just set reload="true" in your context.xml? That way when the new war (or exploded war) is deployed, tomcat will reload the webapp and there's no need to stop/start tomcat. Use only in dev-mode! W

Re: scm:perform-release problem

2005-05-25 Thread Julian Wood
On May 25, 2005, at 6:09 PM, Brett Porter wrote: On 5/26/05, Julian Wood <[EMAIL PROTECTED]> wrote: 1.10 - I'll try the latest (1.11.20 or 1.12.12, it appears) ASAP. I was assuming that since the cvs command maven says it is running actually does run fine at the prompt (in the same env), that

RE: JCoverage IOException

2005-05-25 Thread Jeff Jensen
Still at a loss, so any tip or even half-baked idea is welcomed! :-) Even an RTFM with a link would be embarrassing but appreciated! :-D -Original Message- From: Jeff Jensen [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 25, 2005 10:32 AM To: users@maven.apache.org Subject: JCoverage

Maven @ Sydney JUG meeting next Wednesday, 1 June, 6:00pm for 6:30

2005-05-25 Thread Brett Porter
Hi, Forwarding this on in case there are any Maven users in Sydney interested in hearing more about Maven 2.0 and Continuum. Cheers, Brett -- Forwarded message -- From: David Coldrick <[EMAIL PROTECTED]> Date: May 26, 2005 11:23 AM Subject: Sydney JUG meeting next Wednesday, 1 Ju

Re: using maven properties/variables in xdocs

2005-05-25 Thread Jamie Bisotti
This can't currnetly be done. Search JIRA, there's an issue filed somewhere; probably agains xdoc plugin. On 5/25/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi all, > > I having issues using maven properties/variables in my xdocs. I've created > an xdocs/index.xml that I want to customi

using maven properties/variables in xdocs

2005-05-25 Thread Justin_Freitag
Hi all, I having issues using maven properties/variables in my xdocs. I've created an xdocs/index.xml that I want to customise based on property values, eg. About ${myProperty} I would like ${myProperty} to be replaced with the property value, but instead I see ${myP

Re: Maven 1.0.2: Local file system based repository not working

2005-05-25 Thread Brett Porter
The JDK URL connection doesn't appear to follow the spec, and in our attempts to fix it up it didn't always work. In Maven 1.1, we have ensured it follows the spec (and allows a couple of others for backwards compat). If you change file:///${user.home}... to file:${user.home} it should work. --

Maven 1.0.2: Local file system based repository not working

2005-05-25 Thread Rahul
Hi, I need to set up a file-system based local repository on my system and have updated the project.properties file as follows : maven.plugin.unpacked.dir=${user.home}/release-packaging # following looks for folder called 'repository' maven.home.local=${user.home}/release-packaging # Locat

Re: [m2] How to use pom-pre-alpha-converter??

2005-05-25 Thread Brett Porter
On 5/25/05, Anatol Pomozov <[EMAIL PROTECTED]> wrote: > MAIL RECALL > sandbox/repoclean used for M1->M2 converting. I was confused with > 'converter' word. > > Anyway is any doc on repoclean??? How stable is it?? > It is being used to create the m2 repo from the m1 repo daily. It is not really d

Re: scm:perform-release problem

2005-05-25 Thread Brett Porter
On 5/26/05, Julian Wood <[EMAIL PROTECTED]> wrote: > 1.10 - I'll try the latest (1.11.20 or 1.12.12, it appears) ASAP. I was > assuming that since the cvs command maven says it is running actually > does run fine at the prompt (in the same env), that the problem was > elsewhere, but we'll see. Coo

Re: [m2] Multiproject with flat layout

2005-05-25 Thread Brett Porter
I don't believe we are doing anything special to support this in the first release. It is entirely possible to use this structure as is. To be honest, reading that bug again, I don't know what is being asked for. The only thing in Maven that could be affected is for which we haven't allowed "../"

Re: scm:perform-release problem

2005-05-25 Thread Julian Wood
Hi Brett, Thanks for getting back to me. I'll follow up those leads. On 25-May-05, at 5:41 PM, Brett Porter wrote: I was just replying to your other email. Can I confirm: - are you on Mac OS X? Yes. - what is the CVS client version there? 1.10 - I'll try the latest (1.11.20 or 1.12.12, i

Re: Flatten resource location on copy

2005-05-25 Thread Brett Porter
I'm not sure if it is a good general enhancements (feel free to convince me with reasons otherwise). For your current situation you will have to go with a custom maven.xml that uses ant:copy with a flatten mapper. Cheers, Brett On 5/26/05, Jamie Bisotti <[EMAIL PROTECTED]> wrote: > Anyone??? >

Re: HSQLDB locking when using tomcat plugin

2005-05-25 Thread Sebastien Arbogast
2005/5/25, dan tran <[EMAIL PROTECTED]>: > When the appserver stop your app, i am sure it will give your webapp a > chance to > cleanup, by that time, you must issue sql "SHUTDOWN". Yes that's also what I found out thanks to HSQLDB forums... so now I have to find a way to issue that damn SQL SHUTD

Re: scm:perform-release problem

2005-05-25 Thread Brett Porter
On 5/26/05, Julian Wood <[EMAIL PROTECTED]> wrote: > And the source Xref points to a 1.5-beta-4-SNAPSHOT, which is not > available for download anywhere (that I can find), and which of course > doesn't correspond to the stack trace I have. > > Wasn't maven created in the first place to avoid exact

Re: scm:perform-release problem

2005-05-25 Thread Julian Wood
Well, still having problems. running maven -e scm:checkout fails with some more info: BUILD FAILED java.lang.Exception: Error! at org.apache.maven.plugins.scm.ScmBean.checkResult(ScmBean.java:117) at org.apache.maven.plugins.scm.ScmBean.checkout(ScmBean.java:96) at s

Re: HSQLDB locking when using tomcat plugin

2005-05-25 Thread dan tran
When the appserver stop your app, i am sure it will give your webapp a chance to cleanup, by that time, you must issue sql "SHUTDOWN". -Dan On 5/25/05, phillip rhodes <[EMAIL PROTECTED]> wrote: > I am not aware of the ability to issue a sql shutdown > to an in-process HSQL instance. > > In y

Re: HSQLDB locking when using tomcat plugin

2005-05-25 Thread phillip rhodes
I am not aware of the ability to issue a sql shutdown to an in-process HSQL instance. In your case, it would appear to me that you will have to stop the server. HTH --- Siegfried Goeschl <[EMAIL PROTECTED]> wrote: > Hi Sebastien, > > I think you need to issue a SQL shutdown command for > HSQLD

Re: HSQLDB locking when using tomcat plugin

2005-05-25 Thread Siegfried Goeschl
Hi Sebastien, I think you need to issue a SQL shutdown command for HSQLDB which also compacts the database Cheers, Siegfried Goeschl Sebastien Arbogast wrote: Hi, I'm using Codeczar tomcat plugin to manipulate my tomcat server for my web application. So when I have to recompile some Java

scm:perform-release problem

2005-05-25 Thread Julian Wood
Hi, I'm having a problem with scm:perform-release. scm:prepare-release works fine - it tags and updates my files in my pserver repo properly. scm:perform-release fails with what seems to be a bug: scm:cvs-checkout-project: [echo] Checking out lccl; from CVSROOT: :pserver:[EMAIL PROTEC

HSQLDB locking when using tomcat plugin

2005-05-25 Thread Sebastien Arbogast
Hi, I'm using Codeczar tomcat plugin to manipulate my tomcat server for my web application. So when I have to recompile some Java class while my Tomcat server is running I want to execute the following procedure : maven tomcat:stop maven war:webapp maven tomcat:start But then when I try to acces

Re: cruisecontrol goals generated by maven.

2005-05-25 Thread Jamie Bisotti
Did you check the CC docs? http://cruisecontrol.sourceforge.net/main/configxml.html#maven On 5/25/05, Riffe, Melvin <[EMAIL PROTECTED]> wrote: > Hi Guarav, > > If what is generated does not work try setting > 'maven.cruisecontrol.goals' in your project.properties with how you want > the goals sp

users@maven.apache.org

2005-05-25 Thread Arnaud HERITIER
In theory it was fixed one year ago : http://jira.codehaus.org/browse/MPXDOC-92 Arnaud > -Message d'origine- > De : Arik Kfir [mailto:[EMAIL PROTECTED] > Envoyé : mercredi 25 mai 2005 23:17 > À : Maven Users List; Jon Strayer > Objet : Re: Xdoc, URLs and & > > can you post the docume

RE: cruisecontrol goals generated by maven.

2005-05-25 Thread Riffe, Melvin
Hi Guarav, If what is generated does not work try setting 'maven.cruisecontrol.goals' in your project.properties with how you want the goals specified. For example: inside project.properities: maven.cruisecontrol.goals=scm:update-project clean test site:deploy HTH, Mel Riffe -Original Mes

Re: Is there a tool to graphically see the dependencies between modules?

2005-05-25 Thread Alex Soto
Yes, I can see that being useful since I have some guys ramping up on a codebase as well as being maven newbies. On 5/25/05, Wim Deblauwe <[EMAIL PROTECTED]> wrote: > > Looks cool. Please throw it somewhere :) > > regards, > > Wim > > 2005/5/25, Jason van Zyl <[EMAIL PROTECTED]>: > > On Wed

cruisecontrol goals generated by maven.

2005-05-25 Thread Gaurav Khushwaha
I have cruisecontrol running on maven generated config file. The default goals it generates is this "scm:update-project|clean test|site:deploy" . My question is what is this pipe doing here ? How is it different from just leaving white spaces between the goals. Regards, Gaurav.

users@maven.apache.org

2005-05-25 Thread Arik Kfir
can you post the document, or atleast the surrounding fragement? I'm using 1.0.2 too and it seems to work... - Original Message - From: "Jon Strayer" <[EMAIL PROTECTED]> To: "Maven Users List" Sent: Wednesday, May 25, 2005 10:14 PM Subject: Re: Xdoc, URLs and & 1.0.2 On 5/25/05, Ar

users@maven.apache.org

2005-05-25 Thread Jon Strayer
1.0.2 On 5/25/05, Arik Kfir <[EMAIL PROTECTED]> wrote: > ps! trigger happy on the "send" button :) sorry... > > actually I'm doing it in mevenide and it does work...what maven version are > you using? > > - Original Message - > From: "Jamie Bisotti" <[EMAIL PROTECTED]> > To: "Maven U

Re: [m2] assembly equivalent of dist?

2005-05-25 Thread Jason van Zyl
On Wed, 2005-05-25 at 14:22 -0400, Michael Heuer wrote: > Hello, > > Just got started with maven2 and am having trouble finding the equivalent > of the maven1 dist plugin, for creating binary and source tarballs. > > The plug-in doc for the assembly plugin reads "Build an assembly > (distribution

Re: Maven and PVCS

2005-05-25 Thread Jason van Zyl
On Wed, 2005-05-25 at 19:00 +0100, Richardson, Simon (Treasury) wrote: > Has anyone integrated Maven with PVCS Version Manager SCM? Nope, we would definitely like that in Maven SCM :-) We're now focusing our efforts SCM efforts within Maven SCM. Join the dev list if you want to help out with addi

users@maven.apache.org

2005-05-25 Thread Jon Strayer
Arik Kfir wrote: > Hi > > try escaping the ampersands ("&") by changing each "&" occurance into a > "&" (without the quotes). This is an XML issue, btw, not a Maven > issue, as you cannot put ampersands in XML without escaping it (reserved > character). I did that. That's how I ended up with a U

users@maven.apache.org

2005-05-25 Thread Arik Kfir
ps! trigger happy on the "send" button :) sorry... actually I'm doing it in mevenide and it does work...what maven version are you using? - Original Message - From: "Jamie Bisotti" <[EMAIL PROTECTED]> To: "Maven Users List" Sent: Wednesday, May 25, 2005 8:14 PM Subject: Re: Xdoc

Reuse of hibernate domain objects in multiple maven projects?

2005-05-25 Thread phillip rhodes
I have a core project that encapsulates some domain objects that I reuse in many of my projects. Many of the domain objects use hibernate to be persisted. I use the xdoclet and hibernate plugins to generate the mapping files and create the tables in a schema. I reuse these core object relational

[m2] assembly equivalent of dist?

2005-05-25 Thread Michael Heuer
Hello, Just got started with maven2 and am having trouble finding the equivalent of the maven1 dist plugin, for creating binary and source tarballs. The plug-in doc for the assembly plugin reads "Build an assembly (distribution) of sources and binaries" but I'm not sure how to use it: $ m2 assem

users@maven.apache.org

2005-05-25 Thread Jamie Bisotti
U...I think he already tired that and it does not work. Check the original post again. On 5/25/05, Arik Kfir <[EMAIL PROTECTED]> wrote: > Hi > > try escaping the ampersands ("&") by changing each "&" occurance into a > "&" (without the quotes). This is an XML issue, btw, not a Maven issue, >

users@maven.apache.org

2005-05-25 Thread Arik Kfir
Hi try escaping the ampersands ("&") by changing each "&" occurance into a "&" (without the quotes). This is an XML issue, btw, not a Maven issue, as you cannot put ampersands in XML without escaping it (reserved character). - Original Message - From: "Jon Strayer" <[EMAIL PROTECTED

Maven and PVCS

2005-05-25 Thread Richardson, Simon (Treasury)
Has anyone integrated Maven with PVCS Version Manager SCM? Regards Simon "MMS " made the following annotations. -- For more information on HBOS Treasury Services, please visit http://www.HBOSTS.com Or for details of ou

Maven and PVCS

2005-05-25 Thread Richardson, Simon (Treasury)
Has anyone integrated Maven with PVCS Version Manager SCM? Regards Simon "MMS " made the following annotations. -- For more information on HBOS Treasury Services, please visit http://www.HBOSTS.com Or for details of ou

users@maven.apache.org

2005-05-25 Thread Jon Strayer
I would like to include a url that has a few parameters in an xdoc. The URL is long, but it looks something like this: http://blablabla.com//fn_custom_login.asp?hidetree=true&client=Services When I put it in like this xdoc complains about the entity &client. When I use http://blablabla.com//fn

RE: Shutting Down Cruisecontrol (M1) in the background?

2005-05-25 Thread Riffe, Melvin
Hi Bud, This might be better answered on the Cruise Control mailing list [1]. But from my experience (running Cruise Control 2.2.1 on a Windows 2003 server) we're using the shipped NTWrapperService that adds Cruise Control to the list of Windows Services. Because of this we can issue, at the comm

Shutting Down Cruisecontrol (M1) in the background?

2005-05-25 Thread Harrison . Curtis
How do you shutdown cruisecontrol once it is up and running in the background? We are using cruisecontrol for generating email notices and a runtime log on the success or failure of a scheduled nightly build. We didn't find another way to get the email notioces and the HTML formated logs. We u

Re: Flatten resource location on copy

2005-05-25 Thread Jamie Bisotti
Anyone??? On 5/24/05, Jamie Bisotti <[EMAIL PROTECTED]> wrote: > My source tree looks like the following: >src/conf/foo1/blah1.properties >src/conf/foo2/blah2.properties >... >src/conf/fooN/blahN.properties > ... > > and I'd like for the target tree to look like the following: >

Re: maven plugin for idea

2005-05-25 Thread Arik Kfir
Hi Artur, I'm not sure about the problem, but you could try the MevenIDE IDEA plugin (available at http://mevenide.codehaus.org/mevenide-idea) so see if it helps. It's currently in alpha stage though, but might be useful for you. cheers, Arik Kfir. - Original Message - From: "Ikt

Re: [m2] Multiproject with flat layout

2005-05-25 Thread bryan ( [EMAIL PROTECTED])
hmmm ... now i understand why my project isn't working. This is particularly a pain if you are working with IBM WAS / WSAD ... it forces you to adopt this stucture when working on a EAR deployment ... and just about anything else. Eclipse is ( despite what some may say ) probably the most popula

error - "You must provide a valid url"

2005-05-25 Thread Maciej Zywno
Hi, while trying to add m1 project I get the message that the url provided is not valid. I've tried all possible combinations of slashes.. generally my pom is in c:/workspace/centiva/project.xml Any idea of how should the url look like. (I tried with three slashes). There is no log messages with

JCoverage IOException

2005-05-25 Thread Jeff Jensen
Hi, JCoverage fails with a number of errors, and the one below is the first. I think it is the root of some/all of the subsequent errors. After this error occurs, it still runs the tests (at least it tries to!). During the JUnit test runs there is a "NoClassDefFoundError"s on each test. My gue

Re: problem subscribing to mailing list

2005-05-25 Thread Damien Sauvageot
Indeed, I do receive mails now. Apparently the re-inscription done yesterday did the job. Thx Grégory Joseph wrote: Receiving this mail seems to show you are indeed subscribed, I guess. There's just almost no traffic ;-) (Or there's an issue with my subscription too) Cheers, g On 25/05/05, D

Re: Is there a tool to graphically see the dependencies between modules?

2005-05-25 Thread Wim Deblauwe
Looks cool. Please throw it somewhere :) regards, Wim 2005/5/25, Jason van Zyl <[EMAIL PROTECTED]>: > On Wed, 2005-05-25 at 16:04 +0200, Wim Deblauwe wrote: > > Hi, > > > > I have a lot of modules that depend on each other in one way or > > another. Is there a tool in Maven to make the dependenc

Re: Is there a tool to graphically see the dependencies between modules?

2005-05-25 Thread Jason van Zyl
On Wed, 2005-05-25 at 16:04 +0200, Wim Deblauwe wrote: > Hi, > > I have a lot of modules that depend on each other in one way or > another. Is there a tool in Maven to make the dependencies visible > (preferably in a graphical way)? These are old pictures and have some quirks, but something like

[m2] Multiproject with flat layout

2005-05-25 Thread fabrice . belingard
Hi guys, the issue of multiproject handling with a flat layout was tackled some weeks ago on this mailing list, and there's an issue on JIRA (http://jira.codehaus.org/browse/MNG-359) concerning this point, but it has not been resolved nor assigned. I just wanted to know: is this issue left ap

Re: run continuum as webapp

2005-05-25 Thread Jason van Zyl
On Wed, 2005-05-25 at 15:27 +0200, Nicolas Chalumeau wrote: > The deployed war is in C:\continuum-1.0-alpha-1\apps\continuum. > You probably can use it to generate a war The WAR file in that format will only work when plexus is running underneath. It won't take a lot of work to have a WAR that is

Re: run continuum as webapp

2005-05-25 Thread Jason van Zyl
On Wed, 2005-05-25 at 15:01 +0200, Christian Schlaefcke wrote: > Hi Folks, > > because I cannot find a war file I wonder if it´s possible to run > continuum as a webapp in an application server environment? There is a continuum users list :-) Right now there isn't one. We only distribute it now

Is there a tool to graphically see the dependencies between modules?

2005-05-25 Thread Wim Deblauwe
Hi, I have a lot of modules that depend on each other in one way or another. Is there a tool in Maven to make the dependencies visible (preferably in a graphical way)? regards, Wim - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

Re: [m2] How to use pom-pre-alpha-converter??

2005-05-25 Thread Anatol Pomozov
MAIL RECALL sandbox/repoclean used for M1->M2 converting. I was confused with 'converter' word. Anyway is any doc on repoclean??? How stable is it?? On 5/25/05, Anatol Pomozov <[EMAIL PROTECTED]> wrote: > I want to convert my m1 repo to m2. And I want use for it converter > from sandbox. But I ca

javacc and java5

2005-05-25 Thread Matthew Pocock
Hi, I've been using javacc to process some java5 code. To get this running I needed to do a bit of hacking around in the pluggin and its dependancies. Firstly, I manually added javacc-4.0-beta-1.jar to .maven/repository and then I manually edited maven-javacc-plugin-1.1/project.xml to have a de

Re: run continuum as webapp

2005-05-25 Thread Nicolas Chalumeau
The deployed war is in C:\continuum-1.0-alpha-1\apps\continuum. You probably can use it to generate a war Nicolas On 5/25/05, Christian Schlaefcke <[EMAIL PROTECTED]> wrote: > Hi Folks, > > because I cannot find a war file I wonder if it´s possible to run > continuum as a webapp in an applicatio

[m2] How to use pom-pre-alpha-converter??

2005-05-25 Thread Anatol Pomozov
I want to convert my m1 repo to m2. And I want use for it converter from sandbox. But I cand find anywhere following dependency. It does not exists on repo1.maven.org org.apache.maven maven-model 4.0.0-pre-alpha1 jar compile Also I read somewhere in maillis

run continuum as webapp

2005-05-25 Thread Christian Schlaefcke
Hi Folks, because I cannot find a war file I wonder if it´s possible to run continuum as a webapp in an application server environment? Thanks & Regards, Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

Re: Problem in using Tomcat Web Server on a Linux OS as the Central repository

2005-05-25 Thread Nicolas Chalumeau
Cool, I send it to the list too as it can be usefull to someone Nicolas On 5/25/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Nicolas, > > Thanks for the web.xml file. I had placed the file in WEB-INF of > maven. Now, I am able to successfully download the dependencies from t

maven plugin for idea

2005-05-25 Thread Iktorn
Hi, I've got a problem with maven plugin with my project . When I click on the play button goals don't appear. ( with sample project from maven tutorial everything is ok). Both Intellij Projects were made with 'maven idea' goal. The following error appear in the output window File.. C:\WI

RE: Problem in using Tomcat Web Server on a Linux OS as the Central repository

2005-05-25 Thread deepa.muthukumar
Yes, I do have an access error The error is as follows: HTTP Status 404 - /maven/commons-digester/jars/commons-digester-1.5.jar type Status report message /maven/commons-digester/jars/commons-digester-1.5.jar descr

Re: Problem in using Tomcat Web Server on a Linux OS as the Central repository

2005-05-25 Thread Guillaume Lederrey
Could you verify if you can access that file with a web browser ? Go to http://localhost:8080/maven/commons-digester/jars/commons-digester-1.5.jar and see if you have an access error ... On 5/25/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > And I placed the jar file - commons-digester under

Re: Problem in using Tomcat Web Server on a Linux OS as the Central repository

2005-05-25 Thread Nicolas Chalumeau
Can you try with the -X option to have more info on the exact error (404...)? Personnaly i do exactly the same thing and have no problem (i add a WEB-INF/web.xml too) Nicolas On 5/25/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Graham, > > Thanks for your immediate response. > > I had

RE: Problem in using Tomcat Web Server on a Linux OS as the Central repository

2005-05-25 Thread deepa.muthukumar
Graham, Thanks for your immediate response. I had created the same structure as you had specified. I had installed Tomcat in /home/wynmgm/jakarta-tomcat-4.1.31/ And I placed the jar file - commons-digester under /home/wynmgm/jakarta-tomcat-4.1.31/webapps/maven/commons-digester/jars. I started

Re: Problem in using Tomcat Web Server on a Linux OS as the Central repository

2005-05-25 Thread Graham King
Deepa, The directory structure is /jars/-.jar So you need to copy your commons-digester to maven/commons-digester/jars/commons-digester-1.5.jar then maven should be able to find it. Graham. [EMAIL PROTECTED] wrote: Hi, I had used the Tomcat Web Server on a Linu

Re: problem subscribing to mailing list

2005-05-25 Thread Grégory Joseph
Receiving this mail seems to show you are indeed subscribed, I guess. There's just almost no traffic ;-) (Or there's an issue with my subscription too) Cheers, g On 25/05/05, Damien Sauvageot <[EMAIL PROTECTED]> wrote: > I am having troubles subscribing to both mailing list, user and dev for > co

Problem in using Tomcat Web Server on a Linux OS as the Central repository

2005-05-25 Thread deepa.muthukumar
Hi, I had used the Tomcat Web Server on a Linux OS as the Central repository for downloading the dependent jar files. I had created a directory by name "maven" under webapps folder of tomcat and placed the dependent jar files in it with the same structure that Maven proposes.

Re: [dashboard plugin] Totals of a percentage?

2005-05-25 Thread Wim Deblauwe
Done: http://jira.werken.com/browse/MPDASHBOARD-25 2005/5/24, Vincent Massol <[EMAIL PROTECTED]>: > Hi Wim, > > Yes, this was intended. I agree that an average would be nicer. Feel free to > open a JIRA issue (and possible attach a patch ;-)). > > Thanks for the suggeestion > -Vincent > > > ---