How to stop maven1 from trying to download sources and javadoc

2010-05-11 Thread emerson cargnin
Since a few weeks ago, the maven1 client started to try to download sources and javadocs of the libraries. Is there any way to stop it from happening_ thanks Emerson

Setting the JDK via property

2009-05-26 Thread emerson cargnin
Hi I need to set the jdk via command line, but having a way to use a default one. In maven one I used:maven.compile.source and maven.compile.target property In maven 2 I found at this page: http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html#compilerArgument It tells:

Re: When using pom hierarchies where is the best place to add the distributionManagement bits?

2009-05-20 Thread emerson cargnin
. About your second sentence, well I'm not sure I understand what you mean. I guess you know that the parent pom will indeed be present locally, be it in the local maven repository or as a project you'll depend on. Cheers 2009/5/19 emerson cargnin echofloripa.y...@gmail.com Hi I have

When using pom hierarchies where is the best place to add the distributionManagement bits?

2009-05-19 Thread emerson cargnin
Hi I have a few leves of hierarquies in our system. What is the suggested place to add the distributionManagement tag? For building I will use projects individually, so I will check out only the project without the parents. regards Emerson

assembly plugin can find the assemblies

2009-05-15 Thread emerson cargnin
I have two projects that are children of a pom type project. When I build them alone it works fine, but if I try to build them from the parent pom level, it tells it can't find the assemblies. This is what I have on the child pom: build plugins

Re: Building for different environments - how do _you_ do it?

2008-06-04 Thread emerson cargnin
I use something similar in our company. For each project I have a central set of resource files, and one file for each environment. Those are merged during deployment. I use maven to build a generic war file, as the resources are left separately in the webserver. Using anthill, we get get war

Saxon 8.8 in the maven repository

2008-04-29 Thread emerson cargnin
Anyone knows why there is no saxon 8.8 on maven repository? thanks emerson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Dependency between projects....

2008-01-14 Thread emerson cargnin
Hi guys, I have a question here about maven and dependency. I have two different projects, A and B, which I'm tagging separately. Inside the two projects I have clients modules (let's say AC and BC) which are used respectivelly by the other project. How in this situation should I change the

Re: wagon-ftp release to work with site

2007-12-11 Thread emerson cargnin
any idea? On 10/12/2007, emerson cargnin [EMAIL PROTECTED] wrote: Hi I'm trying to use maven2 site deployment. One issue is that i can't use ssh for infra-structure, and i would like to use ftp for that. I get the error: --- Wagon

Re: dashboard and site plugin

2007-12-07 Thread emerson cargnin
JIRA issue for this problem with a sample project as attachment ? Best regards David emerson cargnin wrote: Erez I presume you don't have any sub-project with a . on the name : ) emerson On 05/12/2007, Erez Nahir [EMAIL PROTECTED] wrote: So am I. Like every other 1.0

Re: dashboard and site plugin

2007-12-06 Thread emerson cargnin
with no issues. On Dec 5, 2007 7:16 PM, Mick Knutson [EMAIL PROTECTED] wrote: http://mojo.codehaus.org/dashboard-maven-plugin/index.html I love the plugin and it works great On Dec 5, 2007 6:00 AM, emerson cargnin [EMAIL PROTECTED] wrote: Hi guys, after a long while I got the dashboard

Dashboard plugin/aggregate report and site plugin.

