Re: Lucene test fails...

2006-08-28 Thread Nicolas De Loof
"FileUtils.deleteDirectory" is used and throws this IOException. I don't think commons-io solves this JVM issue. Maybe a System.gc() can solve this ? According to http://www.gossamer-threads.com/lists/lucene/java-user/39116, some file handler opened by Lucene may stay opened and must wait fo

Ad: RE: Tomcat Deploy

2006-08-28 Thread Stefan Magnus Landrø
Hey Douglas, Try this plugin: http://mojo.codehaus.org/tomcat-maven-plugin/ There is a similar one for maven 1 "Jeff Jensen" <[EMAIL PROTECTED]> skrev 28.08.2006 22:46:24: > Maven 1 or 2? > > > -Original Message- > From: Douglas Ferguson [mailto:[EMAIL PROTECTED] > Sent: Monday, Au

mvn eclipse feature request?!

2006-08-28 Thread Fred . Hauschel
Hi all, in eclipse you can define AccessRules for the libraries the project depend on. Would it be a good idea to define them in the pom (or another xml file) and regard them when calling eclipse:eclipse ? A other possibility is eclipse:eclipse do not overwrite these access rules. What do you t

maven-script-ant path id problem in the ant build file

2006-08-28 Thread Peter Anning
Hi, I am trying to build an Ant plugin for Maven 2. Having followed the Hello World example on the maven site and got everything working I now have the following problem in the real world. A path defined in the build.xml is not being created properly when calling from maven but works from Ant.

archetype descriptor schema?

2006-08-28 Thread Aaron Tarter
Does anyone know where I can find the maven2 archetype descriptor schema? -- Regards, Aaron J Tarter

How to know/specify version of plugin?

2006-08-28 Thread Dave Hoffer
I seem to notice that plugin versions are typically not specified in the project's pom, is this correct? How do you know what version it will look for if the version is not specified? Is the version dependent on the specified pluginRepositories? -dh

RE: newbie question

2006-08-28 Thread Charles Griffin
Thanks Odea, I deleted my repository and started from scratch. After that I was able to download a lot of the jars, but I did have to eventually manually install around 9 files manually like you suggested i.e. jaxp, activation, javamail. Thanks again for the help. - Charles I -Origina

Re: newbie question

2006-08-28 Thread Maria Odea Ching
Hi Charles, I've checked some of the jars that weren't being downloaded and I found out that they are not available in the central repo that's why you're getting these errors. Some of the jars only have the poms and checksum files deployed in the repository but not the jar file itself. In this

Re: newbie question

2006-08-28 Thread Maria Odea Ching
Hi Charles, I've checked some of the jars that weren't being downloaded and I found out that they are not available in the central repo that's why you're getting these errors. Some of the jars only have the poms and checksum files deployed in the repository but not the jar file itself. In this

RE: [m2] copy of Central Repository

2006-08-28 Thread Lakshman Srilakshmanan
Hi, You guys were great. You have answered all my questions and hit the nail on the head each and every time. Thanks again, I am now going to charge full steam ahead with trying to setup Proximity. No doubt, Tamás Cservenák will be fielding questions in the Proximity support forum. See you the

Ant Plugin: Java task fails but build succeeds

2006-08-28 Thread Snir Kodesh
I've been following the "Better Builds with Maven" ant plugin creation example (found on 5.4.2) to create an ant plugin which will leverage the task by adding the ant library to the maven-plugin-plugin. I've forked the JVM, specified a classpath, and made the appropriate java calls. Functionally,

Re: Please stop using snapshots.maven.codehaus.org/maven2

2006-08-28 Thread Russ Tremain
At 7:31 AM +1000 8/29/06, Brett Porter wrote: >Do you need a newer release than 1.0? > >http://www.ibiblio.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/ > >- Brett looks like we don't need the snapshot version - so I can disable the old repos. This should solve some other problems as w

Re: Please stop using snapshots.maven.codehaus.org/maven2

