Strange M2 behavior

2005-11-05 Thread Oscar Picasso
Hi, I have happily used maven 1.0 and trying to switch to M2 mainly because I want to work with modules. But I have some difficulties to understand how it is supposed to work. I have tried the following: mvn archetype:create -DgroupId=org.trial -DartifactId=test cd test mvn jar:jar and I get

Re: Strange M2 behavior

2005-11-05 Thread Oscar Picasso
hours in a day. So I missed the obvious. Oscar --- Kenney Westerhof [EMAIL PROTECTED] wrote: On Sat, 5 Nov 2005, Oscar Picasso wrote: Hi, I have happily used maven 1.0 and trying to switch to M2 mainly because I want to work with modules. But I have some difficulties to understand how

Re: Strange M2 behavior

2005-11-05 Thread Oscar Picasso
-- Kenney Westerhof [EMAIL PROTECTED] wrote: On Sat, 5 Nov 2005, Oscar Picasso wrote: ... Furthermore in any case the resulting jar contains the following: META-INF/ META-INF/MANIFEST.MF ... META-INF/maven/ META-INF/maven/org.trial/ META-INF/maven/org.trial/test/ META-INF/maven

Site and multi-modules projects

2005-11-10 Thread Oscar Picasso
Hi, With maven 2.0 there is a problem when build a site for a multi-modules project. The individual modules sites are properly build but not the links between the root project and its modules (see http://www.mail-archive.com/users@maven.apache.org/msg21517.html). Today I have installed

Site and multi-modules projects

2005-11-10 Thread Oscar Picasso
Hi, With maven 2.0 there is a problem when build a site for a multi-modules project. The individual modules sites are properly build but not the links between the root project and its modules (see http://www.mail-archive.com/users@maven.apache.org/msg21517.html). Today I have installed

[m2] deploy and ssh_agent

2005-11-11 Thread Oscar Picasso
Hi, If my settings.xml contains the username, and passphrase I can deploy to the distribution repository. If I remove the username and passphrase from the settings.xml, maven prompts me several times for a password on deployement. I can use ssh_agent directly from the shell, but how to 'tell'

Third party jar deployment

2005-11-11 Thread Oscar Picasso
Hi, How do I deploy a third party jar to a remote repostory. I have read that the best way is to user mvn deploy. But obviously that's not enough. But where do I put the jar to be deployed? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the

Re: Third party jar deployment

2005-11-11 Thread Oscar Picasso
I solved this by extracting the third party into a target/classes folder. It works but there is surely somehing more elegant. --- Oscar Picasso [EMAIL PROTECTED] wrote: Hi, How do I deploy a third party jar to a remote repostory. I have read that the best way is to user mvn deploy

[m2] Exclude some modules

2005-11-11 Thread Oscar Picasso
Is it possible to exclude some a set of modules to be use during a phase run. for example, with something like this: mvn deploy -Dexclude=my-excluded-set __ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com

Re: [m2] maven-jdepend-plugin:FATAL error, NullPointerException

2005-11-12 Thread Oscar Picasso
--- Brett Porter [EMAIL PROTECTED] wrote: That's the Maven 1.x plugin. The error reporting is a known bug. groupIdorg.codehuas.mojo/groupId artifactIdjdepend-maven-plugin/artifactId I have tried this one (I guess that the groupId is actually org.codehaus.mojo. I get The plugin

Re: [m2] maven-jdepend-plugin:FATAL error, NullPointerException

2005-11-13 Thread Oscar Picasso
--- Brett Porter [EMAIL PROTECTED] wrote: Not sure who put that statement up, but that's not entirely true. It's possible the jdepend plugin hasn't been released as I don't think it has received full testing yet. You can still build it from SVN. Most of the other plugins there have had

Re: Root pom - very basic question

2005-11-13 Thread Oscar Picasso
You may want to look at: http://maven.apache.org/guides/getting-started/index.html#How%20do%20I%20build%20more%20than%20one%20project%20at%20once? --- Jerarckill - ANS [EMAIL PROTECTED] wrote: Hello everybody. I have read quite few times people speaking about a root pom, extended

Re: Third party jar deployment

2005-11-13 Thread Oscar Picasso
at this guide. Quite simple but does the job : http://maven.apache.org/guides/mini/guide-installing-3rd-party-jars.html On 11/11/05, Oscar Picasso [EMAIL PROTECTED] wrote: I solved this by extracting the third party into a target/classes folder. It works but there is surely somehing more

Parent POM, properties and scm problem

2007-07-30 Thread Oscar Picasso
Hi, In the parent POM I have the following: [...] properties scmConnection http://localhost/repos/repo/${groupId}/${artifactId}/trunk/scmConnection /properties scm connection${scmConnection}/connection developerConnection${scmConnection}/developerConnection /scm [...] The

Re: Parent POM, properties and scm problem

2007-07-30 Thread Oscar Picasso
I have also noticed the same behavior with the project url, the sit url and the scm url even if in the effective the corresponding properties are correct (without the artifactId appended). On 7/30/07, Oscar Picasso [EMAIL PROTECTED] wrote: Hi, In the parent POM I have the following

Re: Parent POM, properties and scm problem

2007-08-01 Thread Oscar Picasso
project. Since it ownly appends the name on a multi-module project, I'm trying to figure out how you locally check out your project... perhaps create a trunks-style setup in your version control would be best? Eric On 7/30/07, Oscar Picasso [EMAIL PROTECTED] wrote: I have also noticed

Re: Parent POM, properties and scm problem

2007-08-02 Thread Oscar Picasso
organizational pom by itself, and have your projects use it, from the repository, as a parent for definition purposes, though not build purposes. I'd be interested to know whether this works. It seems useful. -- Bryan -Original Message- From: Oscar Picasso [mailto:[EMAIL PROTECTED] Sent

Weird properties subsitution in windows

2007-08-02 Thread Oscar Picasso
Hi, --- Here is my setting.xml: settings profiles profile iddefault/id activation activeByDefault/ /activation properties myusernamemy username/myusername mypasswordsecret/mypassword

Setting home in continuum windows service

2007-08-02 Thread Oscar Picasso
Hi, I want the builds launched by continuum to use jdk1.5 while the default in my windows machine is jdk1.4. When doing a manual start with run.bat it can be done by setting the JAVA_HOME in run.bat like that: [...] rem At runtime, the current directory will be that of Wrapper.exe rem :startup

Jetty port in 1.1-beta-1

2007-08-02 Thread Oscar Picasso
Hi, I am trying to install continuum 1.1-beta-1. In apps/continuum/conf/application.xml I see a reference to jetty.port. Where are supposed to set this property? Thanks Oscar

Re: M2 POM Url protected

2007-08-07 Thread Oscar Picasso
Thanks. It works fine. Though actually you have to write: http://username:[EMAIL PROTECTED]:port/path/pom.xml On 8/6/07, Emmanuel Venisse [EMAIL PROTECTED] wrote: you can use an url like that: http:username:[EMAIL PROTECTED] :port/path/pom.xml Oscar Picasso a écrit : Hi, On continuum

[Help] Where to change a template?

2007-08-15 Thread Oscar Picasso
Hi, I badly need to solve the problem below in order to use continuum. Any idea ? Oscar -- Forwarded message -- From: Oscar Picasso [EMAIL PROTECTED] Date: Aug 13, 2007 2:53 PM Subject: Where to change a template? To: [EMAIL PROTECTED] Hi, I am trying to change the View.vm

Report url

2007-04-05 Thread Oscar Picasso
Hi, I use continuum to build some ant based projects. For these projects I have set an email notification in the web interface. But this notification report url points to a wrong host and a wrong port. I get: Online report :

JXR and Javadocs

2005-02-17 Thread Oscar Picasso
Hi, For my site I generate javadocs for all classes and members in protected scope and above. I also use the jxr plugin to generate cross reference of sources for all classes in package private scope and above. The problem is that there are no javadocs for the package private classes but jxr

Re: Project configuration with 3rd party package dependencies

2005-02-17 Thread Oscar Picasso
I have a related question. Is it possible to upload a resource to ibiblio even if we are not related to its development? For example I use 'some-userful.jar' in an open source project. The resource 'some-userful.jar' itself is open source but I am not its author. I would find more convenient

Cruisecontrol plugin not running

2005-02-22 Thread Oscar Picasso
Hi, I am trying to run the cruisecontrol-1.6 plugin. I leave all properties to their default values except: maven.cruisecontrol.checkout.dir = target/checkouts maven.cruisecontrol.home = /usr/local/cruisecontrol I cannot make it work. I do: maven scm:checkout-project== BUILD SUCCESSFUL

RE: [FEEDBACK] Cruisecontrol plugin not running

2005-02-23 Thread Oscar Picasso
--- Vincent Massol [EMAIL PROTECTED] wrote: I recommend using the CC version from SVN Trunk which I've fixed and that's working with CC 2.2.1. Actually I'd love feedback from a CVS user as I've tested It only with SVN. I tried codehaus.org/~vmassol/maven-cruisecontrol-plugin-1.7-SNAPSHOT.jar

Re: Log4J and JUnit in Maven

2005-02-24 Thread Oscar Picasso
Hi Tood, Here is what I have done. I have put log4j.properties in basedir/src/conf/ On project.xml: ... build ... sourceDirectorysrc/java/sourceDirectory unitTestSourceDirectorysrc/test/unitTestSourceDirectory unitTest includes

Ant build.xml and multiple maven.repo.remote

2005-02-25 Thread Oscar Picasso
Hi, I there a mean to create a working build.xml with the ant plugin when our project uses more than one remote repository? From what I see, the ant plugin only takes ibiblio into account. Thanks Oscar __ Do you Yahoo!? Yahoo! Sports - Sign

Xdoc : menu order, arbitrary lists

2005-02-26 Thread Oscar Picasso
Hi, I have wo questions regarding xdoc. 1- If I use a navigation.xml I always get the following order in my navigation menu: - my custom navigation - the google search form (when search/ is used). - the auto generated docs for the project. Is there a way to specify the relative order of these 3

RE: Ant build.xml and multiple maven.repo.remote

2005-02-26 Thread Oscar Picasso
--- Arnaud HERITIER [EMAIL PROTECTED] wrote: [...] If you're able to provide a patch it will help us ;-) I could give it a try. But could you give some advise in that respect. When working on a plugin, say ant, if I need to test it against some arbitrary project. I do something like: $ maven

RE: Ant build.xml and multiple maven.repo.remote

2005-02-26 Thread Oscar Picasso
--- Arnaud HERITIER [EMAIL PROTECTED] wrote: [...] Finally I'm working on your issue (and some others) ;-) Can you open it on Jira please ? [...] Done: MPANT-24. Oscar __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection

Rsync staged site deploy hangs

2005-02-28 Thread Oscar Picasso
Hi, Not sure this is a maven specific question. When I do: $ maven site:publish I get: ... [echo] Executing rsync on stage server to publish to live server [echo] executable: ssh and it hangs. I can do direct deployments without problem to both the stage and publish sites. I tried

Configuring Continuum to start automatically on Fedora Core 4

2005-11-20 Thread Oscar Picasso
Hi, I am trying to configure contiuum to start automatically on Fedora Core 4. I have adapted from the documentation because on FC4 we need special comments on the script and FC4 does not have update-rc.d. Here is what I have done: - added the following comments to run.sh # chkconfig:

Re: Configuring Continuum to start automatically on Fedora Core 4

2005-11-21 Thread Oscar Picasso
-boot.html? Emmanuel Oscar Picasso a écrit : Hi, I am trying to configure contiuum to start automatically on Fedora Core 4. I have adapted from the documentation because on FC4 we need special comments on the script and FC4 does not have update-rc.d. Here is what I have done

[m2] Properties files

2005-11-24 Thread Oscar Picasso
Hi, In m1 we could use user specific properties in the pom and these properties could be read from some properties files. What is the similar functionality in m2? Here is what I have found that is somewhat related - you can user -Dsome.property=some.value = It doesn't use a file. -

RE: [m2] Properties files

2005-11-24 Thread Oscar Picasso
with valus to be configured by the developer in settings.xml. See http://maven.apache.org/guides/introduction/introduction-to-profiles.html The profile is enabled using aProfileName because is not working yet. Martin -Oorspronkelijk bericht- Van: Oscar Picasso [mailto:[EMAIL PROTECTED

release : Unable to check for local modifications

2008-03-31 Thread Oscar Picasso
Hi, When I do a release:prepare I get an Unable to check for local modifications (see below). From the logs it seems the problem come when maven tries to execute svn --non-interactive status. However if I execute svn --non-interactive status, it works fine. Any idea ? Thanks

Clover and multimodules jbi projects

2008-04-07 Thread Oscar Picasso
Hi, I have a multimodule jbi project where some of the submodules do not have java sources. This generate and error with clover : *** ERROR: No source files specified USAGE: com.cenqua.clover.CloverInstr [OPTIONS] PARAMS [FILES...] Is there a way to prevent the clover plugin to generate an

Release too many test runs

2008-05-09 Thread Oscar Picasso
There are way too many test runs when doing a release. Here are my findings : - With minimal reports: release:prepare - 1 test run release:perform - 2 test runs - With a bunch of reports (including clover...) release:prepare - 1 test run release:perform - 3 test runs How to reduce the number

Pushing changes after release with scm provider

2013-06-18 Thread Oscar Picasso
Hi, We are using Jazz RTC as our source control system. The RTC remote repository workspace is configured with a flow target stream. However when doing a maven release the changeset are not delivered to the target stream and the snapshot is not promoted to the target stream. Here is our

Force custom mojo to always skip modules

2013-11-21 Thread Oscar Picasso
Hi, I have written a custom plugin. Is it possible to have it always to skip the modules in multimodule projects. I have made several trials like overriding MavenProject.getModules() to return an empty but with not luck. Oscar

Re: Force custom mojo to always skip modules

2013-11-22 Thread Oscar Picasso
2013 21:50:26 +0100 schreef Oscar Picasso oscarpica...@gmail.com: Hi, I have written a custom plugin. Is it possible to have it always to skip the modules in multimodule projects. I have made several trials like overriding MavenProject.getModules() to return an empty but with not luck

Problem with consecutive builds

2005-11-13 Thread Oscar Picasso
Hi, I have tried continuum with a very simple project. The first build works fine. But every subsequent build for the same project fails, whether it is forced or part of a scheduled build. The sent message doesn't tell much Build statistics: State: Error Previous State: Ok ... Changes

Re: Problem with consecutive builds

2005-11-17 Thread Oscar Picasso
didn't do anything related to svn between the consecutive builds. Emmanuel Venisse [EMAIL PROTECTED] wrote: This pb is fixed in 1.0.1 that will be release in few days. Emmanuel Oscar Picasso a écrit : Hi, I have tried continuum with a very simple project. The first build works fine

1.0.3 or 1.1-beta-1 ?

2007-08-02 Thread Oscar Picasso
Hi, I am in the process to migration quite a lot of projects from cruise control. Do you advise to stick with 1.0.3 or can now use 1.1-beta-1 for production? Thanks Oscar

Email notification 1.1-beta-1

2007-08-02 Thread Oscar Picasso
Hi, I have forced to build a project. It succeeded. The project continuum group has an email notifier with events = Error/Failure/Success/Warning. I don't receive any email notification and noticed in the logs: 1603973 [pool-1-thread-1] INFO

M2 POM Url protected

2007-08-06 Thread Oscar Picasso
Hi, On continuum 1.0.3, I want to add a project using M2 POM Url. The urls point to a svn http server which is protected (using basic authenfication I think). When I try to add the M2 POM Url I get [ The URL you provided doesn't exist ] and the logs show: jvm 2| 2007-08-06 14:07:33,204

Hiding arguments

2007-08-09 Thread Oscar Picasso
Hi, I use continuum 1.0.3 to build some ant projects. The project scripts require a password as an argument but I don't this password to be seen by guest users. Is there a mean to hide parts or all of the arguments to the guest user? If currently it's not possible I could write some code to do

Re: Hiding arguments

2007-08-09 Thread Oscar Picasso
Solved. Actually that was very easy. I just changed the View template. On 8/9/07, Oscar Picasso [EMAIL PROTECTED] wrote: Hi, I use continuum 1.0.3 to build some ant projects. The project scripts require a password as an argument but I don't this password to be seen by guest users

Where to change a template?

2007-08-13 Thread Oscar Picasso
Hi, I am trying to change the View.vm template to hide the arguments if the user has no editProject rights. It works fine if I change path-to-continuum\apps\continuum\webapp\templates\screens\View.vm. However when I restart continuum the modified template is replaced with the original one. I

Re: Performance issues with multiple continuum instances on single server

2007-08-27 Thread Oscar Picasso
I have the same problem but when trying to delete the build directly in the database, as explained in another mail in this list, continuum becomes then unusable. Could explain me exactly wich sql do you send to clean a build in the database ? Thanks On 8/16/07, Eric Roberts [EMAIL PROTECTED]