2007-12-05 Thread emerson cargnin
Hi guys, after a long while I got the dashboard to work, although the usage page is really misleading. I put here ( http://echofloripa.blogspot.com/2007/12/maven2-dashboard-plugin.html ) a how-to on how make the basic feature of it to work, as in there the plugin version is missing on the pom and

dashboard and site plugin

2007-12-05 Thread emerson cargnin
Hi guys, after a long while I got the dashboard to work, although the usage page is really misleading. I put here ( http://echofloripa.blogspot.com/2007/12/maven2-dashboard-plugin.html ) a how-to on how make the basic feature of it to work, as in there the plugin version is missing on the pom and

Re: Cargo issues

2007-09-07 Thread emerson cargnin
Hi guys I created a maven2 archetype with cargo using the command: mvn archetype:create -DarchetypeGroupId=org.codehaus.cargo -DarchetypeArtifactId=cargo-archetype-webapp-functional-tests-module -DarchetypeVersion=version -DgroupId=application groupId -DartifactId=application artifactId as

Re: how to use the same jar in the maven repository but in another java version?

2007-05-22 Thread emerson cargnin
the maven-jar-plugin or the maven-assembly-plugin to add classifiers to the artifacts when their profiles are active. There's some decent material on the sonatype website that explains it: http://www.sonatype.com/book/profiles.html#Classifiers Cheers Jo On 5/21/07, emerson cargnin [EMAIL

how to use the same jar in the maven repository but in another java version?

2007-05-21 Thread emerson cargnin
Hi all I'm using maven 1.1. I have two multi-build projects that depend on same jars. But one is to be compiled in 1.4 and the other in 1.5. The thing is that the 1.4 one tries to dowload from the maven repository, as it has a newer date (as it was run by cruisecontrol) and ends up having

Re: Maven users in the industry

2007-05-17 Thread emerson cargnin
Hi guys, I'm preparing a report to tell the advantages to migrate from maven 1 to maven 2. It would be really nice to share your views. I would start with: Maven2 pros: - Release procedure inexistent in maven1 - Faster build (is any benchmarks?) - transitive dependencies - More reproducible

memory settings for site generation

2007-05-03 Thread emerson cargnin
Hi I'm using the latest maven-1.1-RC1-SNAPSHOT. I ended up with the following memory OPTS that enabled the site for one quite big multiproject to be run without getting out of memory errors: export MAVEN_OPTS=-Xmx2600m -XX:MaxPermSize=512m The think is that, using top, it reaches 80% Then

Re: mulktiproject:site getting compiler errors

2007-05-02 Thread emerson cargnin
a preGoal, but I wouldn't recommend that in general. HTH, -Lukas emerson cargnin wrote: Hi all I'm getting compiler errors when build using multiproject:site, so that I neede to run multiproject:intall before, what then solved the problem. Just to clarify my understanding, the multiproject:site

Re: mulktiproject:site getting compiler errors

2007-05-02 Thread emerson cargnin
a chain of goals, write your own custom goal. Check the scripting docs on the maven site: http://maven.apache.org/maven-1.x/reference/scripting.html Cheers, -Lukas emerson cargnin wrote: ok, i don't do any special configuration when running multiproject:install, our default goal. Does

mulktiproject:site getting compiler errors

2007-04-30 Thread emerson cargnin
Hi all I'm getting compiler errors when build using multiproject:site, so that I neede to run multiproject:intall before, what then solved the problem. Just to clarify my understanding, the multiproject:site is not suppose to also compile all of the projects? do I need to do it in a different

how to get a timestamp in the site generation

2007-04-30 Thread emerson cargnin
Is there a way to put a timestamp in the generated maven site? I read the thread and page below, but i couldn't find how to enable the site to have the date and/or time in it(s) page(s). I'm using maven 1.1 http://maven.apache.org/maven-1.x/plugins/site/changes-report.html

Re: maven 1.0.2 to 1.1 beta 3

2007-04-27 Thread emerson cargnin
to disable some of the checks? I just ran checkstyle on a project with 207 files, the checkstyle-summary-report.xml is 5450 bytes and it took exactly 1 minute, so 4mins for your project doesn't surprise me. -Lukas emerson cargnin wrote: i found out that the part that takes the most of time (4 minutes

Re: maven 1.1 site generation

2007-04-27 Thread emerson cargnin
, emerson cargnin [EMAIL PROTECTED] wrote: Hi In the site generated, the left column, with the sub projects (Projects title), the name of the projects goes out of the column when it's more than abount 21 chars. In the 1.0.2 it was alright, does anyone know how to correct it? thanks emerson

Re: maven 1.1 site generation

2007-04-27 Thread emerson cargnin
but it keeps getting the central part of the page below everything... Emerson On 27/04/07, Lukas Theussl [EMAIL PROTECTED] wrote: ${maven.docs.src}/style/project.css See http://maven.apache.org/maven-1.x/plugins/xdoc/. HTH, -Lukas emerson cargnin wrote: I tried it and then although

1.1 RC1 with doccheck plugin

2007-04-26 Thread emerson cargnin
Hi all I installed the plugin correctly with maven plugin:download -DgroupId=doccheck -DartifactId=maven-doccheck-plugin -Dversion=1.4-0.1 And i put the jar on the correct maven repository, besides putting on the remote server (as the remote didn't work i put manually on the local):

Re: 1.1 RC1 with doccheck plugin

2007-04-26 Thread emerson cargnin
yes, worked now : ) thanks On 26/04/07, Lukas Theussl [EMAIL PROTECTED] wrote: user/.maven/repository/doccheck/jars/doccheck_1.2b2.jar It should be $HOME/.maven/repository/doccheck/jars/doccheck-1.2b2.jar HTH, -Lukas

Re: maven 1.1 site generation

2007-04-25 Thread emerson cargnin
of *different* errors (ie if you have 10 javadocs missing, this is counted as 1 error message). The total number of individual errors is given in the detailed reports (eg all.html). I guess the dashboard counts the total number. HTH, -Lukas emerson cargnin wrote: Hi there The dash board is behaving

maven 1.1 site generation

2007-04-24 Thread emerson cargnin
Hi In the site generated, the left column, with the sub projects (Projects title), the name of the projects goes out of the column when it's more than abount 21 chars. In the 1.0.2 it was alright, does anyone know how to correct it? thanks emerson

Re: maven 1.1 site generation

2007-04-24 Thread emerson cargnin
you want that we change it. Arnaud On 24/04/07, emerson cargnin [EMAIL PROTECTED] wrote: Hi In the site generated, the left column, with the sub projects (Projects title), the name of the projects goes out of the column when it's more than abount 21 chars. In the 1.0.2 it was alright, does

Re: maven 1.0.2 to 1.1 beta 3

2007-04-23 Thread emerson cargnin
/resources.html HTH, -Lukas emerson cargnin wrote: actually it was for not having the include/ node insde the includes/ :) and maven 1.0.2 didn't complain of this... now i got another challenge. I had the following: build sourceDirectorysrc/main/java/sourceDirectory

Re: maven 1.0.2 to 1.1 beta 3

2007-04-23 Thread emerson cargnin
anyone has any clue how I could investigate this better??? thanks On 20/04/07, emerson cargnin [EMAIL PROTECTED] wrote: ok thanks a lot would anyone else have a clue why my build hangs for so long on the following point? [exec] checkstyle:report-internal: [exec] [mkdir] Created

Re: maven 1.0.2 to 1.1 beta 3

2007-04-23 Thread emerson cargnin
=${maven.docs.outputencoding} outputMode=xml prettyPrint=true/ that's the raw report... and the file generated has 3088523 bytes. Is it normal? thanks emerson On 23/04/07, emerson cargnin [EMAIL PROTECTED] wrote: anyone has any clue how I could investigate this better??? thanks On 20/04

Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin
pomVersion3/pomVersion. HTH, -Lukas emerson cargnin wrote: Hi there I'm trying to convert our 1.0.2 project.xml to 1.1 beta 3. i'm getting the following error for the project.xml down below: [exec] Starting the reactor... [exec] BUILD FAILED [exec] File.. file

Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin
Emerson On 20/04/07, Lukas Theussl [EMAIL PROTECTED] wrote: http://emma.sourceforge.net/faq.html#q.antfailure HTH, -Lukas emerson cargnin wrote: I corrected those problems, now i'm getting the following: [exec] Unable to obtain goal [site] -- file:/C:/Documents and Settings/EmersonC/.maven

Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin
com.mycompany.MyTestTest failed [exec] --- I thought that during site generation a error in a test wouldn't avoid the site to be created. Is there any property i should use?? thanks emerson On 20/04/07, emerson cargnin [EMAIL

Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin
... Cheers, -Lukas emerson cargnin wrote: I'm now trying the last RC1, as someone suggested in another thread, but now when trying to generate the site I'm getting: [exec] --- [exec] BUILD FAILED [exec

Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin
On 20/04/07, Lukas Theussl [EMAIL PROTECTED] wrote: emerson cargnin wrote: Thanks for the reply lukas. 1) do you run checkstyle? if so, you didn't noticed it takes a quite while to generate the reports? in this line it stops for 3 or 4 minutes [exec] [checkstyle] Running

Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin
guys On 20/04/07, emerson cargnin [EMAIL PROTECTED] wrote: ok thanks a lot would anyone else have a clue why my build hangs for so long on the following point? [exec] checkstyle:report-internal: [exec] [mkdir] Created dir: /subversion/users/client/cruise/checkout/build-projet

Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin
, emerson cargnin [EMAIL PROTECTED] wrote: by the way, I'm using this on my build.properties: maven.repo.remote=http://localrepo/maven/,http://repo1.maven.org/maven,http://people.apache.org/repo/m1-snapshot-repository I tried to clean my .maven repository and cache, but it didn't solve the problem

Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin
? On 20/04/07, Lukas Theussl [EMAIL PROTECTED] wrote: It seems like you have a problem with line endings (/directory\r\n\t\t\t\t\tincludes), try to remove that block and run a dummy goal, (maven clean), if that succeeds, the pom was parsed correctly. -Lukas emerson cargnin wrote: well, another

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: Benchmark M1 - M2

2007-04-19 Thread emerson cargnin
PROTECTED] wrote: 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

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
snapshot label trick you as to its quality. One of the reasons I suggest the upgrade is because I think more 1.1 plugins support that JVM property, and I'm not sure if the ones you need work with 1.0.2. Quoting emerson cargnin [EMAIL PROTECTED]: sorry, i forgot, we use manen 1.0.2, e i configured