2006-08-28 Thread Brett Porter
Do you need a newer release than 1.0? http://www.ibiblio.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/ - Brett On 29/08/06, Russ Tremain <[EMAIL PROTECTED]> wrote: Hi Brett - I just tried using only http://snapshots.repository.codehaus.org/ but maven-build-helper is still in http://

RE: maven2: ant taskdef

2006-08-28 Thread Chris Hilton
Ah, if you need that jar for compilation also, you should probably move that dependency out from under maven-antrun-plugin and make it a general project dependency. Then modify the taskdef line to: Chris > -Original Message- > From: A

RE: maven2: ant taskdef

2006-08-28 Thread Attila Mezei-Horvati
Chris, thanks for the reply. It does help however now I get errors like: package org.apache.xmlbeans does not exist when it tries to compile the classes. I guess I would need to setup the classpath arg somehow for the taskdef. But I am not sure how to do that. Including a link to the repository f

Re: [M2] How to include transitive dependencies with Assembly plugin

2006-08-28 Thread Barrie Treloar
See http://www.nabble.com/forum/ViewPost.jtp?post=5496323&framed=y A dependencySet copies ALL dependencies. So if you get rid of your include statement you will get them all by default. On 8/28/06, hamdard <[EMAIL PROTECTED]> wrote: Hi Is there a way to package the transitive dependencies of

Re: Please stop using snapshots.maven.codehaus.org/maven2

2006-08-28 Thread Russ Tremain
Hi Brett - I just tried using only http://snapshots.repository.codehaus.org/ but maven-build-helper is still in http://snapshots.maven.codehaus.org/maven2/ and we use it. I.e., this dir has no jars: http://repository.codehaus.org/org/codehaus/mojo/build-helper-maven-plugin/ This dir do

[ANN] Maven findbugs plugin 1.0-beta-1 for Maven 2 released

2006-08-28 Thread Carlos Sanchez
This is the first release of the Maven 2 findbugs plugin, which generates reports using the Findbugs tool v 1.0.0 from http://findbugs.sourceforge.net/, a program which looks for bugs in Java code. http://mojo.codehaus.org/findbugs-maven-plugin/ Sample report: http://mojo.codehaus.org/findbugs-m

RE: Tomcat Deploy

