AW: revisionNumber and timestamp in manifest-file with buildnumber-maven-plugin

2009-01-14 Thread Franziska Ryll
Thanks for the answers. Using version 1.0-beta-2 of the buildnumber-maven-plugin works as expected. -Ursprüngliche Nachricht- Von: Franziska Ryll [mailto:r...@ivu.de] Gesendet: Dienstag, 13. Januar 2009 16:48 An: Maven Users List Betreff: revisionNumber and timestamp in manifest-file with

Version modification in install

2009-01-14 Thread Leonard . Broman
Hi everybody! We're using TeamCity for continous integration and would like to use the TeamCity generated version as versions for our installed artifacts. What we would like to do is run the install target on the build agent to deploy builds to the repository. But this would required a change

Build lifecycle and integration-test

2009-01-14 Thread Niklas Koponen
Hi! The documentation on the site ( http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html) says following about the integration-test phase. integration-test - process and deploy the package if necessary into an environment where integration tests can be run If I

install file

2009-01-14 Thread Trollchik
Hi i have the following script: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-install-plugin/artifactId version2.2/version extensionstrue/extensions

only building sub-modules if changed

2009-01-14 Thread Richard Chamberlain
Hi all, I have a large multi-module build with alot of tests. It would be good to split this out into separate builds, but i don't think the boundaries are well enough defined between modules yet. In the meantime, I'd like to only build a sub-module if the source has changed, or a

mvn eclipse:eclipse - aspecjrt not added to .classpath

2009-01-14 Thread Rafael Sangalli
My pom.xml has a dependency to aspectrt: dependency groupIdaspectj/groupId artifactIdaspectjrt/artifactId version1.5.3/version /dependency When I run mvn eclipse:eclipse for the project, aspecjrt is not added to the .classpath file Do I need to do anything else to add this

Re: mvn eclipse:eclipse - aspecjrt not added to .classpath

2009-01-14 Thread Rafael Sangalli
My pom.xml has a dependency to aspectrt: dependency groupIdaspectj/groupId artifactIdaspectjrt/artifactId version1.5.3/version /dependency When I run mvn eclipse:eclipse for the project, aspecjrt is not added to the .classpath file, but all the other dependencies are added without

Re: Build lifecycle and integration-test

2009-01-14 Thread Wendy Smoak
On Wed, Jan 14, 2009 at 2:14 AM, Niklas Koponen niklas.kopo...@iki.fi wrote: The documentation on the site ( http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html) says following about the integration-test phase. integration-test - process and deploy the package if

Re: only building sub-modules if changed

2009-01-14 Thread Geoffrey Wiseman
On Wed, Jan 14, 2009 at 4:47 AM, Richard Chamberlain richard.chamberl...@caplin.com wrote: I have a large multi-module build with alot of tests. It would be good to split this out into separate builds, but i don't think the boundaries are well enough defined between modules yet. In the

Maven Archetype Plugin - MultiModule folder names

2009-01-14 Thread Miguel Cohnen
Hi, first of all I apologize if this is not the correct list to post, and if that is the case, please tell me where can I get some help. I have been trying to deal with maven archetype:generate-from-project goal, with a multi-module project. My project has 3 modules, called: booking booking-ejb

Re: Maven Archetype Plugin - MultiModule folder names

2009-01-14 Thread Wendy Smoak
On Wed, Jan 14, 2009 at 8:51 AM, Miguel Cohnen miguel.coh...@gmail.com wrote: I am able to give the artifacts of these modules the name I want, but not the folders. ... If I change booking-ejb, to let's say ${attributeId}-ejb, the archetype doesn't work as this seem to be the directory in

Maven file size limit?

2009-01-14 Thread solo1970
Hello all, I have a very big file that I'm trying to deploy to the repository (Repositpry management is done by Archiva) and I get the following error. Size of the artifact is 4 Gigs. I have plenty of disk space (42 Gigs left). What can be the problem and how can I fix it??? Sonia ...

Re: Maven file size limit?