maven 1.0.2 to 1.1 beta 3

2007-04-12 Thread emerson cargnin
Hi there I'm trying to convert our 1.0.2 project.xml to 1.1 beta 3. i'm getting the following error for the project.xml down below: [exec] Starting the reactor... [exec] BUILD FAILED [exec] File.. file:/C:/Documents and

parallel building

2007-04-10 Thread emerson cargnin
Is there any way to make multi modules (regarding to both maven 1 and maven 2) builds to work in parallel when it detects a project has no dependencies (that need to be built beforehand)? thanks emerson - To unsubscribe,

Re: parallel building

2007-04-10 Thread emerson cargnin
it is at it. IMHO it'd be a very powerful addition - if you've got something like an 8-core mac, it'd be nice to keep more of it busy. Even farming out builds to separate machines (something I believe XCode can do) would be even nicer... Maybe there's a JIRA issue for this. On 10/04/07, emerson

Re: m1 - m2 and the maven-one-plugin

2007-01-29 Thread emerson cargnin
any one know about it? On 26/01/07, emerson cargnin [EMAIL PROTECTED] wrote: Does this plugin generates the POM's taking in account the recursive dependencies? I mean, if a module depends on two modules (on maven1) and one of them depends on the other, my final POM will still have the two

Re: m1 - m2 and the maven-one-plugin