2006-08-28 Thread Douglas Ferguson
Maven 2. I just saw that I could setup an specific execution in a profile, this would let me use the ant plugin. Any other ideas? -Original Message- From: Jeff Jensen [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 3:46 PM To: 'Maven Users List' Subject: RE: Tomcat Deploy Mav

RE: Tomcat Deploy

2006-08-28 Thread Jeff Jensen
Maven 1 or 2? -Original Message- From: Douglas Ferguson [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 3:45 PM To: users Subject: Tomcat Deploy We just made the ant to maven switch and we lost our ability to do "file deploy". Which just amounted to copying the files into the c

Tomcat Deploy

2006-08-28 Thread Douglas Ferguson
We just made the ant to maven switch and we lost our ability to do “file deploy”. Which just amounted to copying the files into the context directory. Cargo doesn’t appear to support this, does anybody have an elegant solution? I could just write an ant script but I wanted to piggyback based on the

Re: MRM-153

2006-08-28 Thread Brett Porter
I'll take a look. Did you add tests? BTW, these sorts of questions are perfectly suited to the archiva-dev list. - Brett On 28/08/2006, at 8:36 PM, Nicolas De Loof wrote: I've changed patch to use "archiva" project/package names and to better support maven1 request relocation : "when an

Re: Lucene test fails...

2006-08-28 Thread Brett Porter
Might need to use FileUtils.delete instead of just delete. Please file an issue. On Windows, files sometimes aren't deleted until GC. It's a long standing JVM issue. On 28/08/2006, at 7:00 PM, Nicolas De Loof wrote: When building archiva, I sometime get Failures on some Lucene tests :

Way to run surefire against 1.4 AND 1.5

2006-08-28 Thread shinsato
Is there a way to run tests through the surefire plugin against both a 1.4.2 and a 1.5.0 runtime? This doesn't seem likely, but I had trouble finding the full listing of parameters fore surefire on the website. A related question, if I make the source 1.5 and use the retrotranslator to backgrade

Re: using continuum from a remote repository build thru maven deploy

2006-08-28 Thread Rakesh_Malhotra
My scm repository (cvs) is on a separate unix server and the continuum is running on a linux box. How would I be able to use file protocol?

Re: using continuum from a remote repository build thru maven deploy

2006-08-28 Thread Emmanuel Venisse
It isn't possible to use a remote repository for multi-modules projects. If you can't access to you scm with http, you can use the file protocol. You need to allow it before, check the faq. Emmanuel [EMAIL PROTECTED] a écrit : Hi, I am trying to work with continuum and I have a multi mod

Please stop using snapshots.maven.codehaus.org/maven2

2006-08-28 Thread Brett Porter
Hi, We lost the ability to update the above repository in May, and some references to it are now starting to cause problems as it is being used to try and retrieve things that are not there (for example, you may be getting the plexus-archiver 1.0-alpha-7-SNAPSHOT problem). Please do not us this

Re: Hibernate uploads to ibiblio

2006-08-28 Thread Marina Vatkina
Hi Kohsuke, Kohsuke Kawaguchi wrote On 08/28/06 12:00,: > Hi, Marina, I suspect this is a "bug", but can you confirm? > > I see oracle.toplink.essentials groupId and > oracle.toplink.essentials.agent groupId on the java.net repo, and I > suspect the intended placement was: > > groupId

Re: Hibernate uploads to ibiblio

2006-08-28 Thread Marina Vatkina
Sun has all rights to TopLink Essentials code in GlassFish. Regards, -marina Carlos Sanchez wrote On 08/28/06 12:50,: > and is this toplink an original version from oracle or something > customised by sun? > > I'd suggest using com.oracle.toplink or com.sun.* respectively > > On 8/28/06, Kohsuk

Re: Broken build on Apache Directory Server project

2006-08-28 Thread Carlos Sanchez
Some pom is incorrectly referencing the old codehaus repo. While this gets fixed add to your pom codehaus.org Codehaus Snapshot Development Repository http://snapshots.repository.codehaus.org false it may be repositories instead of pluginRepositories

Re: plugins howto

2006-08-28 Thread Dennis Lundberg
Attila Mezei-Horvati wrote: Hi, I was wondering how can you find plugins (maybe in a repo or something - other than the plugins list in the maven site) and if there is a way to see the goals and the configuration options a plugin can have. Click on "Project Reports" -> "Plugin documentation" i

Re: Broken build on Apache Directory Server project

2006-08-28 Thread Brett Porter
I've let Ersin of Directory know the solution. I'll send a mail to the list explaining what needs to happen. - Brett On 29/08/06, Russ Tremain <[EMAIL PROTECTED]> wrote: our builds are broken too: Missing: -- 1) org.codehaus.plexus:plexus-archiver:jar:1.0-alpha-7-SNAPSHOT Try downlo

Re: Broken build on Apache Directory Server project

2006-08-28 Thread Russ Tremain
our builds are broken too: Missing: -- 1) org.codehaus.plexus:plexus-archiver:jar:1.0-alpha-7-SNAPSHOT Try downloading the file manually from the project website. Then, install it using the command: mvn install:install-file -DgroupId=org.codehaus.plexus -DartifactId=plexus-arc

Re: [m2] copy of Central Repository

