Re: [m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Wendy Smoak
On 4/19/07, Mick Knutson <[EMAIL PROTECTED]> wrote: structure is: project-home (pom) --> Utilities Module (pom) --> Common Module (jar) I want to replace project/utilities/index.html with src/site/xdoc/utilities/index.xml but my xdoc file does not overwrite the one generated from t

RE: [***POSSIBLE SPAM***] - RE: Getting index.html of site generated automatically - Found word(s) list error in the Text body

2007-04-19 Thread William Ferguson
Ian, are you saying that under the target/site folder you get project-info.html generated but not index.html? I also have no customisation of the site and get the following files generated at top level: dependencies.html index.html integration.html issue-tracking.html project-info.html

Re: Flattening Assemblies

2007-04-19 Thread Tim Kettler
Have you tried just to remove the ${artifactId} part? ... modules/ ... -Tim Am Donnerstag, den 19.04.2007, 16:52 -0400 schrieb David C. Hicks: > I'm trying to create an assembly, but the directory structure that is > created isn't really what I'm after. I'd like to dump all of the > artifacts

Re: Cobertura not instrumenting all classes?

2007-04-19 Thread David C. Hicks
Ah. cool. thanks! Dan Tran wrote: please use version 2.0, the latest 2.1 is very very bad -D On 4/19/07, David C. Hicks <[EMAIL PROTECTED]> wrote: I've noticed that my Cobertura report doesn't show all the classes in my project. Has anyone else see this behavior? I haven't figured out a

Re: Cobertura not instrumenting all classes?

2007-04-19 Thread Dan Tran
please use version 2.0, the latest 2.1 is very very bad -D On 4/19/07, David C. Hicks <[EMAIL PROTECTED]> wrote: I've noticed that my Cobertura report doesn't show all the classes in my project. Has anyone else see this behavior? I haven't figured out any kind of pattern to it, yet. It's s

Cobertura not instrumenting all classes?

2007-04-19 Thread David C. Hicks
I've noticed that my Cobertura report doesn't show all the classes in my project. Has anyone else see this behavior? I haven't figured out any kind of pattern to it, yet. It's showing 100% coverage for all of the code, which I know is not correct. When I look at some of the packages in the

RE: Starting a new java process from within a test case is hanging the maven JVM

2007-04-19 Thread Balasubramanian, Ravi Shankar
Hi, Following is my test class that starts a notepad process from within: " public void startProcessNotepad() throws IOException { Process p = Runtime.getRuntime().exec("notepad"); System.out.println("NOTEPAD STARTED"); } " When I execute this test t

Re: List for plugin developer?

2007-04-19 Thread franz see
Good day, Aside from what's already been mentioned, You can find out the developers of a particular maven project by visiting its project site. Then go to Project Information > Project Team. For example, if you're interested with the developers of maven-clean-plugin, go to [1], then navig

Re: What is the Best practice for generating variations of an artifacts?

2007-04-19 Thread franz see
Good day, If the only thing different with the variations are the config files and some dependencies, then I suggest you use #2. With regards to the shared resources, you can do that now with the maven-remote-resources-plugin. So you now have something like... . |-- core `-- variations |

Re: Accessing repository through ssh tunneling

2007-04-19 Thread Jerome Thibaud
I'll try this out. thx Jerome On 4/19/07, John Casey <[EMAIL PROTECTED]> wrote: on the external client machine, you can issue the following: ssh -L 80:repository-host.domain:80 [EMAIL PROTECTED] I think there's a corresponding command you can issue from the facade machine, but alas, I'm not

Re: Deploying assembly

2007-04-19 Thread John Casey
1. I don't see any reason why your technique should be considered bad. In fact, we have an open issue in MASSEMBLY (assembly plugin jira) to add installer-creators to the underlying archiver implementation (not sure that's right architecture-wise, but the issue is there nonetheless). 2. I think y

Re: Accessing repository through ssh tunneling

