David Williams is out of the office.

2007-07-04 Thread DavidWilliams
I will be out of the office starting 07/04/2007 and will not return until 07/09/2007. I will respond to your message as soon as I return. If you need assistance, please contact Steve Kaminski in my absence. Thanks, David -

Re: problem in release:prepare

2007-07-04 Thread Andrew Williams
add a trailing slash perhaps? On 3 Jul 2007, at 12:36, javijava wrote: Thanks to reply Andy, I quit all the references to repositorys at the POm file except the SCM, I include /trunk in the scm:svn:http:// connection string, but i have the same error!! :( Maven try to tag release

Re: how to configure Default Repository Layout for local repository

2007-07-04 Thread Andrew Williams
Using install:install-file or deploy:deploy-file will enable you to install your legacy named jars into the repository format by passing metadata on the command line. Though jars may not have the version in their name they still have metadata or a release number associated with them where

Release several artifacts depending on profiles

2007-07-04 Thread Achim Abeling
Hi, we have the following scenario we want to solve with maven: we have projects generating axis clients using the axistools-maven-plugin. Depending on the environment in which these client projects are deployed the clients are build with either axis 1.1 or axis 1.3. Now we want to use

Axis 1.4 POM files missing on central?

2007-07-04 Thread Thorsten Heit
Hi list, one of the projects I'm trying to convert from an Ant build structure to Maven is using Axis. Instead of version 1.1 that is originally used in the Ant build I'm trying to use Axis 1.4 so I added the following snippet to my pom.xml: dependency   groupIdaxis/groupId  

Re: Unpack

2007-07-04 Thread Marvin Froeder
Hi Brian... Its open! http://jira.codehaus.org/browse/MDEP-99 Thanks for any help. VELO On 7/3/07, Brian E. Fox [EMAIL PROTECTED] wrote: If swc is really a zip, why don't they call it a zip? I think the archiver would have to have its map updated, but we might be able to mess around with

Re: No more problem in release:prepare

2007-07-04 Thread javijava
add a trailing slash perhaps? Thanks 4 all to help me!! i can do the release now. In the POM file I only have in the scm the dev connexion developerConnectionscm:svn:svn://localhost:80/svn/prova/repo/autentia/trunk/developerConnection An I specify the tag base there: build

Using Maven with Eclipse well: mvn eclipse:eclipse and nested projects

2007-07-04 Thread Alan Kent
I have a multi-module project and I am trying to get the right set up to use Maven with Eclipse. I have a question below on mvn eclipse:eclipse, but some background first. I used to use m2eclipse with Eclipse 3.1 but as the projects have grown, m2eclipse has shown to have problems. For

Pre-phase execution of a plugin

2007-07-04 Thread Torsten Krall
Hello, is there any chance to define a plugin to run before the inherited goal executions? I have to tag a cvs-module and check for an already deployed version with the same versionnumber before deploying. I wrote an ant-plugin to test these conditions which is executed within the

moving from maven1 to maven2

2007-07-04 Thread bhaskar
where to place the properties defined in project.properties and build.properties of maven1,in maven2

Re: Using Maven with Eclipse well: mvn eclipse:eclipse and nested projects

2007-07-04 Thread Greg Thompson
Alan Kent wrote: Q: Is there any way to make mvn eclipse:elipse generate a .project file for the root directory as well as each module? That way I can check out the whole project tree from the root and have a project per pom file. Not that I know of, but this works for me: 1. Check out the

Generate DDL with Maven2, Spring2 and Hibernate3

2007-07-04 Thread Jonas Thurfors
I want to generate a DDL using Maven2, Spring2 and Hibernate3. I would like to use the maven-hibernate3-plugin with the goal hibernate3:hbm2ddl, but I don't use the hibernate.cfg.xml file, instead I'm configuring Hibernate with Spring's LocalSessionFactoryBean. How do I get the hibernate3 plugin

Re: moving from maven1 to maven2