2006-08-28 Thread Tamás Cservenák
Hi, correct me if I misunderstand somthing, but you cannot use remote repository (even inhouse/central housed by your company, but it IS remote repository from Maven's aspect) as local repositry and vice versa -- they are not interchangeable, see http://proximity.abstracthorizon.org/repositories

Re: Hibernate uploads to ibiblio

2006-08-28 Thread Carlos Sanchez
and is this toplink an original version from oracle or something customised by sun? I'd suggest using com.oracle.toplink or com.sun.* respectively On 8/28/06, Kohsuke Kawaguchi <[EMAIL PROTECTED]> wrote: Hi, Marina, I suspect this is a "bug", but can you confirm? I see oracle.toplink.essentia

RE: maven2: ant taskdef

2006-08-28 Thread Chris Hilton
Something like this might do the trick: org.apache.maven.plugins maven-antrun-plugin xmlbean package run

[maven 1.x] Need help for passing java arguments

2006-08-28 Thread Ming Cheung
I am using maven 1.1-beta 3. When I added the -Dmaven.junit.jvmargs=-Djava.security.debug=all, I am unable to see the debug information. Could someone please tell me how to pass jvm arguments [ie. -Djava.security.debug=all] to a test/project/junit test? Sincerely, Ming Cheung WebSphere Web Serv

plugins howto

2006-08-28 Thread Attila Mezei-Horvati
Hi, I was wondering how can you find plugins (maybe in a repo or something - other than the plugins list in the maven site) and if there is a way to see the goals and the configuration options a plugin can have. thanks, Attila __ Do You Yahoo!? Ti

maven2: ant taskdef

2006-08-28 Thread Attila Mezei-Horvati
Hi, In my old ant build file I had something like: How can I translate this in maven ant task? I need to generate xmlbeans from the xsd files. thanks, Attila __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around

Broken build on Apache Directory Server project

2006-08-28 Thread Emmanuel Lecharny
Hi guys,starting this morning, our build is totally broken due to a update somwhere in a metadata. i'm not able to interpret the logs I get when doing a mvn -X. Can somebody give us a hand and try to fix the pb ? Thanks in advance !Emmanuel LécharnyHere is the trace (attached pom.xml):[DEBUG] org.a

using continuum from a remote repository build thru maven deploy

2006-08-28 Thread Rakesh_Malhotra
Hi, I am trying to work with continuum and I have a multi module project. The multi module project in continuum requires a URL reference to the parent POM. I was trying to point the http URL to the parent pom.xml created on remote repository using mvn deploy. Problem I am facing is that the mv

Re: Hibernate uploads to ibiblio

2006-08-28 Thread Kohsuke Kawaguchi
Hi, Marina, I suspect this is a "bug", but can you confirm? I see oracle.toplink.essentials groupId and oracle.toplink.essentials.agent groupId on the java.net repo, and I suspect the intended placement was: groupId -> jar javax.persistence persistenc

Re: maven-artifact-manager plugin?

2006-08-28 Thread Matt Raible
Did you try running "mvn install" again? Maven 1: when something fails to download, something is wrong Maven 2: when something fails to download, run the command again ;-) Matt On 8/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi all, Just had a new user who started new/clean on maven

maven-artifact-manager plugin?

2006-08-28 Thread justin_fung
Hi all, Just had a new user who started new/clean on maven 2.0.4 but when he tried to do a "mvn install" on the project and was pulling things down from the repositories, he got an error indicating "maven-artifact-manager" could not be downloaded. I have it in my local repository and resolved i

Re: Hibernate uploads to ibiblio

2006-08-28 Thread Carlos Sanchez
It comes from https://maven-repository.dev.java.net/nonav/repository/javax.persistence/jars/ because the sun guys put it there, which means it's redistributable. I don't know the reason why it is there but it shouldn't as it's not javax.* stuff, maybe Kohsuke can tell us. It's curious that sourc

Groovy integration

2006-08-28 Thread Clifton Craig
I've been toying with and blogging about the Groovy plugins and tools in the Mojo sandbox. There has recently been an interest in these tools on the Groovy mailing list and I'm wondering if they are being actively maintained. I'm also wondering what the process is for a plugin to graduate from t

Re: Hibernate uploads to ibiblio

2006-08-28 Thread Thomas Van de Velde
Carlos, Oracle's toplink-essentials are uploaded and point to the JPA 1.0 release: http://repo.mergere.com/maven2/javax/persistence/persistence-api/1.0/ http://repo.mergere.com/maven2/javax/persistence/toplink-essentials/1.0/ It's too bad for the Hibernate guys but I am using toplink now. ;-) O