2007-01-26 Thread emerson cargnin
Does this plugin generates the POM's taking in account the recursive dependencies? I mean, if a module depends on two modules (on maven1) and one of them depends on the other, my final POM will still have the two of them? as it would be unecessary. does it work for multi-projects? On 13/01/07,

Re: Maven sIte generation from cruisecontrol

2006-11-29 Thread emerson cargnin
Does anyone know about this problem??? On 27/11/06, emerson cargnin [EMAIL PROTECTED] wrote: Hi there I'm generating the maven site from cruisecontrol. When i try to generate manually i get the error: ... ... ... xdoc:generate-from-pom: [echo] Generating xdocs from POM ... BUILD FAILED

Maven sIte generation from cruisecontrol

2006-11-27 Thread emerson cargnin
Hi there I'm generating the maven site from cruisecontrol. When i try to generate manually i get the error: ... ... ... xdoc:generate-from-pom: [echo] Generating xdocs from POM ... BUILD FAILED File.. /subversion/users/svnclient/.maven/cache/maven-xdoc-plugin-1.8/plugin.jelly

Re: Apply license to all java files?

2006-11-22 Thread emerson cargnin
checkstyle, as its name says, just check... On 21/11/06, Alexandre Russel [EMAIL PROTECTED] wrote: It is a checkstyle feature. It is probably possible to do it with this plugin alex On Tuesday 21 November 2006 12:16, Wim Deblauwe wrote: Hi, does anybody know of a Maven plugin (or some other

Maven-Proxy error

2006-09-13 Thread emerson cargnin
Hi all to use maven-proxy with maven 2, should I configure the maven2 repository? the original configuration in the maven-proxy.properties points to http://www.ibiblio.org/maven: #www.ibiblio.org repo.www-ibiblio-org.url=http://www.ibiblio.org/maven

Re: exporting database files through maven 1.0.2

2006-09-11 Thread emerson cargnin
I thought I was the last one to be using maven 1.0.2. But planning to upgrade already, heheheh :) On 11/09/06, Arnaud HERITIER [EMAIL PROTECTED] wrote: You can use the torque plugin http://db.apache.org/torque/releases/torque-3.2/maven-plugin/goals.html Arnaud On 9/7/06, manoj kaushik [EMAIL