2007-07-04 Thread Brett Porter
it must be converted to plugin configuration - the properties are likely to be different in each case as the plugins behaviour has changed, so you will need to review the plugins on a case by case basis. There are some conversion tools available - you can try mvn one:convert. - Brett On

Snapshot dependency naming problem

2007-07-04 Thread Portuendo Vestado
Hi all I'm having a problem with dependency jar naming within the war file generated by the WAR plugin. There's a dependency on X-2.0.1-SNAPSHOT.jar, but when maven downloads it form the local repository, it puts it in using the unique timestamped name the way it is stored in snapshot

[M2] creating Jndi context programmatically

2007-07-04 Thread Raphaël Piéroni
Hi, In my database access (using) hibernate i define the usage of the datasource by jndi. But i don't know how to inject the datasource in the jndi context nor how to inject the jndi context in the testCase.setup method. Any help is welcome. Regards, Raphaël

RE: [M2] creating Jndi context programmatically

2007-07-04 Thread LAMY Olivier
Hi, Have a look at plexus-naming [1] which can certainly help. Configure a component as this [2], add this component in loadOnStartup. Note : Your testCase must extends PlexusTestCase. -- Olivier [1] http://fisheye.codehaus.org/browse/plexus/plexus-components/trunk/plexus-naming [2]

Re: Axis 1.4 POM files missing on central?

2007-07-04 Thread Wayne Fay
It is impossible for the Maven dev group to be responsible for all the hundreds of poms, and so this is really the responsibility of the project itself to provide the pom, binaries, source, javadocs, etc. File a bug with Axis and perhaps they will resolve the missing poms. Wayne On 7/4/07,

problems with mvn2, Spring and Hibernate... anyone could help?

2007-07-04 Thread Marco Mistroni
hi all, i know i should post this to maven list but it is about spring and i am sure someone here is using maven for building its environment I have an app composed of 3 project: - domain OBjects , contains domain objects used by web and backend project - backend project contains hibernate code

Re: Generate DDL with Maven2, Spring2 and Hibernate3

2007-07-04 Thread David J. M. Karlsen
Jonas Thurfors wrote: I want to generate a DDL using Maven2, Spring2 and Hibernate3. I would like to use the maven-hibernate3-plugin with the goal hibernate3:hbm2ddl, but I don't use the hibernate.cfg.xml file, instead I'm configuring Hibernate with Spring's LocalSessionFactoryBean. How do I

Ant Mojo - Maven classpath

2007-07-04 Thread Jon SlinnHawkins
Hi All, Is it possible to pass / access the maven project classpath inside of an ant mojo build file. I see that you can with the antrun plugin, but can you do the same with self written ant mojo's ? I want to get at : ${maven.dependency.classpath} ${maven.compile.classpath}

FW: Using Maven with Eclipse well: mvn eclipse:eclipse and nested projects

2007-07-04 Thread Bryan Loofbourrow
An interesting message on the Maven User's list, especially for those (Daryoush!) who have expressed frustration about the inability to mass-perforce-enable all those Eclipse projects that you get when using mvn eclipse:eclipse. I'm not sure I understand completely where he's coming from, but

RE: Using Maven with Eclipse well: mvn eclipse:eclipse and nested projects

2007-07-04 Thread Bryan Loofbourrow
Sorry. Not intended for the list. Apologies. -Original Message- From: Bryan Loofbourrow [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 04, 2007 2:43 PM To: *Qpass - Content Catalog Discussion Cc: Maven Users List Subject: FW: Using Maven with Eclipse well: mvn eclipse:eclipse and nested

Re: How to execute a system command from maven 2?

2007-07-04 Thread Toli Kuznets
Jerome, I'm seeing the same missing executable argument problem. I'm using exec-maven-plugin 1.1-beta-1 My maven POM section is below. I'm pretty sure i have the groupId/artifactID correct. Also, is there any way to fork (ie run the executed command in the background) aside from putting a in