RE: m2eclipse & eclipse:eclipse

2006-08-28 Thread Douglas Ferguson
Yeah, I sorta came to the same conclusion, which makes the m2 external tool feature pretty useless to me. I just started configuring eclipse to run mvn as an external tool and that works really well... D- -Original Message- From: Chris Hilton [mailto:[EMAIL PROTECTED] Sent: Monday, Au

RE: maven emma plugin

2006-08-28 Thread Chris Hilton
There is not as yet an official plugin, but you can download one that's been submitted to the Emma team here: http://sourceforge.net/tracker/index.php?func=detail&aid=1481440&group_i d=108932&atid=651899 You'll have to build it yourself, but I've been using it for over a month without problem. I'

RE: m2eclipse & eclipse:eclipse

2006-08-28 Thread Chris Hilton
> -Original Message- > From: Douglas Ferguson [mailto:[EMAIL PROTECTED] > Sent: Friday, 25 August, 2006 17:53 > To: Maven Users List > Subject: m2eclipse & eclipse:eclipse > > I have a few questsion about m2eclipse: > > 1) When configuring the external tool how do you specify a profile

Re: Repo sync with Ibiblio

2006-08-28 Thread Carlos Sanchez
you have to ask for it, not automated yet On 8/27/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: Hi, Our repository is in the sync scripts of maven (thanks Carlos!), and I'm wondering if I have to do anything specific to get the sync triggered or whether it is now fully automated? Martijn --

Re: Hibernate uploads to ibiblio

2006-08-28 Thread Carlos Sanchez
JPA provided by Hibernate can't be uploaded due to license constraints unless somebody can confirm the other way. Spring it's a matter of having the right poms. The ones in jira are not. On 8/28/06, Thomas Van de Velde <[EMAIL PROTECTED]> wrote: It's hard to believe that after so much time Hibe

RE: NullPointerException in maven-eclipse-plugin while executing "mak e-artifacts" goal

2006-08-28 Thread Sharma, Jaikumar
Thanks Stephane. Yes, I have installed JBoss. Fine, I would install the eclipse in a fresh way and then I would try. Thanks again for your findings. Regards, Jaikumar -Original Message- From: Stéphane Bouchet [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 9:29 PM To: Maven User

Re: NullPointerException in maven-eclipse-plugin while executing "mak e-artifacts" goal

2006-08-28 Thread Stéphane Bouchet
Sharma, Jaikumar a écrit : Thanks Stephane, Please see below. -Original Message- From: Stéphane Bouchet [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 6:33 PM To: Maven Users List Subject: Re: NullPointerException in maven-eclipse-plugin while executing "mak e-artifacts" goa

RE: newbie question

2006-08-28 Thread Charles Griffin
Some additional information. I did a 'mvn clean' I was able to download the plugin jars successfully so I'm able to access the net for the plugins but not for jars needed to perform the compile. C:\eclipse\workspace\AuthenticationService>mvn clean [INFO] Scanning for projects... [INFO] ---

RE: newbie question

2006-08-28 Thread Charles Griffin
I tried turning off the firewall on my pc and network from my home office and got the same error. I am now at work and tried it from this LAN and it made no difference. One thing I noticed is that when I cut and paste http://repo1.maven.org/maven2 into my Mozilla browser, it redirected to htt

RE: [M2] maven-clean-plugin and multi-module build

2006-08-28 Thread Jörg Schaible
ArneD wrote on Monday, August 28, 2006 3:57 PM: > I have a multi-module build. In one of the sub-modules I use the > maven-clean-plugin in the pom.xml as follows: > > > maven-clean-plugin > > > WebContent/WEB-INF/lib >

RE: NullPointerException in maven-eclipse-plugin while executing "mak e-artifacts" goal

2006-08-28 Thread Sharma, Jaikumar
Thanks Stephane, Please see below. -Original Message- From: Stéphane Bouchet [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 6:33 PM To: Maven Users List Subject: Re: NullPointerException in maven-eclipse-plugin while executing "mak e-artifacts" goal Hi, this new functionnalit

Re: How can I change target directory at runtime?

2006-08-28 Thread Galia Angelova
Thank you! This might help if I use variables in pom.xml! :-) Arnaud Bailly <[EMAIL PROTECTED]> wrote: Galia Angelova writes: > Hello Everybody! > > I need to have the results of the compilation, packaging etc. not in > the standart target directory but in onather one. I want to be able to > cha

Re: Failing surefire tests

2006-08-28 Thread Jeff Mutonho
On 8/28/06, Jeff Mutonho <[EMAIL PROTECTED]> wrote: I'm trying to run some junit on one of sub-modules( a webservice project) and am getting a java.lang.ClassNotFoundException: za.co.portal.efulfilment.SomeClass. SomeClass is my war and I've added the war file in my pom's dependency section, as

Re: How can I change target directory at runtime?

2006-08-28 Thread Arnaud Bailly
Galia Angelova <[EMAIL PROTECTED]> writes: > Hello Everybody! > > I need to have the results of the compilation, packaging etc. not in > the standart target directory but in onather one. I want to be able to > change the target directory at runtime. Does anybody know if this is > possible and how?

AW: [m2] "Shortening the Command Line" when executing plugins

2006-08-28 Thread Amshoff Christoph, Köln
Yes, exactly. Just directly copied from the "Guide to Developing Java Plugins": sample.plugin I tried to use the settings.xml in /conf, too, but with no success as well. So what's wrong? Christoph. > -Ursprüngliche Nachricht- > Von: Gareth Tilley [mailto:[EMAIL PROTECTED]

Re: newbie question

2006-08-28 Thread Nick Veys
Is your computer on the internet? Are you behind a proxy? You are unable to download every jar, either there's a service interruption on the mirrors or your connection isn't right. On 8/28/06, Charles Griffin <[EMAIL PROTECTED]> wrote: I installed maven2 and am trying to compile a simple class

Re: maven2 archetype questions

2006-08-28 Thread hamdard
Is there support for renaming files based on system properties (such as renameMe.properties -> ${artifactId}.properties)? - Don't think there's any plugin in the maven space. We have written a custom mojo to do this. Drew Pace wrote: > > I've gone through documentation for creating > arche

[M2] maven-clean-plugin and multi-module build

2006-08-28 Thread ArneD
I have a multi-module build. In one of the sub-modules I use the maven-clean-plugin in the pom.xml as follows: maven-clean-plugin WebContent/WEB-INF/lib *

[M2] How to include transitive dependencies with Assembly plugin

2006-08-28 Thread hamdard
Hi Is there a way to package the transitive dependencies of my dependency 'com.mycompany.ixgf:gw-dao', below? Thx pkg zip lib com.mycompany.ixgf:gw-dao -- View this message in context: http://www.nabble.com/

RE: [m2] copy of Central Repository

2006-08-28 Thread Jeff Jensen
Proximity allows configuring which remote repos to automatically download from - including none, enabling manual only. However I don't know about limiting it to one user. I think you need to ask Tamás Cservenák (Proximity author) on the privs capability. He will tell you to post on the Proximity

Failing surefire tests

2006-08-28 Thread Jeff Mutonho
I'm trying to run some junit on one of sub-modules( a webservice project) and am getting a java.lang.ClassNotFoundException: za.co.portal.efulfilment.SomeClass. SomeClass is my war and I've added the war file in my pom's dependency section, as za.co.pragmaticus.portal portal 1.

How can I change target directory at runtime?

2006-08-28 Thread Galia Angelova
Hello Everybody! I need to have the results of the compilation, packaging etc. not in the standart target directory but in onather one. I want to be able to change the target directory at runtime. Does anybody know if this is possible and how? My investigation did not give any positive results.

newbie question

2006-08-28 Thread Charles Griffin
I installed maven2 and am trying to compile a simple class that requires two servicemix jars to compile. I've successfully compiled it in eclipse by just setting up a regular java project and including the servicemix-core-3.0-incubating-SNAPSHOT.jar and servicemix-jbi-3.0-incubating-SNAPSHOT i

maven2 archetype questions

2006-08-28 Thread Drew Pace
I've gone through documentation for creating archetypes and have made a few test ones successfully. The process is simple, but I'm wondering if there's more under the cover besides what the documentation tells. Specifically: 1. Is there a way to just copy over directory structures (even empty di

Re: [m2] "Shortening the Command Line" when executing plugins

2006-08-28 Thread Gareth Tilley
"Amshoff Christoph, Köln" wrote: > > Hi, > > I followed the "Guide to Developing Java Plugins" and performed the > mentioned steps to compile and install the sample plugin. When executing, > the command line "mvn sample.plugin:maven-hello-plugin:sayhi" > is executed successfully. > > But whe

Re: NullPointerException in maven-eclipse-plugin while executing "mak e-artifacts" goal

2006-08-28 Thread Stéphane Bouchet
Hi, this new functionnality is still under dev. It seems you have installed a plugin (org.jbpm.core ) taht is not delivered with the basic eclipse install. the maven plugin tries to create for each eclipse plugin an artifact and install it in our repo. So there is an error with that particul

NullPointerException in maven-eclipse-plugin while executing "mak e-artifacts" goal

2006-08-28 Thread Sharma, Jaikumar
Dear Maven users, Did someone tried maven-eclipse-plugin : version 2.3-SNAPSHOT to build eclipse plugins ? When I run "mvn clean make-artifacts" it is coming out with NullPointeException as appended at the end of the mail. Plugin configuration in my pom.xml is : org.apache.maven.p

Re: Hibernate uploads to ibiblio

2006-08-28 Thread Thomas Van de Velde
Sorry not 1000 but 23 ;-) In any case, up-to-date libraries for Spring and Hibernate would be greatly appreciated. On 8/28/06, Thomas Van de Velde <[EMAIL PROTECTED]> wrote: It's hard to believe that after so much time Hibernate's JPA libraries are still not uploaded. I also noticed that ther

[m2] "Shortening the Command Line" when executing plugins

2006-08-28 Thread Amshoff Christoph, Köln
Hi, I followed the "Guide to Developing Java Plugins" and performed the mentioned steps to compile and install the sample plugin. When executing, the command line "mvn sample.plugin:maven-hello-plugin:sayhi" is executed successfully. But when I try to "shorten the command line" like suggested i

Re: Hibernate uploads to ibiblio

2006-08-28 Thread Thomas Van de Velde
It's hard to believe that after so much time Hibernate's JPA libraries are still not uploaded. I also noticed that there are over 1000 (!) jira issues with upload requests. What is being done about the outdated state of the repository? Also, Spring RC3 is still not up there, even though it's ad

MRM-153

2006-08-28 Thread Nicolas De Loof
I've changed patch to use "archiva" project/package names and to better support maven1 request relocation : "when an artifact OR IT'S CHECKSUM is requested by maven1, Archiva uses the artifact POM and relocation meta-datas to get return the relocated artifact / checksum." Nico. This mess

[Maven 2] How to set lifecyle to execute tests only once

2006-08-28 Thread bdoumas
Hi all, I'm using M2 2.0.3 and i use cobertura for the tests coverage. So i have the 2 plugin in reporting area of my pom : org.codehaus.mojo cobertura-maven-plugin org.apache.maven.plugins maven-surefire-report-plugin But my

how to specify java agent into the pom.xml ?

2006-08-28 Thread Valerio Schiavoni
hello, i have a multi-module project: some of the modules require a javaagent when lanching the test suite. if i pass it as parameter from the command line, like: -DargLine=-javaagent:agent.jar then, the test executor (surefire?) requires it to be present in each submodule directory. How can I

Re: Building C, C++ projects with Maven

2006-08-28 Thread Christophe DENEUX
Hi Roman, For C/C++ project, you can try the native-maven-plugin: http://mojo.codehaus.org/maven-native/native-maven-plugin/. Perhaps it can work for delphi project. Christophe DENEUX / Capgemini Sud / Méditerranée