2007-04-19 Thread John Casey
on the external client machine, you can issue the following: ssh -L 80:repository-host.domain:80 [EMAIL PROTECTED] I think there's a corresponding command you can issue from the facade machine, but alas, I'm not enough of an SSH wizard to know what it is... :-( -john On 4/19/07, Jerome Thibaud

Accessing repository through ssh tunneling

2007-04-19 Thread Jerome Thibaud
Hi All, I have - a client connecting from the outside (internet) - a machine exposed to the internet (on which I cannot install my repository unfortunately) - a machine on the internal network behind my facade machine on which I have my repository how can I set the thing up so that a client

Re: Tasks aren't run for the maven-antrun-plugin

2007-04-19 Thread Maria Odea Ching
Hi Doug, I think you should execute "mvn deploy" instead of "mvn antrun:run". From your pom configuration, the ant tasks are set to be executed during the "deploy" phase since you've set the configuration inside . If you want to execute it using "mvn antrun:run", you should set the configuratio

Re: Benchmark M1 - M2

2007-04-19 Thread emerson cargnin
Thanks Jeff, I'll give it a try On 19/04/07, Jeff Jensen <[EMAIL PROTECTED]> wrote: 1. The problem with only using MAVEN_OPTS is that when plugins fork to run a task in a separate JVM, the MAVEN_OPTS is not used. This is where we need to set the JVM property for the plugin that needs the memory

RE: release-plugin, inheritance, and dependencies

2007-04-19 Thread Crossley, Jim
Hi Dave, I typically don't want child projects to have a version different from the parent. If I did, I probably wouldn't organize them as subprojects. So for my subprojects, I omit the version attribute in their POM. That way they inherit the version from the parent. As for dependencies, I do

Re: What is the Best practice for generating variations of an artifacts?

2007-04-19 Thread Vincent Massol
Hi John and everyone, Sorry for answering you so late on this and thanks again for your feedback. Following your direction I think I've found something slightly better: * I use a pom packaging * I use the assembly plugin to directly generate a WAR using the following assembly descriptor:

Flattening Assemblies

2007-04-19 Thread David C. Hicks
I'm trying to create an assembly, but the directory structure that is created isn't really what I'm after. I'd like to dump all of the artifacts in the assembly into a single directory. More accurately, I expect to be able to control where artifacts get placed in the output directory as they

RE: Using XML-RPC client to trigger builds

2007-04-19 Thread Morgovsky, Alexander \(US - Glen Mills\)
If Continuum can be set up for any schedule, and it detects changes in your source code repository, what is the purpose of this XML-RPC client you need to write? -Original Message- From: Ben Mills [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 4:20 PM To: [EMAIL PROTECTED] Subj

Re: Maven : deploy strategy

2007-04-19 Thread Wayne Fay
Good point... I've been packaging EARs for too long, and forgot that WAR normally bundles its dependencies too. ;-) Dependencies with scope compile should be included in your WAR package. Those with scope test and provided will not be included. Wayne On 4/19/07, Nick Stolwijk <[EMAIL PROTECTED]

Using XML-RPC client to trigger builds

2007-04-19 Thread Ben Mills
Greetings, I need to write an XML-RPC client for Continuum 1.0.3 (linux) and call it from a post commit hook (script) in Subversion (linux). The purpose is of course to trigger builds via post commit hook. Before I start, does anyone have any advice about pitfalls or any recommendations?

Re: MySQL instead of Apache Derby

2007-04-19 Thread Ben Mills
Many thanks for this information. Much appreciated. On Apr 19, 2007, at 4:10 PM, Anoop kumar V wrote: I do not think you can access the embedded derby db while continuum (or any other application) is using it. You would have to shut down continuum and then connect derby using a sql client li

Re: MySQL instead of Apache Derby

2007-04-19 Thread Anoop kumar V
I do not think you can access the embedded derby db while continuum (or any other application) is using it. You would have to shut down continuum and then connect derby using a sql client like squirrel sql or install derby and use its client to connect. as mentioned in this post: http://mail-arch

Re: Maven : deploy strategy

2007-04-19 Thread Nick Stolwijk
When building a war module (packaging=war) all the dependencies are included in the war file. WEB-INF/lib. What do you mean by making available? Nick S. Marouane Amraoui wrote: Thx If i use my application server is only a servlet engine(like tomcat) , so it does'n support ear. In this case I

MySQL instead of Apache Derby

2007-04-19 Thread Ben Mills
Greetings, Using Continuum 1.0.3 on Linux (CentOS 4.4) I assume the default install/setup for Continuum 1.0.3 uses Derby in an "embedded environment in which only a single application can access a database at one time, and no network access occurs. When an application starts an instance of

Re: List for plugin developer?

2007-04-19 Thread Wayne Fay
Mojo-dev might be a good place for these discussions... Wayne On 4/19/07, Jochen Wiedmann <[EMAIL PROTECTED]> wrote: On 4/19/07, Sommers, Elizabeth <[EMAIL PROTECTED]> wrote: > Is there any list for plugin developers? I find myself writing more and more plugins of increasing complexity and wo

Re: [m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Mick Knutson
Sorry. structure is: project-home (pom) --> Utilities Module (pom) --> Common Module (jar) I want to replace project/utilities/index.html with src/site/xdoc/utilities/index.xml but my xdoc file does not overwrite the one generated from the pom. I have attached both versions from the

RE: Maven : deploy strategy

2007-04-19 Thread Marouane Amraoui
Thx If i use my application server is only a servlet engine(like tomcat) , so it does'n support ear. In this case I must use a war file. So what are all possible way to make these jar file (declared in my pom files) available on my application server ? Thx in advance -Message d'origine-

Re: [m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Wendy Smoak
On 4/19/07, Mick Knutson <[EMAIL PROTECTED]> wrote: This did not seem to happen: src/site/xdoc/utilities/index.xml -> /utilities/index.html This worked: src/site/xdoc/utilities/indexTest.xml -> /utilities/indexTest.html You're not giving me much to go on here. My guess is that 'utilities' is

Re: [m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Mick Knutson
This did not seem to happen: src/site/xdoc/utilities/index.xml -> /utilities/index.html This worked: src/site/xdoc/utilities/indexTest.xml -> /utilities/indexTest.html On 4/19/07, Wendy Smoak <[EMAIL PROTECTED]> wrote: On 4/19/07, Mick Knutson <[EMAIL PROTECTED]> wrote: > I created src/s

Re: [m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Wendy Smoak
On 4/19/07, Mick Knutson <[EMAIL PROTECTED]> wrote: I created src/site/xdoc/utilities/index.xml But it did not seem to over write the index page. I still get the same one. That makes sense to me... src/site/xdoc/index.xml -> /index.html You have: src/site/xdoc/utilities/index.xml -> /utili

Creating a snapshot assembly with build numbers instead of SNAPSHOT

2007-04-19 Thread Kevin Stembridge
Hi all, I'm using the assembly plugin in a multi-module project to create a distributable zip file. At the moment, the artifacts in the zip all have the SNAPSHOT version number. Is there any way I can create an assembly that pulls the artifacts from my internal repository instead of the local on

Re: List for plugin developer?

2007-04-19 Thread Jochen Wiedmann
On 4/19/07, Sommers, Elizabeth <[EMAIL PROTECTED]> wrote: Is there any list for plugin developers? I find myself writing more and more plugins of increasing complexity and would love to have somebody to discuss them with. Welcome to [EMAIL PROTECTED] :-) I typically post all questions to us

List for plugin developer?

2007-04-19 Thread Sommers, Elizabeth
Is there any list for plugin developers? I find myself writing more and more plugins of increasing complexity and would love to have somebody to discuss them with. Thanks Liz Liz Sommers [EMAIL PROTECTED]

Re: [m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Mick Knutson
I created src/site/xdoc/utilities/index.xml But it did not seem to over write the index page. I still get the same one. I tested renaming it, and it creates the file then. On 4/19/07, Wendy Smoak <[EMAIL PROTECTED]> wrote: On 4/19/07, Mick Knutson <[EMAIL PROTECTED]> wrote: > Can I do the sa

JNDI mail/Session not located and Register emails not being sent

2007-04-19 Thread egarza
Issue 1: I have deployed the most recent Continuum SNAPSHOT to Tomcat 5.5.23 on AIX, revision 530476. I have used the TOMCAT setup instructions from the wiki. When using JNDI I have setup the context correctly I think. I have applied the fix for the MailSession issue. Everytime an email gets

Re: [m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Wendy Smoak
On 4/19/07, Mick Knutson <[EMAIL PROTECTED]> wrote: Can I do the same with an xdoc page? eg. src/site/xdoc/index.xml Sure, pick whichever format you prefer. -- Wendy - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Re: Registration emails not being sent

2007-04-19 Thread Wendy Smoak
On 4/19/07, egarza <[EMAIL PROTECTED]> wrote: I have deployed the Archiva SNAPSHOT, most recent revision 530476, web-app to Tomcat 5.5.23 on Unix. I have followed all the Tomcat setup instructions. Nothing in the logs? I'm surprised... http://docs.codehaus.org/display/MAVENUSER/Archiva+on+To

Registration emails not being sent

2007-04-19 Thread egarza
I have deployed the Archiva SNAPSHOT, most recent revision 530476, web-app to Tomcat 5.5.23 on Unix. I have followed all the Tomcat setup instructions. I have Continuum installed on this server as well. I get emails from the Continuum SNAPSHOT for builds, but none for registration as well. I have

Re: [m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Mick Knutson
Can I do the same with an xdoc page? eg. src/site/xdoc/index.xml On 4/19/07, Wendy Smoak <[EMAIL PROTECTED]> wrote: On 4/19/07, Mick Knutson <[EMAIL PROTECTED]> wrote: > I have the following in my root pom.xml: ... > I am trying to find some best practices to add more detail to each page? > A

Re: [m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Wendy Smoak
On 4/19/07, Mick Knutson <[EMAIL PROTECTED]> wrote: I have the following in my root pom.xml: ... I am trying to find some best practices to add more detail to each page? APT and HTML format do not seem to work. I think description is just meant to be a paragraph... if you need more, create sr

antlib - fails to grab snapshot dependencies?

2007-04-19 Thread Julian Wood
I'm using Antlib for Maven 2.0.4 to get a reference to the dependencies in my pom for use in some ant targets. It works fine (though you have to fiddle with your pom to get rid of the NPE's), but now it won't reference the snapshot dependencies. I've tried a bunch of different useScope val

[m2] Best Practices for pom ... data for site documentation

2007-04-19 Thread Mick Knutson
I have the following in my root pom.xml: Shared Services Delta Dental Enterprise Shared Services Project Descriptor Add More details here --- * please I am trying to find some best practices to add more detail to each page? APT and HTML f

Tasks aren't run for the maven-antrun-plugin

2007-04-19 Thread Doug Tanner
When I run 'mvn antrun:run', I see the following output in the console: [INFO] [antrun:run] [INFO] Executing tasks [INFO] Executed tasks [INFO] [INFO] BUILD SUCCESSFUL [INFO] --

Re: three questions

2007-04-19 Thread Ben Mills
Many thanks for your fast response - much appreciated. Will try these out... Regards, Ben On Apr 19, 2007, at 1:38 PM, Morgovsky, Alexander ((US - Glen Mills)) wrote: 1. You could embed your Ant build.xml files in Maven 2 shell projects. This would solve this issue. 2. For the meaning o

Re: 1.1 alpha 1 release?

2007-04-19 Thread Wendy Smoak
On 4/19/07, Morgovsky, Alexander (US - Glen Mills) <[EMAIL PROTECTED]> wrote: Where can I find the collection of issues which have been resolved with this release? Thanks. http://jira.codehaus.org/browse/CONTINUUM -> Release Notes -> select version and style -> Create -> http://jira.codehaus

RE: three questions

2007-04-19 Thread Morgovsky, Alexander \(US - Glen Mills\)
1. You could embed your Ant build.xml files in Maven 2 shell projects. This would solve this issue. 2. For the meaning of these levels, please research log4j. 3. After you create your schedules, you can assign specific schedules to specific projects on a project-by-project basis. Thanks.

snapshot dependency gets duplicate jars

2007-04-19 Thread Raghurajan Gurunathan
Hi All, some of our team has this problem, they have dependency in their project which is a snapshot version (lets say a-snashot.jar) so when they build their artifact in their final ear file they are seeing multiple jar as a-snapshot.jar,a-{Date.timestamp}.jar, I've seen thread about this iss

RE: 1.1 alpha 1 release?

2007-04-19 Thread Morgovsky, Alexander \(US - Glen Mills\)
Where can I find the collection of issues which have been resolved with this release? Thanks. -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 10:50 AM To: [EMAIL PROTECTED] Subject: Re: 1.1 alpha 1 release? A tag is created before the

Where should assembly descriptors really be stored?

2007-04-19 Thread Danny MacMillan
Hi, The standard directory layout page says that assembly descriptors should go in src/main/assembly. But the maven assembly plugin usage page says that assembly descriptors should go in src/assembly. Which is actually preferred? -- Dan MacMillan --

Re: Exception in large maven2 build: Too many open files

2007-04-19 Thread David Roussel
Use the unix ulimit command to find out, and increase, the number of available file handles. You may find it's different between the two machines. David On Thu, 19 Apr 2007 17:23:37 +0200, "Ivo van Dongen" <[EMAIL PROTECTED]> said: > Hi, > > Thanks for the quick reply. So this is a known issue?

Re: POM for common libraries

2007-04-19 Thread Wayne Fay
I hear you and don't disagree with the sentiment. I'm not entirely sure how to reduce the management overhead and duplication in this particular case. Wayne On 4/19/07, jp4 <[EMAIL PROTECTED]> wrote: Wayne, Thanks for the reply. What you have described makes sense. I guess I am just looking

howto set svn:ignore in archetype ?

2007-04-19 Thread nicolas de loof
Hello is there any way to specify svn:ignore metadata as elements of an archetype ? I'd like my archetype to generate a webapp, with target and eclipse .project automatically set as svn:ignore. Any suggestion ? Nico

Re: POM for common libraries

2007-04-19 Thread jp4
Wayne, Thanks for the reply. What you have described makes sense. I guess I am just looking for a way to avoid including the same test and provided scoped dependencies in multiple projects that follow essentially the same design patterns. Thanks, jp4 Wayne Fay wrote: > > What you're descri

Re: Maven 2 ear plugin doesn't pick up resources

2007-04-19 Thread Johan Eltes
Thanks, worked like charm. The solution was to have src/main/resources/META-INF/vendor- deployment-descriptor.ext in the project source structure and then reference the resources directory in the pom: org.apac

Re: POM for common libraries

2007-04-19 Thread Wayne Fay
What you're describing actually makes the most sense to me vs what you're expecting... Test scope means: when I am testing this particular artifact, I need to include these dependencies in the classpath. But you're not testing this artifact -- you're simply including it as a dependency of another

three questions

2007-04-19 Thread Ben Mills
Greetings, I am new to Continuum and have three questions. Running Continuum 1.0.3 on Linux (CentoOS 4.4) 1) It seems that I cannot configure Developers (i.e. for email or IM notification) or Dependancies within the web interface for a project if using Ant. Is this only available for Maven2

POM for common libraries

2007-04-19 Thread jp4
I have a project (common-data-access) of type pom that is used to group a set of common libraries for reuse. In this case, I group all libraries that I need for a data access project. In each data access project in include common-data-access as pom. I have encountered two issues and I was hopin

Re: RE: Getting error while trying to build sample RCP Application

2007-04-19 Thread Thorsten Heit
Hi, > Can you please tell me the problem with the mail I have sent previously? There was no content in it, only a quite long disclaimer... > I am getting the following error while trying to package the eclipse RCP > application *snip* Have a look at the stack trace: > Caused by: org.apache.

Re: Starting a new java process from within a test case is hanging the maven JVM

2007-04-19 Thread Jerome Lacoste
On 4/19/07, Balasubramanian, Ravi Shankar <[EMAIL PROTECTED]> wrote: Hi all, I did work on this and found that maven's java process is not waiting until all other processes started during the build is completed / terminated. Following is what I did: In one of my test cases, I start a new process

Re: Getting error while trying to build sample RCP Application

2007-04-19 Thread Wayne Fay
Your previous email had exactly zero content, just a subject and your company's disclaimer. So I imagine you included an attachment which was stripped by the Apache mail server before sending the email to the list. So your email appeared to be completely empty except for a subject. That was the p

RE: Getting error while trying to build sample RCP Application

2007-04-19 Thread Ramesh Babu Pokala - TLS, Chennai
Hi Wayne, Can you please tell me the problem with the mail I have sent previously? I want to give you a clear idea about the problem by giving the complete log... Do you feel this as a problem for the group... I did not get your point here. Anyway Sorry for the inconvenience. Please find the

Re: Benchmark M1 - M2

2007-04-19 Thread Jeff Jensen
1. The problem with only using MAVEN_OPTS is that when plugins fork to run a task in a separate JVM, the MAVEN_OPTS is not used. This is where we need to set the JVM property for the plugin that needs the memory. I suggest tracking to the plugin that causes the problem, and set its JVM property i

insufficient and/or wrong information when browsing archiva repository

2007-04-19 Thread Jan Delannoy
Hi all, I have a Maven project that I'm trying to deploy into Archiva, and all seems to work fine, except that when I browse to the artifact in my Archiva repository I only get the most basic of information: groupId, artifactId, version and packaging. There's no other information (POM dependency

Re: Release Notes generation

2007-04-19 Thread Emmanuel Hugonnet
Dennis Lundberg a écrit : This is the plugin that produces a release notes from JIRA. Not all features are fully documented yet, one of the reasons it's still a beta release. There are several configuration options mentioned in the goals page: http://maven.apache.org/plugins/maven-changes-pl

RE: Plugin execution for a specific packaging

2007-04-19 Thread Peter Nilsson
Unfortunately it doesn't work. Project properties (or user properties defined in pom) cannot be used to activate a profile. I found a thread where someone had tried the same thing without success: http://www.nabble.com/Can-I-activate-a-profile-based-on-module-type--tf14098 16s177.html Back to reo

multimodule site: how to reference parent or root?

2007-04-19 Thread Dirk Olmes
Hi, our project nests modules three levels deep. The site generates fine but I have enabled aggregated javadocs. Now I would like to put a link to the javadocs in a more prominent place than buried in the reports menu. Just adding a link to "apidocs" works from the top level but once I navigate to

RE: 1.1 alpha 1 release?

2007-04-19 Thread LAMY Olivier
Hi, Just to know why there is already a tag ? https://svn.apache.org/repos/asf/maven/continuum/tags/continuum-1.1-alpha-1/ An undocumented release :-) -- Olivier -Message d'origine- De : Emmanuel Venisse [mailto:[EMAIL PROTECTED] Envoyé : jeudi 19 avril 2007 14:45 À : [EMAIL PROTECTED

Re: Benchmark M1 - M2

2007-04-19 Thread emerson cargnin
sorry, i forgot, we use manen 1.0.2, e i configured the OPT like MAVEN_OPTS=-Xmx2600m thanks On 19/04/07, emerson cargnin <[EMAIL PROTECTED]> wrote: Hi there It happens when i create a site for a multiproject of about 17 project, during a compilation of one of the projects. [exec] BUILD

Re: Benchmark M1 - M2

2007-04-19 Thread emerson cargnin
Hi there It happens when i create a site for a multiproject of about 17 project, during a compilation of one of the projects. [exec] BUILD FAILED [exec] File.. /subversion/users/svnclient/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jelly [exec] Element... maven:reactor

Re: Exception in large maven2 build: Too many open files

2007-04-19 Thread Emmanuel Venisse
It seems to be a bug in plexus-archiver. I see only one solution, look at plexus-archiver code and fix it to close files that aren't closed. Emmanuel Ivo van Dongen a écrit : Hi, We ran into a problem with a large maven2 build. In the last stages of the build (creating the war) an exception

Release Strategy

2007-04-19 Thread Brad Harper
Here's something I'm sure someone has encountered before ... We use M2 and Subversion to build web-apps. We make a QA/ branch from dev/ when a release cycle begins and run the maven 'release' goal to build the first release candidate [RC]. Version numbering looks like '1.2.3-RC-n'. Only change

Re: Maven : deploy strategy

2007-04-19 Thread Wayne Fay
If you bundle the war up into an ear, and assuming you have dependencies properly declared in pom.xml files etc, then all the supporting libraries will be included in the ear. Then you deploy the ear into your app server. Wayne On 4/19/07, Marouane Amraoui <[EMAIL PROTECTED]> wrote: I have to

Re: Internal error in the plugin manager executing goal 'org.apache.maven.plugins:maven-surefire-plugin:2.2:test'

2007-04-19 Thread Wayne Fay
Is this a question? Or what? Consider reducing the quantity of your emails and increasing the quality. We'll all be a lot happier, as there will be fewer emails on the list and your problems are more likely to be solved. Wayne On 4/19/07, Ramesh Babu Pokala - TLS, Chennai <[EMAIL PROTECTED]> wr

Re: Benchmark M1 - M2

2007-04-19 Thread Jeff Jensen
What version of m1 are you using? What plugin(s) encounters the OOM? Many plugins have JVM settings property to enable setting the max mem, e.g. -Xmx1024m. It is expected to set this for sizable codebases. Quoting emerson cargnin <[EMAIL PROTECTED]>: > Does any one has a comparative relating

Exception in large maven2 build: Too many open files

2007-04-19 Thread Ivo van Dongen
Hi, We ran into a problem with a large maven2 build. In the last stages of the build (creating the war) an exception is thrown saying that there are too many open files. We're using continuum 1.0.3 on a debian (stable) server. We've already upped the system/process file handle limits. The las

Benchmark M1 - M2

2007-04-19 Thread emerson cargnin
Does any one has a comparative relating to speed and memory comsumption of M1 and M2. I'm getting loads of outof memory errors in M1 and as I'm trying to convince the porting to M2 this would be a good point. Thanks a lot emerson -

Re: Settings.xml is needed.

2007-04-19 Thread Thorsten Heit
http://maven.apache.org/general.html#proxy-needed http://maven.apache.org/guides/index.html http://maven.apache.org/ref/current/maven-settings/settings.html Just a few clicks on maven.apache.org Thorsten Original-Nachricht Datum: Thu, 19 Apr 2007 18:54:03 +0530 Von: "Rame

RE: Starting a new java process from within a test case is hanging the maven JVM

2007-04-19 Thread Balasubramanian, Ravi Shankar
Hi all, I did work on this and found that maven's java process is not waiting until all other processes started during the build is completed / terminated. Following is what I did: In one of my test cases, I start a new process using the java Runtime class. For experimentation I executed the comma

Settings.xml is needed.

2007-04-19 Thread Ramesh Babu Pokala - TLS, Chennai
DISCLAIMER: --- The contents of this e-mail and any attachment(s) are confidential and intended for the named recipient(s) only. It shall not attach any liability on the originator

RE: RE: RE: RE: maven-surefire-plugin problem

2007-04-19 Thread Ramesh Babu Pokala - TLS, Chennai
--- Begin Message --- without using proxy settings I was able to download remaining plugins. If I want to download from maven central repository what are the settings I need to use...? Thank you Ramesh From: Thorsten Heit [mailto:[EMAIL PROTECTED] Sent: Thu

Compressing JavaScript with Maven

2007-04-19 Thread Geffrey Caruso
Ok I've been trying to figure out how to do this for some time now. I saw some vague references to it on the web but no real clear answers. I want to compress my web app JavaScript files during the maven build process. So the files stay uncompressed while I'm working on them but are compresse

Re: RE: RE: RE: maven-surefire-plugin problem

2007-04-19 Thread Thorsten Heit
> Yes I am working behind proxy. > The following is my Settings.xml As I wrote in my last mail: Check your proxy settings - you haven't specified any in the settings.xml... See http://maven.apache.org/guides/mini/guide-proxies.html HTH Thorsten ---

Internal error in the plugin manager executing goal 'org.apache.maven.plugins:maven-surefire-plugin:2.2:test'

2007-04-19 Thread Ramesh Babu Pokala - TLS, Chennai
DISCLAIMER: --- The contents of this e-mail and any attachment(s) are confidential and intended for the named recipient(s) only. It shall not attach any liability on the originator

RE: Getting index.html of site generated automatically

2007-04-19 Thread Ian Rowlands
Not sure what details you mean, so I'll make a guess! I'm running Maven 2.0.5, executing maven site:site on my projects (one parent project with a bunch of modules).Everything else seems to get generated in the site - the "front" page generated is the project-info.html file. Recently I c

RE: RE: RE: maven-surefire-plugin problem

2007-04-19 Thread Ramesh Babu Pokala - TLS, Chennai
--- Begin Message --- Yes I am working behind proxy. The following is my Settings.xml http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd";>

RE: RE: Javadoc for dependent libraries in Netbeans...

2007-04-19 Thread Arne Styve
Hi > > I got the ant-script running from the POM now, partly. When > I get to > > the -task in my build.xml ant file, I get the > following error: > > > > [INFO]Error executing ant tasks > > > > Embedded error: The following error occurred while > executing this line: > > [INFO]C:\Documents

RE: maven-surefire-plugin problem

2007-04-19 Thread Ramesh Babu Pokala - TLS, Chennai
I tried this one also, but still the same problem. Can u send me ur pOM...? Thanks, Ramesh From: Pankaj Tandon [mailto:[EMAIL PROTECTED] Sent: Wed 4/18/2007 10:22 PM To: users@maven.apache.org Subject: RE: maven-surefire-plugin problem Hi, I think your group

Re: RE: Javadoc for dependent libraries in Netbeans...

2007-04-19 Thread Thorsten Heit
Hi, > I got the ant-script running from the POM now, partly. When I get to the > -task in > my build.xml ant file, I get the following error: > > [INFO]Error executing ant tasks > > Embedded error: The following error occurred while executing this line: > [INFO]C:\Documents and > Settings\asty\S

Re: RE: RE: maven-surefire-plugin problem

2007-04-19 Thread Thorsten Heit
Hi, > It is not fetching this plug-in automatically.. What error is Maven showing with "mvn -e -X ..."? Have you checked that your network settings are correct? I.e. are you behind a firewall? If yes, do you have proxy settings specified in your settings.xml? > So i have installed in the

RE: Javadoc for dependent libraries in Netbeans...

2007-04-19 Thread Arne Styve
Hi again, I got the ant-script running from the POM now, partly. When I get to the -task in my build.xml ant file, I get the following error: [INFO]Error executing ant tasks Embedded error: The following error occurred while executing this line: [INFO]C:\Documents and Settings\asty\Skrivebord\Co

Re: [Spam] Is there any way to get timestamp in maven?

2007-04-19 Thread David Corbin
On Wednesday 18 April 2007 17:41, Chen Li wrote: > Hi, > > It might be a very basic question. > > I want to add timestamp to the distribute, for instance ${DSTAMP}.war . > Is there any similar way in maven can do it like what does in > ant? You can use Groovy. http://pteropus.blogspot.com/2007/0

RE: RE: maven-surefire-plugin problem

2007-04-19 Thread Ramesh Babu Pokala - TLS, Chennai
--- Begin Message --- It is not fetching this plug-in automatically.. So i have installed in the local repo... can u please send POM, so that I can use central repository as yours Is there any other way? Thanks, Ramesh From: Thorsten Heit [mailto

Maven : deploy strategy

2007-04-19 Thread Marouane Amraoui
I have to deploy a war application. My web application has some dependencies (jar files). I deploy my war on production machine , what are all possible way to make these jar file (declared in my pom files) available on my application server ? -

activating profiles on the existence of envinronment variables?

2007-04-19 Thread Dirk Olmes
Hi, I have a build where I need to copy dependencies around depending on the existence of an environment variable. I tried to do this via activation of profiles, this seems to work only sometimes, if at all. Did anybody do this successfully? If yes, I'd like to hear how it can be done. TIA, -di

Re: Howto enable 1.1 xml-rpc service in plexus application

2007-04-19 Thread Emmanuel Venisse
This service configuration isn't in the latest continuum, remove it from your application.xml You must modified the application.xml in apps/continuum/webapps/WEB-INF/classes/META-INF/plexus/ Emmanuel Bram de Kruijff a écrit : Hi Emmanule, thanks for your reply. I see now that it is trying to

RE: Howto enable 1.1 xml-rpc service in plexus application

2007-04-19 Thread Bram de Kruijff
Hi Emmanule, thanks for your reply. I see now that it is trying to start xmpl-rpc but it gets a bindException because the default port is in use. But now when I try to config it in application.xml like before it breaks during startup. Can you please explain how to configure it in? I use continuum

Re: Is there any way to get timestamp in maven?

2007-04-19 Thread Jeroen Leenarts
This'll help a bit too I think: http://docs.codehaus.org/display/MAVENUSER/Creating+the+repositories (search for "uniqueVersion" with your browser on the page.) On 19/04/07, Jeroen Leenarts <[EMAIL PROTECTED]> wrote: Look into the distributionmanagement section of the Maven pom: http://maven.a

Re: Is there any way to get timestamp in maven?

2007-04-19 Thread Jeroen Leenarts
Look into the distributionmanagement section of the Maven pom: http://maven.apache.org/ref/2.0.4/maven-model/maven.html#class_distributionManagement Note the "uniqueVersion" element. Jeroen On 18/04/07, Chen Li <[EMAIL PROTECTED]> wrote: Hi, It might be a very basic question. I want to add

Re: How to define variables and overwrite them with user defined files?

2007-04-19 Thread Jeroen Leenarts
Perhaps this links helps a bit: http://maven.apache.org/examples/injecting-properties-via-settings.html On 19/04/07, Wayne Fay <[EMAIL PROTECTED]> wrote: http://maven.apache.org/pom.html#Properties There is no Maven equivalent to build.properties. All properties for a project should be contain

  1   2   >