2009-01-14 Thread Dan Tran
currently maven can only handle 2G per file. The is a patch for it at plexus-archiver http://jira.codehaus.org/browse/PLXCOMP-69, vote for it -D On Wed, Jan 14, 2009 at 9:27 AM, solo1970 sonia.lodoviche...@ericsson.com wrote: Hello all, I have a very big file that I'm trying to deploy to

Re: install file

2009-01-14 Thread Wayne Fay
but when i run maven, it install only last file (connection.jar)!!! What's wrong? How can i install a set of jars??? 1. Installing this many jars is probably something you're going to do once. Why are you possibly trying to script this? Why not just use mvn install:install-file ... directly on

RE: Maven file size limit?

2009-01-14 Thread Martin Gainty
which file system/accessing subsystem are you using NFS? Samba? Other? Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential

Re: Maven file size limit?

2009-01-14 Thread Dan Tran
looks like this is the problem of protocol it self ( in this case webdav), i also know forsure java scp also suffer the same thing scpexe might work. On Wed, Jan 14, 2009 at 10:32 AM, Martin Gainty mgai...@hotmail.com wrote: which file system/accessing subsystem are you using NFS? Samba?

Re: ConversionException

2009-01-14 Thread Chris Lacy
The problem seems to have magically gone away. My guess is that it started working after I cleaned my test project. Chris Chris Lacy wrote: I'm having the same problem, also (Eclipse plugin executing on MavenEmbedder). Did y'all ever figure this one out? Chris Jörg Schaible-2

Using maven for non-typical situations (i.e. not for building Java projects)

2009-01-14 Thread Samuel Cox
Hi, We are developing some software that will use a notion of deployment repositories. Various 'nodes' will need access to artifacts within this repository at run-time. Artifacts can have dependencies on other artifacts. So, we're basically just dealing with artifact sharing and resolution

RE: Using maven for non-typical situations (i.e. not for building Java projects)

2009-01-14 Thread Martin Gainty
which customised plugin will you be seeking to register in the repository? Will you be using either an local or online repository for this plugin? Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to

RE: Using maven for non-typical situations (i.e. not for building Java projects)

2009-01-14 Thread Samuel Cox
I was just brainstorming, but it would probably be in the local repository. -Original Message- From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: Wednesday, January 14, 2009 3:59 PM To: users@maven.apache.org Subject: RE: Using maven for non-typical situations (i.e. not for

Re: Using maven for non-typical situations (i.e. not for building Java projects)

2009-01-14 Thread Wendy Smoak
On Wed, Jan 14, 2009 at 2:51 PM, Samuel Cox s...@pervasive.com wrote: For example, I'd like to do something like: Repository repo = new Repository(http://my_repo/basedir;); Artifact[] artifacts = repo.searchByGroupId(org.apache.maven) for (Artifact art : artifacts) // list dependencies I

Maven EAR Plugin ContextRoot

2009-01-14 Thread Stephen Duncan Jr
I'm following the instructions here to set the context-root for my web modules as specified here: http://maven.apache.org/plugins/maven-ear-plugin/examples/customizing-context-root.html It seems to have no effect on the generated application.xml, the context-root still has the default values. I

Re: ConversionException

2009-01-14 Thread Jörg Schaible
Chris Lacy wrote: The problem seems to have magically gone away. My guess is that it started working after I cleaned my test project. as long as the war plugin uses an xstream version 1.3.0 it can happen every time again. - Jörg

How to install Maven plugins locally

2009-01-14 Thread Thummala, Sandhya
Hi All, I am using maven-surefire-report-plugin to generate unit test reports. Is there a way to install maven plugins locally? To explain further, if my build machine doesn't have internet access, I download the maven plugins that are required to run the reports manually, then install each of

Re: How to install Maven plugins locally

2009-01-14 Thread 苏林冲
maybe you can try to lay the maven-plugins you have downloaded to the local repo according to the rules: local repo path/groupId/artifactId/versions such as: org/apache/maven/plugins/maven-install-plugin/2.2/maven-install-plugin-2.2.jar try it? On Thu, Jan 15, 2009 at 1:19 PM, Thummala, Sandhya