How to get all the tests run even if an error occur in a maven multiproject

2006-05-30 Thread emerson cargnin
, but that would make the build to be successful, even if an error happens. Im using maven 1.0.2 and cruisecontrol 2.5. Emerson Cargnin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to get all the tests run even if an error occur in a maven multiproject

2006-05-30 Thread emerson cargnin
I know I can use it (and maven.test.error.ignore), the problem is that the build doens't fail at the end... On 30/05/06, Roland Asmann [EMAIL PROTECTED] wrote: Use '-Dmaven.test.failure.ignore=true'. Roland On Tuesday 30 May 2006 19:09, emerson cargnin wrote: How do i get a maven

Re: How to get all the tests run even if an error occur in a maven multiproject

2006-05-30 Thread emerson cargnin
. For a complete list of options see 'mvn -h'. Marcel --- emerson cargnin [EMAIL PROTECTED] wrote: I know I can use it (and maven.test.error.ignore), the problem is that the build doens't fail at the end... On 30/05/06, Roland Asmann [EMAIL PROTECTED] wrote: Use

automatically building just dependencies

2005-10-31 Thread emerson cargnin
Is there a way a multi module project to build just the given module and its dependencies?? Emerson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

error in maven 1.1 beta 2

2005-09-23 Thread emerson cargnin
I' having the following error when trying to run the site goal (the following stack-trace was from building the subproject directly, althought i have the same error for the multiproject): [echo] Generating the Change Log... maven-changelog-plugin:report: [echo] Generating the changelog

error in maven 1.1 beta 2

2005-09-23 Thread emerson cargnin
I' having the following error when trying to run the site goal (the following stack-trace was from building the subproject directly, althought i have the same error for the multiproject): [echo] Generating the Change Log... maven-changelog-plugin:report: [echo] Generating the changelog

Error in maven 1.1 beta 2

2005-09-23 Thread emerson cargnin
I' having the following error when trying to run the site goal (the following stack-trace was from building the subproject directly, althought i have the same error for the multiproject): [echo] Generating the Change Log... maven-changelog-plugin:report: [echo] Generating the changelog

Re: Personalize my framework with Maven Project

2005-09-23 Thread emerson cargnin
sorry to invade ur post, but I can't send emails to the email list :( On 23/09/05, Marouane Amraoui [EMAIL PROTECTED] wrote: Hi all; i m developing a framework and i have some services in. i want to use maven inorder to chose witch service to be included in my generated framework jar.

Error in maven 1.1 beta 2

2005-09-23 Thread emerson cargnin
I' having the following error when trying to run the site goal (the following stack-trace was from building the subproject directly, althought i have the same error for the multiproject): [echo] Generating the Change Log... maven-changelog-plugin:report: [echo] Generating the changelog

tests not being run

2005-09-16 Thread emerson cargnin
I'm using maven 1.1 beta 2, win xp I have a multiproject and my tests are not being run. Junit tests summary: Tests Errors FailuresSuccess rateTime(s) 0 0 0 ? 0.00 But the tests appear at tests xref. I don't have any property telling the tests to

Re: [ANN] Maven 1.1 Beta 2 Released

2005-09-12 Thread emerson cargnin
I started to have the following exception after installed beta 2: __ __ | \/ |__ _Apache__ ___ | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~ |_| |_\__,_|\_/\___|_||_| v. 1.1-beta-2 build:start: multiproject:projects-init: [echo] Gathering project list Starting the reactor...

Fwd: [ANN] Maven 1.1 Beta 2 Released

2005-09-12 Thread emerson cargnin
Hu I was testing mavenbook with maven 1.0.2, I had to update changelog plugin in order to succefull build the site. I used the command: maven plugin:download -Dmaven.repo.remote=http://www.ibiblio.org/maven, http://cvs.apache.org/repository/ -DgroupId=maven

Re: Advised Continous Integration tool?

2005-09-09 Thread emerson cargnin
for someone who is using maven1, what would be the best option? We have also a big project using multiproject feature. We are intending to use CC, and as someone just said continuum is more integrated with maven2, i'm not sure if its worth to give a try. Thanks Emerson On 09/09/05, [EMAIL