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:
source  The -source argument for the Java compiler.

* Type: java.lang.String
* Required: No
* Expression: ${maven.compiler.source}

Does it mean that the maven.compiler.source can be used as a property
from the mvn command line?
I tried that , but it didn't work.

I know I can also set in the compiler plugin via



org.apache.maven.plugins
maven-compiler-plugin

${my.property}
${my.property}




But then I would need to force everyone to add the property?

emerson

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



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

2009-05-20 Thread emerson cargnin
What about report configuration, is that something you can add to your
top parent pom?

2009/5/19 Baptiste MATHUS :
> Well, I'd say it totally depends on your organization. But I guess you could
> begin by putting the dependencies used very widely (e.g. commons-lang?) in
> your top pom.
>
> 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 
>
>> 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
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>> For additional commands, e-mail: users-h...@maven.apache.org
>>
>>
>
>
> --
> Baptiste  MATHUS - http://batmat.net
> Sauvez un arbre,
> Mangez un castor !
>

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



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

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



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:



maven-assembly-plugin

crawlControl


./assemble/distribution.xml


   



my project has the structure:

parent
|-pom.xml
|
|---module1
  |-pom.xml
  |-assemble
 |-distribution.xml


My log when I run from the top level (from the module it works alright):

[INFO] [jar:jar]
[INFO] Building jar:
C:\dev\svn\modules_m2_exp\webcrawl\crawler\apptus\com.wcr.control\target\com..wcr.control-1.0-SNAPSHOT.jar
[INFO] [assembly:assembly]
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Error reading assemblies: No assembly descriptors found.

[INFO] 
[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Error reading
assemblies: No assembly descriptors found.
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:584)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:513)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:483)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.jav


thanks
Emerson

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



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 and the whole set of resource files, and
for each diffrent deployment, it just merges with a different env file
depending on the environment you are deploying to in anthill. Quite
neat and automated.

regard
Emerson

On 04/06/2008, EJ Ciramella <[EMAIL PROTECTED]> wrote:
> Right, we're doing the same exact thing.  Initially, we'd build a zip
> containing the vanilla ear/war combo, then generate a zip containing all
> the processed resources PER machine (as the appserver config has to be
> different here per app server).
>
> So that was very time consuming, so what I did was write a m2 plugin
> that looks at a set of profiles and generated an xml properties file
> (value) and that was used to parse a set of
> templates.
>
> This too takes quite a while.  CC starts maven, runs some command,
> copies over the resulting xml file, stops the process - all can take 5 -
> 7 min per machine.  Factor 70 or 80 machines and you get the picture.
>
> The final result was to pre-generate the property files.  The part of
> this equation that I'm struggling with (as it seems everyone is doing
> some variation of the above bits) is when standalone module A and
> standalone module B need to both connect to the same database.  We have
> maybe a dozen modules like this and it's nightmarish to think of
> updating 12 different locations with the same DB connection string.  How
> do you share a variable like this without resorting to making the build
> server's settings.xml file widely available?
>
> -Original Message-
> From: Artamonov, Juri [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, June 04, 2008 8:54 AM
> To: Maven Users List
> Subject: RE: Building for different environments - how do _you_ do it?
>
> Here in the company I'm working for I created the model allowing to us
> to be flexible across environments settings.
> If in short then:
>
> 1. We produce every time only single general artifact and not
> environment specific, let's say war file.
> 2. Then we need to deploy it on different environments and for this I
> created environment configuration file which is descriptor of the
> environment.
> 3. Environment descriptor contains information about general settings
> which belong to this environment, about servers and their settings that
> are on this environment and about applications and their settings that
> are on these servers.
> 4. In the same time every produced artifact contains its own descriptor
> and contains for example default values for settings if any.
> 5. Another item in this model is the tool I named installer which takes
> produced artifact and environment descriptor as a input and produce
> customization where as a result you have artifacts specific for the
> server on certain environment. If it's required it also can be deployed
> using the same application.
>
> So, we have general artifact as build result with its own component
> descriptor, self-explained environment descriptor for each environment
> and application which perform actions with the artifacts on specified
> environment using provided environment descriptor.
>
> Best regards,
> Juri.
>
> -Original Message-
> From: EJ Ciramella [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, June 03, 2008 9:15 PM
> To: users@maven.apache.org
> Subject: Building for different environments - how do _you_ do it?
>
> So how are other people building for both dev and other environments?
>
>
>
> For example, how does one support multiple environments like the
> following:
>
>
>
> 1 - Dev integration
>
> 2 - QA stack 1
>
> 3 - QA stack 2
>
> 4 - QA stack 3
>
> 5 - Staging
>
> 6 - Prod
>
> 7 - local developer builds
>
>
>
> How do other people support variables that can be the same from local
> builds through production but support the option to change them at the
> last minute?  Are people building multiple version of say an ear
> deployment to support all the different environments?
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 dependency from the snapshot before releasing? Because I
will have to tag and build from the tag project A, update B to get the
jsut build version of AC, tag the other entire project B with the new
dependency from the project A and make available the new version of BC
to A. But A is already built. ALthough I don't have a circular
dependency a among modules, this circular dependency exists for the
coarse grained projects. To make things worse, project B is a M2 and
project A is M1, making it much complicated to install jars on the
repository.

Also, when I release with M2, does it tags all submodules under the
same root? I'm using Anthill pro, so I would like AHP to do the
tagging, is there a way to avoid m2 to do the tag during release? Does
anyone here uses anthill pro? What would be the best practices
regarding releasing?

Thanks a lot
emerson

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 protocol 'ftp' doesn't support directory copying
>
> I see there is an issue already closed on JIRA:
> http://jira.codehaus.org/browse/WAGONFTP-7
>
> But it seems the latest build is still with the same problem, there
> will be a release with this patch applied? The workaround of copying
> manually doesn't work as the site is not kept together and if I use
> site:stage it also doesn't work.
>
> Emerson
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: dashboard and site plugin

2007-12-07 Thread emerson cargnin
Yes I will do it soon.

Meanwhile, i can't use it anymore as there is no snapshot jar at:
http://snapshots.repository.codehaus.org/org/codehaus/mojo/dashboard-maven-plugin/1.0-SNAPSHOT/

On 06/12/2007, dvicente <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> could you post a  http://jira.codehaus.org/browse/MOJO 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-SNAPSHOT, there are things to improve, but still,
> >> greate work.
> >>
> >> Erez.
> >>
> >> P.S. it works for us on a multi module project 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 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 on the dashboard maven
> >> > > command. The dashboard plugin when using aggragate report, the link
> >> to
> >> > > submodules doesn't work when they have a '.' on it. Aparently it gets
> >> > > clipped after the dot.
> >> > >
> >> > > Also, I got a bit deceptive as I expected the site and dashboard
> >> > > plugin to be stable enough in maven2. The site plugin for
> >> multimodules
> >> > > projects don't work as expected/advertised, for example, the command
> >> :
> >> > >
> >> > > -mvn site:stage
> >> > >
> >> > > Alright that site:site doesn't work as m1, it's said in the faq also.
> >> > > But the site:stage command, which the faq tells is the right way to
> >> > > get the muilti-module site structure together. Well it just doesn't
> >> > > happen and someone on the maven IRC channel said it has issues.
> >> > >
> >> > > Don't want to start fud here, I'm just a bit down as I've been
> >> > > advertising a lot maven 2 to substitute maven1 where I work, using as
> >> > > main arguments that maven 2 is much more stable and mature. But i see
> >> > > it's not quite the case. I really hope I'm wrong.
> >> > >
> >> > > Emerson
> >> > >
> >> > > -
> >> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> > > For additional commands, e-mail: [EMAIL PROTECTED]
> >> > >
> >> > >
> >> >
> >> >
> >> > --
> >> > Thanks,
> >> > Mick Knutson
> >> >
> >> > http://www.baselogic.com
> >> > http://www.blincmagazine.com
> >> > http://www.djmick.com
> >> > http://www.myspace.com/mickknutson
> >> > http://www.myspace.com/BLiNCMagazine
> >> > http://tahoe.baselogic.com
> >> > ---
> >> >
> >>
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
>
> --
> View this message in context: 
> http://www.nabble.com/dashboard-and-site-plugin-tf4949858s177.html#a14191216
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: dashboard and site plugin

2007-12-06 Thread emerson cargnin
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-SNAPSHOT, there are things to improve, but still,
> greate work.
>
> Erez.
>
> P.S. it works for us on a multi module project 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 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 on the dashboard maven
> > > command. The dashboard plugin when using aggragate report, the link to
> > > submodules doesn't work when they have a '.' on it. Aparently it gets
> > > clipped after the dot.
> > >
> > > Also, I got a bit deceptive as I expected the site and dashboard
> > > plugin to be stable enough in maven2. The site plugin for multimodules
> > > projects don't work as expected/advertised, for example, the command :
> > >
> > > -mvn site:stage
> > >
> > > Alright that site:site doesn't work as m1, it's said in the faq also.
> > > But the site:stage command, which the faq tells is the right way to
> > > get the muilti-module site structure together. Well it just doesn't
> > > happen and someone on the maven IRC channel said it has issues.
> > >
> > > Don't want to start fud here, I'm just a bit down as I've been
> > > advertising a lot maven 2 to substitute maven1 where I work, using as
> > > main arguments that maven 2 is much more stable and mature. But i see
> > > it's not quite the case. I really hope I'm wrong.
> > >
> > > Emerson
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
> > --
> > Thanks,
> > Mick Knutson
> >
> > http://www.baselogic.com
> > http://www.blincmagazine.com
> > http://www.djmick.com
> > http://www.myspace.com/mickknutson
> > http://www.myspace.com/BLiNCMagazine
> > http://tahoe.baselogic.com
> > ---
> >
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 on the dashboard maven
command. The dashboard plugin when using aggragate report, the link to
submodules doesn't work when they have a '.' on it. Aparently it gets
clipped after the dot.

Also, I got a bit deceptive as I expected the site and dashboard
plugin to be stable enough in maven2. The site plugin for multimodules
projects don't work as expected/advertised, for example, the command :

-mvn site:stage

Alright that site:site doesn't work as m1, it's said in the faq also.
But the site:stage command, which the faq tells is the right way to
get the muilti-module site structure together. Well it just doesn't
happen and someone on the maven IRC channel said it has issues.

Don't want to start fud here, I'm just a bit down as I've been
advertising a lot maven 2 to substitute maven1 where I work, using as
main arguments that maven 2 is much more stable and mature. But i see
it's not quite the case. I really hope I'm wrong.

Emerson

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 on the dashboard maven
command. The dashboard plugin when using aggragate report, the link to
submodules doesn't work when they have a '.' on it. Aparently it gets
clipped after the dot.

Also, I got a bit deceptive as I expected the site and dashboard
plugin to be stable enough in maven2. The site plugin for multimodules
projects don't work as expected/advertised, for example, the command :

-mvn site:stage

Alright that site:site doesn't work as m1, it's said in the faq also.
But the site:stage command, which the faq tells is the right way to
get the muilti-module site structure together. Well it just doesn't
happen and someone on the maven IRC channel said it has issues.

Don't want to start fud here, I'm just a bit down as I've been
advertising a lot maven 2 to substitute maven1 where I work, using as
main arguments that maven 2 is much more stable and mature. But i see
it's not quite the case. I really hope I'm wrong.

Emerson

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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= -DgroupId=
-DartifactId=

as showed in the instructions in the cargo webpage.
problems:

1- the package it uses is different form the package refered by the
group-id and the one used for the classes, but the package declaration
uses another one (that i can't remember as I changed already)
2- After correcting the above it runs ok but I get a :

---
 T E S T S
---
Running com.yelltest.it.WebappTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.546 sec

Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

[INFO] [cargo:stop {execution: stop}]
[INFO] [beddedLocalContainer] Jetty 6.x Embedded is stopping...
[INFO] [.JettyExecutorThread] Ignoring unimplemented method server.destroy()
[INFO] 
[ERROR] FATAL ERROR
[INFO] 
[INFO] Failed to stop the Jetty 6.x Embedded container.
Deployable failed to finish deploying within the timeout period
[12]. The Deployable state is thus unknown.
[INFO] 
[INFO] Trace
org.codehaus.cargo.container.ContainerException: Failed to stop the
Jetty 6.x Embedded container.
at 
org.codehaus.cargo.container.spi.AbstractLocalContainer.stop(AbstractLocalContainer.java:185)
at 
org.codehaus.cargo.maven2.ContainerStopMojo.execute(ContainerStopMojo.java:48)
at 
org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:443)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:539)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:480)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:459)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:311)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:278)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:143)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:280)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.codehaus.cargo.container.ContainerException: Deployable
failed to finish deploying within the timeout period [12]. The De
ployable state is thus unknown.
at 
org.codehaus.cargo.container.spi.deployer.DeployerWatchdog.watch(DeployerWatchdog.java:109)
at 
org.codehaus.cargo.container.spi.AbstractLocalContainer.waitForCompletion(AbstractLocalContainer.java:205)
at 
org.codehaus.cargo.container.spi.AbstractLocalContainer.stop(AbstractLocalContainer.java:180)
... 19 more
[INFO] [.JettyExecutorThread] Ignoring unimplemented method server.destroy()

On 27/08/07, Manuel J. Recena Soto <[EMAIL PROTECTED]> wrote:
> Hi Alexander:
>
> On Sat, 25 Aug 2007 20:14:39 -0400, Alexander Sack wrote
> > Does anyone have Cargo working?  If so, could you post a sample POM?
> >  I would really appreciate it.
> >
> > -aps
> >
> > --
> > "What lies behind us and what lies in front of us is of little
> > concern to what lies within us." -Ralph Waldo Emerson
>
> This is a example with Cargo:
> http://www.manuelrecena.com/blog/uploads/code_snippets/cargo_plugin_conf.txt
>
> Regards,
>
> --
> Manuel J. Recena Soto
> * www.manuelrecena.com[/blog]
> * [EMAIL PROTECTED]
> * +34 609710280 (ES)
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2007-05-22 Thread emerson cargnin

thanks Jo, but it's not a maven 2 feature?

On 21/05/07, Jo Vandermeeren <[EMAIL PROTECTED]> wrote:

Hi,

If you are making multiple artifacts from one module, you should definitely
use classifiers for the build artifacts.
Otherwise, they get mixed up and you end up with garbage.

You can configure 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 PROTECTED]> wrote:
>
> 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
> incompatibility. Besides disabling cruisecontrol to upload the
> generated files, how could I manage this sharing of jar in two
> different versions?
>
> thanks
> emerson
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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
incompatibility. Besides disabling cruisecontrol to upload the
generated files, how could I manage this sharing of jar in two
different versions?

thanks
emerson

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 builds

thanks
emerson

On 13/04/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

> -Original Message-
> From: Pilgrim, Peter
> Sent: 11 April 2007 17:51
> To: users@maven.apache.org
> Subject: RE: Maven users in the industry
>
> UBS Investment Bank within Post Trade Services
(Maven 2.0)
Unsubscribing myself. Finishing UBS contract. Upwards and onwards to
find the next one!

--
Peter Pilgrim
UBS Investment Bank,
Client Portal Dev LDN,
Triton Court, 14 Finsbury Square, London, EC2A 1PD
United Kingdom (  +44 (0)207 56 75692 )
:: Java EE Spring 2.0 Hibernate 3.2 Development ::

Visit our website at http://www.ubs.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mails are not encrypted and cannot be guaranteed to be secure or
error-free as information could be intercepted, corrupted, lost,
destroyed, arrive late or incomplete, or contain viruses.  The sender
therefore does not accept liability for any errors or omissions in the
contents of this message which arise as a result of e-mail transmission.
If verification is required please request a hard-copy version.  This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities
or related financial instruments.

UBS Limited is a company registered in England & Wales under company
number 2035362, whose registered office is at 1 Finsbury Avenue,
London, EC2M 2PP, United Kingdom.

UBS AG (London Branch) is registered as a branch of a foreign company
under number BR004507, whose registered office is at
1 Finsbury Avenue, London, EC2M 2PP, United Kingdom.

UBS Clearing and Execution Services Limited is a company registered
in England & Wales under company number 03123037, whose registered
office is at 1 Finsbury Avenue, London, EC2M 2PP, United Kingdom.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 when I run from inside CC, it gets to the top of the memory (as
shown in top). Furthermore, i couldn't run more than one site at the
same time.
This server has 2 gig memory. From sub-project to sub-project, the
memory just doesn't goes down.

I have a not related question, regarding to checkstyle, is it possible
on a multi module project to get statistics of which problems occurs
most? This would be a useful multiproject report.

Thanks
emerson

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: mulktiproject:site getting compiler errors

2007-05-02 Thread emerson cargnin

thank you very much.
Emerson

On 02/05/07, Arnaud HERITIER <[EMAIL PROTECTED]> wrote:

You can also set the property maven.multiproject.site.goals

For example maven.multiproject.site.goals=clean
,multiproject:artifact-callback,site

Arnaud

On 02/05/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
>
> I'm not sure I follow you. As I said, the site goal only builds the
> site, it doesn't do anything else. If you want to run another goal every
> time you run site, you can bind it to a pre/postGoal, eg
>
>
>  
>
>
> If you just want to define 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 the site runs install as
> > well?? if not, how can I force it to do it? so that the site would
> > also install the jar on the local repository? Of course without having
> > to build everything again...
> >
> > thanks
> > emerson
> >
> > On 30/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
> >
> >> multiproject:site only runs the site goal for all sub-projects, if any
> >> of those depend on a certain artifact to be installed, you need to do
> >> that separately. Depending on your setup, you might try to enforce the
> >> installation via 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 is not
> >> > suppose to also compile all of the projects? do I need to do it in a
> >> > different way/configuration to ensure that all modules are been
> >> > recompiled?
> >> >
> >> > thanks
> >> > emerson
> >> >
> >> > -
> >> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> > For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >> -
> >> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: mulktiproject:site getting compiler errors

2007-05-02 Thread emerson cargnin

ok, i don't do any special configuration when running
multiproject:install, our default goal. Does the site runs install as
well?? if not, how can I force it to do it? so that the site would
also install the jar on the local repository? Of course without having
to build everything again...

thanks
emerson

On 30/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:

multiproject:site only runs the site goal for all sub-projects, if any
of those depend on a certain artifact to be installed, you need to do
that separately. Depending on your setup, you might try to enforce the
installation via 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 is not
> suppose to also compile all of the projects? do I need to do it in a
> different way/configuration to ensure that all modules are been
> recompiled?
>
> thanks
> emerson
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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
http://www.mail-archive.com/users@maven.apache.org/msg64440.html

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 way/configuration to ensure that all modules are been
recompiled?

thanks
emerson

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 the project names fit in the box the
> right part of the page looses the configuration. where should I put
> the overinding css file to be included (initially I fixed directly in
> the maven-base.css )?
>
> thanks
> emerson
>
> On 24/04/07, Arnaud HERITIER <[EMAIL PROTECTED]> wrote:
>
>> It's certainly a problem in the stylesheet.
>> in the maven-base.css there's a fixed width :
>>
>> #leftColumn (line 58)
>>
>> {
>>
>>  width: 150px;
>>
>>  float: left;
>>
>> }
>> You can try to override this style in your own project.css
>> Open an issue in the xdoc plugin you 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
>> > anyone know how to correct it?
>> >
>> > thanks
>> > emerson
>> >
>> > -
>> > To unsubscribe, e-mail: [EMAIL PROTECTED]
>> > For additional commands, e-mail: [EMAIL PROTECTED]
>> >
>> >
>>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.1 site generation

2007-04-27 Thread emerson cargnin

I tried it and then although the project names fit in the box the
right part of the page looses the configuration. where should I put
the overinding css file to be included (initially I fixed directly in
the maven-base.css )?

thanks
emerson

On 24/04/07, Arnaud HERITIER <[EMAIL PROTECTED]> wrote:

It's certainly a problem in the stylesheet.
in the maven-base.css there's a fixed width :

#leftColumn (line 58)

{

 width: 150px;

 float: left;

}
You can try to override this style in your own project.css
Open an issue in the xdoc plugin you 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
> anyone know how to correct it?
>
> thanks
> emerson
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-27 Thread emerson cargnin

I was using standard CS configuration, when i switch for our own
configuration, it got a lot faster. Thanks for the help.
Emerson

On 23/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:

3Ms is certainly a big file especially since the raw reports are
probably bigger... did you try already 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 for
> 500 files) is
>
>   input="${maven.checkstyle.output.xml}"
>  output="checkstyle-summary-report.xml"
>  outputDirectory="${maven.checkstyle.dir}"
>  stylesheet="${plugin.resources}/checkstyle-summary.jsl"
>  encoding="${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/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/modules/com.company.java/target/generated-xdocs/checkstyle
>>
>> >
>> >
>> >
>> > 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 Checkstyle 4.1 on 416 files
>> > > > [exec] checkstyle:report-internal:
>> > > > [exec] [mkdir] Created dir:
>> > > >
>> 
/subversion/users/svnclient/cruise/checkout/build-ucssearch/modules/com.yell.searchengine/target/generated-xdocs/checkstyle
>>
>> > >
>> > > Yes I do run checkstyle, and as I said, I haven't noticed any
>> > > performance problems. However, if I understand correctly from your
>> > > snippet, your build hangs in the checkstyle:report-internal goal.
>> This
>> > > goal is run after checkstyle has processed the source code and all it
>> > > does is generate the xdocs from the checkstyle xml output via some
>> jelly
>> > > scripts. So the problem doesn't seem to be related to checkstyle,
>> but I
>> > > have no idea what it could be...
>> > >
>> > > > 2) Do you need to put the emma.jar in your jre lib/ext ???
>> > >
>> > > No, I just downloaded the emma plugin (maven plugin:download) and ran
>> > > 'maven emma'. No other preparation needed.
>> > >
>> > > -Lukas
>> > >
>> > > -
>> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
>> > > For additional commands, e-mail: [EMAIL PROTECTED]
>> > >
>> > >
>> >
>>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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):

user/.maven/repository/doccheck/jars/doccheck_1.2b2.jar

but now i keep getting the error message:


   [exec] Trying to get missing dependencies (and updated snapshots)
required by Maven DocCheck Plug-in:
[exec] - Attempting to download doccheck:doccheck:1.2b2:jar from
http://repo1.maven.org/maven
[exec] - Attempting to download doccheck:doccheck:1.2b2:jar from
http://people.apache.org/repo/m1-snapshot-repository/
[exec] - Attempting to download doccheck:doccheck:1.2b2:jar from
http://mavenserver/maven/
[exec] 
---
[exec] BUILD FAILED
[exec] 
---
[exec] Errors stack :
[exec] >> Unable to obtain goal [multiproject:site]
[exec] >> File..
file:/subversion/users/client/.maven/cache/maven-multiproject-plugin-1.5.1-20070323.003129/plugin.jelly
[exec] >> Element... maven:reactor
[exec] >> Line.. 103
[exec] >> Column 9
[exec] >> Unable to obtain goal [site]
[exec] >> File..
file:/subversion/users/client/.maven/cache/maven-xdoc-plugin-1.10.1-20070322.235745/plugin.jelly
[exec] >> Element... attainGoal
[exec] >> Line.. 1172
[exec] >> Column 48
[exec] >> The build cannot continue because of the following
unsatisfied dependency:
[exec] - doccheck:doccheck:1.2b2:jar (try downloading from
http://java.sun.com/j2se/javadoc/doccheck/)

[exec] 
---
[exec] Total time   : 7 seconds
[exec] Finished at  : 26 April 2007 12:28:41 BST
[exec] Final Memory : 12M/32M
[exec] 
---

BUILD FAILED


Thanks

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.1 site generation

2007-04-25 Thread emerson cargnin

ah, you are right, I'm sorry for this : )

On 24/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:

The checkstyle plugin generates several pages, the overview page
(Checkstyle Results, index.html) and the detailed reports (all, error,
warning, info). The first only counts the number 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 strangely for checkstyle. It tells there
> are  30846 CS errors for a given sub project, when i go to its page it
> has only 94. All the numbers in the main dashboard page don't follow
> what each individual page has.
>
> Does any one have seem this?
>
> thanks
> emerson
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.1 site generation

2007-04-24 Thread emerson cargnin

Hi there

The dash board is behaving strangely for checkstyle. It tells there
are  30846 CS errors for a given sub project, when i go to its page it
has only 94. All the numbers in the main dashboard page don't follow
what each individual page has.

Does any one have seem this?

thanks
emerson

On 24/04/07, Arnaud HERITIER <[EMAIL PROTECTED]> wrote:

It's certainly a problem in the stylesheet.
in the maven-base.css there's a fixed width :

#leftColumn (line 58)

{

 width: 150px;

 float: left;

}
You can try to override this style in your own project.css
Open an issue in the xdoc plugin you 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
> anyone know how to correct it?
>
> thanks
> emerson
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-23 Thread emerson cargnin

i found out that the part that takes the most of time (4 minutes for
500 files) is



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/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/modules/com.company.java/target/generated-xdocs/checkstyle
>
>
>
> 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 Checkstyle 4.1 on 416 files
> > > [exec] checkstyle:report-internal:
> > > [exec] [mkdir] Created dir:
> > > 
/subversion/users/svnclient/cruise/checkout/build-ucssearch/modules/com.yell.searchengine/target/generated-xdocs/checkstyle
> >
> > Yes I do run checkstyle, and as I said, I haven't noticed any
> > performance problems. However, if I understand correctly from your
> > snippet, your build hangs in the checkstyle:report-internal goal. This
> > goal is run after checkstyle has processed the source code and all it
> > does is generate the xdocs from the checkstyle xml output via some jelly
> > scripts. So the problem doesn't seem to be related to checkstyle, but I
> > have no idea what it could be...
> >
> > > 2) Do you need to put the emma.jar in your jre lib/ext ???
> >
> > No, I just downloaded the emma plugin (maven plugin:download) and ran
> > 'maven emma'. No other preparation needed.
> >
> > -Lukas
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 dir:
/subversion/users/client/cruise/checkout/build-projet/modules/com.company.java/target/generated-xdocs/checkstyle



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 Checkstyle 4.1 on 416 files
> > [exec] checkstyle:report-internal:
> > [exec] [mkdir] Created dir:
> > 
/subversion/users/svnclient/cruise/checkout/build-ucssearch/modules/com.yell.searchengine/target/generated-xdocs/checkstyle
>
> Yes I do run checkstyle, and as I said, I haven't noticed any
> performance problems. However, if I understand correctly from your
> snippet, your build hangs in the checkstyle:report-internal goal. This
> goal is run after checkstyle has processed the source code and all it
> does is generate the xdocs from the checkstyle xml output via some jelly
> scripts. So the problem doesn't seem to be related to checkstyle, but I
> have no idea what it could be...
>
> > 2) Do you need to put the emma.jar in your jre lib/ext ???
>
> No, I just downloaded the emma plugin (maven plugin:download) and ran
> 'maven emma'. No other preparation needed.
>
> -Lukas
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-23 Thread emerson cargnin

i get this error while executing the site:

[exec] [junitreport] [Fatal Error] :-1:-1: Premature end of file.
[exec] [junitreport] The file
/subversion/users/svnclient/cruise/checkout/build-module1/modules/com.mycompany.indexing/target/test-reports/TEST-com.mycompany.indexing.framework.batch.MainTest.xml
is not a valid XML document. It is possibly corrupted.
[exec] [junitreport] [Fatal Error] :-1:-1: Premature end of file.
[exec] [junitreport] The file
/subversion/users/svnclient/cruise/checkout/build-module1/modules/com.mycompany.indexing/target/test-reports/TEST-com.mycompany.indexing.xmldatafeed.MainTest.xml
is not a valid XML document. It is possibly corrupted.

the file mentioned has 0 bytes.

does anyone have seem this?

emerson

On 20/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:

See the bottom of this page:
http://maven.apache.org/maven-1.x/using/resources.html

HTH,
-Lukas

emerson cargnin wrote:
> actually it was for not having the  node insde the
>  :) and maven 1.0.2 didn't complain of this...
>
> now i got another challenge. I had the following:
>  
>src/main/java
>
>
>src/main/filters/local.properties
>
>
> but now maven doesn't recognise the  tag.
> In this page:
> 
http://maven.apache.org/maven-1.x/reference/project-descriptor.html#class_Build
>
> it just shows a  tag, which is only a boolean. How i get
> the same behaviour of the other one?
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin

actually it was for not having the  node insde the
 :) and maven 1.0.2 didn't complain of this...

now i got another challenge. I had the following:
 
   src/main/java

   
   src/main/filters/local.properties
   

but now maven doesn't recognise the  tag.
In this page:
http://maven.apache.org/maven-1.x/reference/project-descriptor.html#class_Build
it just shows a  tag, which is only a boolean. How i get
the same behaviour of the other one?

On 20/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:

It seems like you have a problem with line endings
(\r\n\t\t\t\t\t), 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 problem :)
>
> i have the follwing snippet from a project.xml:
>
>
>
> src/test/resources/spring
>**/*.xml
>
>
>
> src/test/resources/spring/adverts
>**/*.xml
>
>
>
> and it gives the following error:
>
> --- Nested Exception ---
> org.codehaus.plexus.util.xml.pull.XmlPullParserException: expected
> START_TAG or END_TAG not TEXT (position: TEXT seen
> ...\r\n\t\t\t\t\t**/*.xmlat
> org.codehaus.plexus.util.xml.pull.MXParser.nextTag(MXParser.java:1080)
>
>
> thanks again and sorry for so many question :)
> Emerson
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin

well, another problem :)

i have the follwing snippet from a project.xml:

   

src/test/resources/spring
   **/*.xml
   
   

src/test/resources/spring/adverts
   **/*.xml
   
   

and it gives the following error:

--- Nested Exception ---
org.codehaus.plexus.util.xml.pull.XmlPullParserException: expected
START_TAG or END_TAG not TEXT (position: TEXT seen
...\r\n\t\t\t\t\t**/*.xml 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 of hanging on the same point...

thanks 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/modules/com.company.java/target/generated-xdocs/checkstyle
>
>
>
> 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 Checkstyle 4.1 on 416 files
> > > [exec] checkstyle:report-internal:
> > > [exec] [mkdir] Created dir:
> > > 
/subversion/users/svnclient/cruise/checkout/build-ucssearch/modules/com.yell.searchengine/target/generated-xdocs/checkstyle
> >
> > Yes I do run checkstyle, and as I said, I haven't noticed any
> > performance problems. However, if I understand correctly from your
> > snippet, your build hangs in the checkstyle:report-internal goal. This
> > goal is run after checkstyle has processed the source code and all it
> > does is generate the xdocs from the checkstyle xml output via some jelly
> > scripts. So the problem doesn't seem to be related to checkstyle, but I
> > have no idea what it could be...
> >
> > > 2) Do you need to put the emma.jar in your jre lib/ext ???
> >
> > No, I just downloaded the emma plugin (maven plugin:download) and ran
> > 'maven emma'. No other preparation needed.
> >
> > -Lukas
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin

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 of hanging on the same point...

thanks 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/modules/com.company.java/target/generated-xdocs/checkstyle



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 Checkstyle 4.1 on 416 files
> > [exec] checkstyle:report-internal:
> > [exec] [mkdir] Created dir:
> > 
/subversion/users/svnclient/cruise/checkout/build-ucssearch/modules/com.yell.searchengine/target/generated-xdocs/checkstyle
>
> Yes I do run checkstyle, and as I said, I haven't noticed any
> performance problems. However, if I understand correctly from your
> snippet, your build hangs in the checkstyle:report-internal goal. This
> goal is run after checkstyle has processed the source code and all it
> does is generate the xdocs from the checkstyle xml output via some jelly
> scripts. So the problem doesn't seem to be related to checkstyle, but I
> have no idea what it could be...
>
> > 2) Do you need to put the emma.jar in your jre lib/ext ???
>
> No, I just downloaded the emma plugin (maven plugin:download) and ran
> 'maven emma'. No other preparation needed.
>
> -Lukas
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin

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/modules/com.company.java/target/generated-xdocs/checkstyle



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 Checkstyle 4.1 on 416 files
> [exec] checkstyle:report-internal:
> [exec] [mkdir] Created dir:
> 
/subversion/users/svnclient/cruise/checkout/build-ucssearch/modules/com.yell.searchengine/target/generated-xdocs/checkstyle

Yes I do run checkstyle, and as I said, I haven't noticed any
performance problems. However, if I understand correctly from your
snippet, your build hangs in the checkstyle:report-internal goal. This
goal is run after checkstyle has processed the source code and all it
does is generate the xdocs from the checkstyle xml output via some jelly
scripts. So the problem doesn't seem to be related to checkstyle, but I
have no idea what it could be...

> 2) Do you need to put the emma.jar in your jre lib/ext ???

No, I just downloaded the emma plugin (maven plugin:download) and ran
'maven emma'. No other preparation needed.

-Lukas

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin

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 Checkstyle 4.1 on 416 files
[exec] checkstyle:report-internal:
[exec] [mkdir] Created dir:
/subversion/users/svnclient/cruise/checkout/build-ucssearch/modules/com.yell.searchengine/target/generated-xdocs/checkstyle

2) Do you need to put the emma.jar in your jre lib/ext ???

thanks a lot

On 20/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:

You could try maven.test.failure.ignore, maven.test.error.ignore (test
plugin) or maven.site.reports.ignoreErrors (site plugin). Or fix the
tests... ;)

Btw, I am running emma with both m102 and 11rc1 without problems and I
haven't noticed any performance degradation when moving from 102 to
11rc1, on the contrary rather...

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]
> 
---
>
> [exec] Errors stack :
> [exec] >> Unable to obtain goal [multiproject:site]
> [exec] >> File..
> 
file:/subversion/users/client/.maven/cache/maven-multiproject-plugin-1.5.1-20070323.003129/plugin.jelly
>
> [exec] >> Element... maven:reactor
> [exec] >> Line.. 103
> [exec] >> Column 9
> [exec] >> Unable to obtain goal [site]
> [exec] >> File..
> 
file:/subversion/users/client/.maven/cache/maven-test-plugin-1.8.1-20070322.234947/plugin.jelly
>
> [exec] >> Element... junit
> [exec] >> Line.. 155
> [exec] >> Column 49
> [exec] >> Test 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
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin

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] 
---
[exec] Errors stack :
[exec] >> Unable to obtain goal [multiproject:site]
[exec] >> File..
file:/subversion/users/client/.maven/cache/maven-multiproject-plugin-1.5.1-20070323.003129/plugin.jelly
[exec] >> Element... maven:reactor
[exec] >> Line.. 103
[exec] >> Column 9
[exec] >> Unable to obtain goal [site]
[exec] >> File..
file:/subversion/users/client/.maven/cache/maven-test-plugin-1.8.1-20070322.234947/plugin.jelly
[exec] >> Element... junit
[exec] >> Line.. 155
[exec] >> Column 49
[exec] >> Test 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 PROTECTED]> wrote:

Hi, thanks, but actually I haven't got any of them in my jre/lib/ext,
and I didn't have when I run 1.0.2 and it worked alright.

I have two other questions if you all allow me:

1- Now with 1.1 beta 3 it seems that checkstyle report generation
takes ages (really, at least 5 minutes for each sub project).

2- when running multiproject:site it seems that dependencies generated
by other java versions are not compatible, so that i need to run
multiproject:intall before running site to have it updated. The site
is not suppose to update the jar for all modules being built?

thanks a lot guys
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/cache/maven-emma-plugin-0.5/plugin.jelly:69:25:
> >  taskdef A class needed by class
> > com.vladium.emma.emmajavaTask cannot be found:
> > org/apache/tools/ant/taskdefs/Java
> > [exec] Total time   : 21 seconds
> > [exec] Finished at  : 20 April 2007 10:23:34 BST
> >
> > Is it the right version of emma for use with mave 1.1 beta 3?
> >
> > thanks
> >
> > On 12/04/07, Arnaud HERITIER <[EMAIL PROTECTED]> wrote:
> >
> >> It's properties/scope
> >>
> >> 
> >>  junit
> >>  junit
> >>  3.8.1
> >>  
> >>test
> >>  
> >> 
> >>
> >> Arnaud
> >>
> >> On 12/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
> >> >
> >> > AFAIK,  is not used in m1, but it is 'supported', and its use is
> >> > even recommended, also in m1, see eg
> >> > http://jira.codehaus.org/browse/MPXDOC-191.
> >> >
> >> > Cheers,
> >> > -Lukas
> >> >
> >> >
> >> > Arnaud HERITIER wrote:
> >> > > provided isn't supported in maven 1
> >> > > Your pom is for maven 2 ?
> >> > >
> >> > > Arnaud
> >> > >
> >> > > On 12/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
> >> > >
> >> > >>
> >> > >> The tag 4.0.0 is for an m2 pom.xml,
> >> in m1
> >> > >> you need 3.
> >> > >>
> >> > >> 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:/C:/Documents and
> >> > >> > Settings/EmersonC/.maven/cache/maven-multiproject-plugin-1.5
> >> > >> /plugin.jelly
> >> > >> > [exec] Element... maven:reactor
> >> > >> > [exec] Line.. 63

Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin

Hi, thanks, but actually I haven't got any of them in my jre/lib/ext,
and I didn't have when I run 1.0.2 and it worked alright.

I have two other questions if you all allow me:

1- Now with 1.1 beta 3 it seems that checkstyle report generation
takes ages (really, at least 5 minutes for each sub project).

2- when running multiproject:site it seems that dependencies generated
by other java versions are not compatible, so that i need to run
multiproject:intall before running site to have it updated. The site
is not suppose to update the jar for all modules being built?

thanks a lot guys
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/cache/maven-emma-plugin-0.5/plugin.jelly:69:25:
>  taskdef A class needed by class
> com.vladium.emma.emmajavaTask cannot be found:
> org/apache/tools/ant/taskdefs/Java
> [exec] Total time   : 21 seconds
> [exec] Finished at  : 20 April 2007 10:23:34 BST
>
> Is it the right version of emma for use with mave 1.1 beta 3?
>
> thanks
>
> On 12/04/07, Arnaud HERITIER <[EMAIL PROTECTED]> wrote:
>
>> It's properties/scope
>>
>> 
>>  junit
>>  junit
>>  3.8.1
>>  
>>test
>>  
>> 
>>
>> Arnaud
>>
>> On 12/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
>> >
>> > AFAIK,  is not used in m1, but it is 'supported', and its use is
>> > even recommended, also in m1, see eg
>> > http://jira.codehaus.org/browse/MPXDOC-191.
>> >
>> > Cheers,
>> > -Lukas
>> >
>> >
>> > Arnaud HERITIER wrote:
>> > > provided isn't supported in maven 1
>> > > Your pom is for maven 2 ?
>> > >
>> > > Arnaud
>> > >
>> > > On 12/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
>> > >
>> > >>
>> > >> The tag 4.0.0 is for an m2 pom.xml,
>> in m1
>> > >> you need 3.
>> > >>
>> > >> 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:/C:/Documents and
>> > >> > Settings/EmersonC/.maven/cache/maven-multiproject-plugin-1.5
>> > >> /plugin.jelly
>> > >> > [exec] Element... maven:reactor
>> > >> > [exec] Line.. 63
>> > >> > [exec] Column 9
>> > >> > [exec] Error parsing project.xml
>> > >> >
>> > 'C:\n&a_reports\site_ucssearch\modules\.\com.company.java\project.xml'
>> > >> > [exec] Total time   : 1 minutes 16 seconds
>> > >> > [exec] Finished at  : 12 April 2007 09:39:16 BST
>> > >> >
>> > >> > thanks
>> > >> > emerson
>> > >> >
>> > >> > 
>> > >> > 
>> > >> > 4.0.0
>> > >> > com.company
>> > >> > com.company.java
>> > >> > com.company.java
>> > >> > 1.0-SNAPSHOT
>> > >> > 
>> > >> > src/java
>> > >> > src/java
>> > >> > 
>> > >> > 
>> > >> > 
>> > >> > src/resources
>> > >> > 
>> > >> > 
>> > >> > 
>> > >> > **/*Test.java
>> > >> > 
>> > >> > 
>> > >> > **/Abstract*Test.java
>> > >> > 
>> > >> > 
>> > >> > 
>> > >> > 
>> > >> > src/resources
>> > >> > 
>> > >> > 
>> > >> > 
>> > >> > 
>> > >> > 
>> > >> > junit
>> > >> > junit
>> > >> > 3.8.1
>> > >> > test
>> > >> > 
>> > >> > 
>> > >> > javax.servlet
>> > >> > servlet-api
>> > >> > 2.3
>> > >> > provided
>> > >> > 
>> > >> > 
>> > >> > regexp
>> > >> > regexp
>> > >> > 1.2
>> > >> > 
>> > >> > 
>> > >> > log4j
>> > >> > log4j
>> > >> > 1.1.3
>> > >> > 
>> > >> > 
>> > >> > spring
>> > >> > spring
>> > >> > 2.0.0
>> > >> > 
>> > >> > 
>> > >> > 
>> > >> > maven-junit-report-plugin
>> > >> > 
>> > >> > 
>> > >> >
>> > >> >
>> -
>> > >> > To unsubscribe, e-mail: [EMAIL PROTECTED]
>> > >> > For additional commands, e-mail: [EMAIL PROTECTED]
>> > >>
>> > >>
>> -
>> > >> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> > >> For additional commands, e-mail: [EMAIL PROTECTED]
>> > >>
>> > >>
>> > >
>> >
>> > -
>> > To unsubscribe, e-mail: [EMAIL PROTECTED]
>> > For additional commands, e-mail: [EMAIL PROTECTED]
>> >
>> >
>>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven 1.0.2 to 1.1 beta 3

2007-04-20 Thread emerson cargnin

I corrected those problems, now i'm getting the following:

[exec] Unable to obtain goal [site] -- file:/C:/Documents and
Settings/EmersonC/.maven/cache/maven-emma-plugin-0.5/plugin.jelly:69:25:
 taskdef A class needed by class
com.vladium.emma.emmajavaTask cannot be found:
org/apache/tools/ant/taskdefs/Java
[exec] Total time   : 21 seconds
[exec] Finished at  : 20 April 2007 10:23:34 BST

Is it the right version of emma for use with mave 1.1 beta 3?

thanks

On 12/04/07, Arnaud HERITIER <[EMAIL PROTECTED]> wrote:

It's properties/scope


 junit
 junit
 3.8.1
 
   test
 


Arnaud

On 12/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
>
> AFAIK,  is not used in m1, but it is 'supported', and its use is
> even recommended, also in m1, see eg
> http://jira.codehaus.org/browse/MPXDOC-191.
>
> Cheers,
> -Lukas
>
>
> Arnaud HERITIER wrote:
> > provided isn't supported in maven 1
> > Your pom is for maven 2 ?
> >
> > Arnaud
> >
> > On 12/04/07, Lukas Theussl <[EMAIL PROTECTED]> wrote:
> >
> >>
> >> The tag 4.0.0 is for an m2 pom.xml, in m1
> >> you need 3.
> >>
> >> 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:/C:/Documents and
> >> > Settings/EmersonC/.maven/cache/maven-multiproject-plugin-1.5
> >> /plugin.jelly
> >> > [exec] Element... maven:reactor
> >> > [exec] Line.. 63
> >> > [exec] Column 9
> >> > [exec] Error parsing project.xml
> >> >
> 'C:\n&a_reports\site_ucssearch\modules\.\com.company.java\project.xml'
> >> > [exec] Total time   : 1 minutes 16 seconds
> >> > [exec] Finished at  : 12 April 2007 09:39:16 BST
> >> >
> >> > thanks
> >> > emerson
> >> >
> >> > 
> >> > 
> >> > 4.0.0
> >> > com.company
> >> > com.company.java
> >> > com.company.java
> >> > 1.0-SNAPSHOT
> >> > 
> >> > src/java
> >> > src/java
> >> > 
> >> > 
> >> > 
> >> > src/resources
> >> > 
> >> > 
> >> > 
> >> > **/*Test.java
> >> > 
> >> > 
> >> > **/Abstract*Test.java
> >> > 
> >> > 
> >> > 
> >> > 
> >> > src/resources
> >> > 
> >> > 
> >> > 
> >> > 
> >> > 
> >> > junit
> >> > junit
> >> > 3.8.1
> >> > test
> >> > 
> >> > 
> >> > javax.servlet
> >> > servlet-api
> >> > 2.3
> >> > provided
> >> > 
> >> > 
> >> > regexp
> >> > regexp
> >> > 1.2
> >> > 
> >> > 
> >> > log4j
> >> > log4j
> >> > 1.1.3
> >> > 
> >> > 
> >> > spring
> >> > spring
> >> > 2.0.0
> >> > 
> >> > 
> >> > 
> >> > maven-junit-report-plugin
> >> > 
> >> > 
> >> >
> >> > -
> >> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> > For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >> -
> >> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >>
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Benchmark M1 - M2

2007-04-19 Thread emerson cargnin

Thanks Jeff, I'll give it a try

On 19/04/07, Jeff Jensen <[EMAIL PROTECTED]> wrote:

1. The problem with only using MAVEN_OPTS is that when plugins fork to run a
task in a separate JVM, the MAVEN_OPTS is not used.  This is where we need to
set the JVM property for the plugin that needs the memory.  I suggest tracking
to the plugin that causes the problem, and set its JVM property if possible.

2. Is it possible for you to try/use m1.1rc1 snapshot?  It is what we use and is
very good/stable (I wouldn't use 1.0.2 instead of 1.1 rc1); hopefully it would
work well for you.  Don't let the "rc1 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 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 FAILED
> > [exec] File..
> >
>
/subversion/users/svnclient/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jelly
> > [exec] Element... maven:reactor
> > [exec] Line.. 103
> > [exec] Column 9
> > [exec] Unable to obtain goal [site] --
> >
>
/subversion/users/svn/.maven/cache/maven-jdepend-plugin-1.5/plugin.jelly:57:26:
> >  java.io.IOException: java.io.IOException: Cannot allocate
> > memory
> >
> > thanks a lot
> > Emerson
> >
> > On 19/04/07, Jeff Jensen <[EMAIL 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 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
> > > >
> > > > -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > >
> > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 FAILED
[exec] File..
/subversion/users/svnclient/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jelly
[exec] Element... maven:reactor
[exec] Line.. 103
[exec] Column 9
[exec] Unable to obtain goal [site] --
/subversion/users/svn/.maven/cache/maven-jdepend-plugin-1.5/plugin.jelly:57:26:
 java.io.IOException: java.io.IOException: Cannot allocate
memory

thanks a lot
Emerson

On 19/04/07, Jeff Jensen <[EMAIL 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 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
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Benchmark M1 - M2

2007-04-19 Thread emerson cargnin

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 FAILED
[exec] File..
/subversion/users/svnclient/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jelly
[exec] Element... maven:reactor
[exec] Line.. 103
[exec] Column 9
[exec] Unable to obtain goal [site] --
/subversion/users/svn/.maven/cache/maven-jdepend-plugin-1.5/plugin.jelly:57:26:
 java.io.IOException: java.io.IOException: Cannot allocate
memory

thanks a lot
Emerson

On 19/04/07, Jeff Jensen <[EMAIL 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 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
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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
Settings/EmersonC/.maven/cache/maven-multiproject-plugin-1.5/plugin.jelly
[exec] Element... maven:reactor
[exec] Line.. 63
[exec] Column 9
[exec] Error parsing project.xml
'C:\n&a_reports\site_ucssearch\modules\.\com.company.java\project.xml'
[exec] Total time   : 1 minutes 16 seconds
[exec] Finished at  : 12 April 2007 09:39:16 BST

thanks
emerson



4.0.0
com.company
com.company.java
com.company.java
1.0-SNAPSHOT

src/java
src/java



src/resources



**/*Test.java


**/Abstract*Test.java




src/resources





junit
junit
3.8.1
test


javax.servlet
servlet-api
2.3
provided


regexp
regexp
1.2


log4j
log4j
1.1.3


spring
spring
2.0.0



maven-junit-report-plugin



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: parallel building

2007-04-10 Thread emerson cargnin

I had a look on Hudson and I think it just distribute different
projects, not the same project build:
https://hudson.dev.java.net/masterSlave.html

I couldn't found in any of Jira projects any thing regarding to
parallel multi module build. Does anyone knows if this search is
right?
:
http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&&pid=10500&pid=11124&pid=11533&pid=11123&pid=11125&pid=11126&pid=11191&pid=11211&pid=11212&pid=11127&pid=11128&pid=11227&pid=11129&pid=11226&pid=11213&pid=11130&pid=11214&pid=11131&pid=11310&pid=11361&pid=11132&pid=11133&pid=11134&pid=11530&pid=11341&pid=11431&pid=11532&pid=11141&pid=11215&pid=11135&pid=11136&pid=11441&pid=11137&pid=11216&pid=11138&pid=11340&pid=11217&pid=11218&pid=11220&pid=11221&pid=11241&pid=11293&pid=11139&pid=11140&pid=11142&pid=11143&pid=11144&pid=11391&pid=11250&pid=11145&pid=11531&pid=11390&pid=11223&pid=11483&pid=11540&pid=11146&pid=11147&pid=11224&pid=11149&pid=11150&pid=11362&pid=11225&pid=11095&pid=11481&pid=10940&pid=0&query=parallel&summary=true&description=true&body=true

Thanks a lot
Emerson

On 10/04/07, Nigel Magnay <[EMAIL PROTECTED]> wrote:

Not as far as I know. The Hudson CI tool claims to be able to parallel build
in the correct order, but I don't know how good 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 cargnin <[EMAIL PROTECTED]> wrote:
>
> 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, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 of them? as it would be unecessary.

does it work for multi-projects?

On 13/01/07, Dennis Lundberg <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > Greetings --
> >
> > I've begun the process of migrating from maven1 to maven2 and I ran across
> > the
> > maven-one-plugin.  It seems that version 1.0 does not contain the
> > functionality to convert a project.xml to a pom.xml.  Is version 1.1
> > archived anywhere?  ...or do I have to grab it from the source repository?
>
> I have just uploaded a 1.1-SNAPSHOT to the Apache snapshot repository.
> Please give it a try and give any feedback you might have to the list.
>
> Read this document if you have not tested development plugins before:
>
> 
http://maven.apache.org/guides/development/guide-testing-development-plugins.html
>
> >  Also, has anyone had success in using the "one:convert" goal?
>
> Yes it works quite well. You still need to tweak the resulting pom.xml
> by hand. But many times you can just run "mvn package" afterwards.
> Sometimes it has difficulties converting the version of a plugins, but
> that is relatively easy to correct.
>
> > http://maven.apache.org/plugins/maven-one-plugin/index.html
> >
> > Thanks,
> > -adrian-
>
> --
> Dennis Lundberg
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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, Dennis Lundberg <[EMAIL PROTECTED]> wrote:

[EMAIL PROTECTED] wrote:
> Greetings --
>
> I've begun the process of migrating from maven1 to maven2 and I ran across
> the
> maven-one-plugin.  It seems that version 1.0 does not contain the
> functionality to convert a project.xml to a pom.xml.  Is version 1.1
> archived anywhere?  ...or do I have to grab it from the source repository?

I have just uploaded a 1.1-SNAPSHOT to the Apache snapshot repository.
Please give it a try and give any feedback you might have to the list.

Read this document if you have not tested development plugins before:

http://maven.apache.org/guides/development/guide-testing-development-plugins.html

>  Also, has anyone had success in using the "one:convert" goal?

Yes it works quite well. You still need to tweak the resulting pom.xml
by hand. But many times you can just run "mvn package" afterwards.
Sometimes it has difficulties converting the version of a plugins, but
that is relatively easy to correct.

> http://maven.apache.org/plugins/maven-one-plugin/index.html
>
> Thanks,
> -adrian-

--
Dennis Lundberg

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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
File.. 
/subversion/users/svnclient/.maven/cache/maven-xdoc-plugin-1.8/plugin.jelly
Element... velocity:merge
Line.. 492
Column 13
Invocation of method 'getText' in  class
org.apache.velocity.anakia.Escape threw exception class
java.lang.NullPointerException : null
Total time: 8 minutes 56 seconds
Finished at: Mon Nov 27 16:24:05 GMT 2006



I found in a list that I should configure the issue traker property in
project.xml. But I still get the same error.

But when I generate through cruisecontrol it works. Really weird...



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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
Element... velocity:merge
Line.. 492
Column 13
Invocation of method 'getText' in  class
org.apache.velocity.anakia.Escape threw exception class
java.lang.NullPointerException : null
Total time: 8 minutes 56 seconds
Finished at: Mon Nov 27 16:24:05 GMT 2006



I found in a list that I should configure the issue traker property in
project.xml. But I still get the same error.

But when I generate through cruisecontrol it works. Really weird...

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 tool) that makes sure
> the approperiate header for a certain license is present in every java
> file? I could ofcourse manually add the notice to every file, but this
> seems like such a common thing that somebody must have made something
> already.
>
> regards,
>
> Wim





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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
repo.www-ibiblio-org.description=www.ibiblio.org
repo.www-ibiblio-org.proxy=one
repo.www-ibiblio-org.hardfail=true
#Cache this repository for 1 hour
repo.www-ibiblio-org.cache.period=3600
repo.www-ibiblio-org.cache.failures=true

#dist.codehaus.org
repo.dist-codehaus-org.url=http://dist.codehaus.org
repo.dist-codehaus-org.proxy=two
repo.dist-codehaus-org.hardfail=false
repo.dist-codehaus-org.cache.period=3600
repo.dist-codehaus-org.cache.failures=true


Emerson

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 PROTECTED]> wrote:
>
> hi everybody
> i want to know that if there is any plugin or way in maven 1.0.2 with
> which
> i can export database files . any help regarding this will be highly
> appreciated.
> thanks in advance
> Manoj Kaushik
>
>




-
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

Yes, I noticed :)
does anyone know how to do that with maven 1.0.2???

On 30/05/06, Marcel Schutte <[EMAIL PROTECTED]> wrote:

Sorry, I missed the maven version you're using. This info is for M2.

--- Marcel Schutte <[EMAIL PROTECTED]> wrote:

> Try 'mvn -fae test'\, I think that is what you need. 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 '-Dmaven.test.failure.ignore=true'.
> > >
> > > Roland
> > >
> > >
> > >
> > > On Tuesday 30 May 2006 19:09, emerson cargnin wrote:
> > > > How do i get a maven multiproject to run all tests, even in
> case
> > of a
> > > > failure or error?
> > > > A multiproject stops in the project that failed, and I want all
> > the
> > > > projects to runm to get all the errors/failures in
> > cruisecontrol.I
> > > > know I could use maven.test.failure.ignore and the error
> > > > correspondent, 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]
> > >
> > >
> > >
> >
> -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
> -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
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 multiproject to run all tests, even in case of a
> failure or error?
> A multiproject stops in the project that failed, and I want all the
> projects to runm to get all the errors/failures in cruisecontrol.I
> know I could use maven.test.failure.ignore and the error
> correspondent, 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]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-05-30 Thread emerson cargnin

How do i get a maven multiproject to run all tests, even in case of a
failure or error?
A multiproject stops in the project that failed, and I want all the
projects to runm to get all the errors/failures in cruisecontrol.I
know I could use maven.test.failure.ignore and the error
correspondent, 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]



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 report
SCM Working Directory: C:\workspace\com.yell.java
SCM Command Line[0]: svn
SCM Command Line[1]: log
SCM Command Line[2]: -v
SCM Command Line[3]: "-r{2005-09-24}:{2005-08-24}"
ChangeSet between 2005-08-24 and 2005-09-24: 0 entries

BUILD FAILED
File.. C:\Documents and Settings\EmersonC\.maven\cache\maven-changelog-plug
n-1.8.2\plugin.jelly
Element... changelog:changelog
Line.. 108
Column -1
java.lang.NullPointerException
Total time   : 2 minutes 5 seconds
Finished at  : 23 September 2005 11:11:09 BST

I have the following common project.xml for every sub-projects:



  3
  com.yell
  1.0
  
  Yell.com
  http://yell.com
  http://www.yell.com/img/yellcom_logo_w.gif
  
  2005

  
  http://trackrecord/cgi-win/itemview.dll
  
  
  
  
C:\Tomcat_5.0\webapps\ROOT\yellProject\${pom.groupId}/${pom.artifactId}
  
  
  
  

scm:svn:http://thames/svn/yelldotcom/trunk/modules/${pom.artifactId}
  
  

scm:svn:http://thames/svn/yelldotcom/trunk/modules/${pom.artifactId}
  
  http://thames/svn/yelldotcom/
  
  
  src
  src
  
  
  **/*Test.java
  **/*TestCase.java
  
  
  
  
  maven-findbugs-plugin
  maven-jdepend-plugin
  maven-checkstyle-plugin
  maven-changes-plugin
  maven-changelog-plugin
  maven-file-activity-plugin
  maven-developer-activity-plugin
  maven-javadoc-plugin
  maven-jxr-plugin
  maven-junit-report-plugin
  maven-tasklist-plugin
  maven-pmd-plugin
  maven-simian-plugin
  maven-faq-plugin
  maven-multiproject-plugin
  maven-multichanges-plugin
  


And the following is the project.xml of this specific sub-project:


  ../com.yell.commonbuild/project.xml
  3
  Java Utils Project
  com.yell.java
  Common utilities classes  used along all
projects
com.yell.java
  1.0-SNAPSHOT
  
  
  junit
  junit
  3.8.1
  jar
  
  
  javax.servlet
  servlet-api
  2.3
  jar
  
  
  regexp
  regexp
  1.2
  jar
  
  
  log4j
  log4j
  1.1.3
  jar
  
  


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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.
>
> exeample :
>
> framework.services :
>log
>security
>fulltext
>persistence
>lock
>...
>
>
> i want to make maven project that let me choise some services
> to include (or exclude) in my jar framework 
>
>
> can you help me ?
>
> thx in advance ..
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
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 report
SCM Working Directory: C:\workspace\com.yell.java
SCM Command Line[0]: svn
SCM Command Line[1]: log
SCM Command Line[2]: -v
SCM Command Line[3]: "-r{2005-09-24}:{2005-08-24}"
ChangeSet between 2005-08-24 and 2005-09-24: 0 entries

BUILD FAILED
File.. C:\Documents and Settings\EmersonC\.maven\cache\maven-changelog-plug
n-1.8.2\plugin.jelly
Element... changelog:changelog
Line.. 108
Column -1
java.lang.NullPointerException
Total time   : 2 minutes 5 seconds
Finished at  : 23 September 2005 11:11:09 BST

I have the following common project.xml for every sub-projects:



   3
   com.yell
   1.0
   
   Yell.com
   http://yell.com
   http://www.yell.com/img/yellcom_logo_w.gif
   
   2005

   
   http://trackrecord/cgi-win/itemview.dll
   
   
   
   
C:\Tomcat_5.0\webapps\ROOT\yellProject\${pom.groupId}/${pom.artifactId}
   
   
   
   
  
scm:svn:http://thames/svn/yelldotcom/trunk/modules/${pom.artifactId}
   
   
  
scm:svn:http://thames/svn/yelldotcom/trunk/modules/${pom.artifactId}
   
   http://thames/svn/yelldotcom/
   
   
   src
   src
   
   
   **/*Test.java
   **/*TestCase.java
   
   
   
   
   maven-findbugs-plugin
   maven-jdepend-plugin
   maven-checkstyle-plugin
   maven-changes-plugin
   maven-changelog-plugin
   maven-file-activity-plugin
   maven-developer-activity-plugin
   maven-javadoc-plugin
   maven-jxr-plugin
   maven-junit-report-plugin
   maven-tasklist-plugin
   maven-pmd-plugin
   maven-simian-plugin
   maven-faq-plugin
   maven-multiproject-plugin
   maven-multichanges-plugin
   


And the following is the project.xml of this specific sub-project:


   ../com.yell.commonbuild/project.xml
   3
   Java Utils Project
   com.yell.java
   Common utilities classes  used along all
projects
 com.yell.java
   1.0-SNAPSHOT
   
   
   junit
   junit
   3.8.1
   jar
   
   
   javax.servlet
   servlet-api
   2.3
   jar
   
   
   regexp
   regexp
   1.2
   jar
   
   
   log4j
   log4j
   1.1.3
   jar
   
   


-
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 report
SCM Working Directory: C:\workspace\com.yell.java
SCM Command Line[0]: svn
SCM Command Line[1]: log
SCM Command Line[2]: -v
SCM Command Line[3]: "-r{2005-09-24}:{2005-08-24}"
ChangeSet between 2005-08-24 and 2005-09-24: 0 entries

BUILD FAILED
File.. C:\Documents and Settings\EmersonC\.maven\cache\maven-changelog-plug
n-1.8.2\plugin.jelly
Element... changelog:changelog
Line.. 108
Column -1
java.lang.NullPointerException
Total time   : 2 minutes 5 seconds
Finished at  : 23 September 2005 11:11:09 BST

I have the following common project.xml for every sub-projects:



   3
   com.yell
   1.0
   
   Yell.com
   http://yell.com
   http://www.yell.com/img/yellcom_logo_w.gif
   
   2005

   
   http://trackrecord/cgi-win/itemview.dll
   
   
   
   
C:\Tomcat_5.0\webapps\ROOT\yellProject\${pom.groupId}/${pom.artifactId}
   
   
   
   
  
scm:svn:http://thames/svn/yelldotcom/trunk/modules/${pom.artifactId}
   
   
  
scm:svn:http://thames/svn/yelldotcom/trunk/modules/${pom.artifactId}
   
   http://thames/svn/yelldotcom/
   
   
   src
   src
   
   
   **/*Test.java
   **/*TestCase.java
   
   
   
   
   maven-findbugs-plugin
   maven-jdepend-plugin
   maven-checkstyle-plugin
   maven-changes-plugin
   maven-changelog-plugin
   maven-file-activity-plugin
   maven-developer-activity-plugin
   maven-javadoc-plugin
   maven-jxr-plugin
   maven-junit-report-plugin
   maven-tasklist-plugin
   maven-pmd-plugin
   maven-simian-plugin
   maven-faq-plugin
   maven-multiproject-plugin
   maven-multichanges-plugin
   


And the following is the project.xml of this specific sub-project:


   ../com.yell.commonbuild/project.xml
   3
   Java Utils Project
   com.yell.java
   Common utilities classes  used along all
projects
 com.yell.java
   1.0-SNAPSHOT
   
   
   junit
   junit
   3.8.1
   jar
   
   
   javax.servlet
   servlet-api
   2.3
   jar
   
   
   regexp
   regexp
   1.2
   jar
   
   
   log4j
   log4j
   1.1.3
   jar
   
   


-
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 report
SCM Working Directory: C:\workspace\com.yell.java
SCM Command Line[0]: svn
SCM Command Line[1]: log
SCM Command Line[2]: -v
SCM Command Line[3]: "-r{2005-09-24}:{2005-08-24}"
ChangeSet between 2005-08-24 and 2005-09-24: 0 entries

BUILD FAILED
File.. C:\Documents and Settings\EmersonC\.maven\cache\maven-changelog-plug
n-1.8.2\plugin.jelly
Element... changelog:changelog
Line.. 108
Column -1
java.lang.NullPointerException
Total time   : 2 minutes 5 seconds
Finished at  : 23 September 2005 11:11:09 BST

I have the following common project.xml for every sub-projects:



3
com.yell
1.0

Yell.com
http://yell.com
http://www.yell.com/img/yellcom_logo_w.gif

2005


http://trackrecord/cgi-win/itemview.dll




C:\Tomcat_5.0\webapps\ROOT\yellProject\${pom.groupId}/${pom.artifactId}





scm:svn:http://thames/svn/yelldotcom/trunk/modules/${pom.artifactId}



scm:svn:http://thames/svn/yelldotcom/trunk/modules/${pom.artifactId}

http://thames/svn/yelldotcom/


src
src


**/*Test.java
**/*TestCase.java




maven-findbugs-plugin
maven-jdepend-plugin
maven-checkstyle-plugin
maven-changes-plugin
maven-changelog-plugin
maven-file-activity-plugin
maven-developer-activity-plugin
maven-javadoc-plugin
maven-jxr-plugin
maven-junit-report-plugin
maven-tasklist-plugin
maven-pmd-plugin
maven-simian-plugin
maven-faq-plugin
maven-multiproject-plugin
maven-multichanges-plugin



And the following is the project.xml of this specific sub-project:


../com.yell.commonbuild/project.xml
3
Java Utils Project
com.yell.java
Common utilities classes  used along all
projects
  com.yell.java
1.0-SNAPSHOT


junit
junit
3.8.1
jar


javax.servlet
servlet-api
2.3
jar


regexp
regexp
1.2
jar


log4j
log4j
1.1.3
jar




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 be skipped
here goes my project.xml file:



   ../com.yell.commonbuild/project.xml
   3
   Thesaurus Subproject
   com.yell.thesaurus
   TODO:put here the proper description for
thesaurus Subproject
   ...
   
   src
   testsrc
   
   
   *Test.java
   *TestCase.java
   
   
   
   com.yell.thesaurus
   1.0-SNAPSHOT
   
...

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 be skipped
here goes my project.xml file:



../com.yell.commonbuild/project.xml
3
Thesaurus Subproject
com.yell.thesaurus
TODO:put here the proper description for
thesaurus Subproject
...

src
testsrc


*Test.java
*TestCase.java



com.yell.thesaurus
1.0-SNAPSHOT

...

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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
-DartifactId=maven-changelog-plugin   -Dversion=1.7

Gonna test my project to see if now it works :)

thanks
Emerson

On 12/09/05, Vincent Massol <[EMAIL PROTECTED]> wrote:
>
>
> > -Original Message-
> > From: Arnaud HERITIER [mailto:[EMAIL PROTECTED]
> > Sent: lundi 12 septembre 2005 12:16
> > To: Maven Users List; [EMAIL PROTECTED]
> > Subject: Re: [ANN] Maven 1.1 Beta 2 Released
> >
> > For your first error, can you launch maven with the -e option to see which
> > pom is invalid ?
> >
> > For your second error you must re-install the findbugs plugin because it
> > was
> > certainly deleted during the installation (it doesn't come with maven).
>
> Also note that you may have some issue with the findbugs plugin and Maven
> 1.1. See http://tinyurl.com/b7ev7
>
> [snip]
> -Vincent
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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...

BUILD FAILED
File.. C:\Documents and Settings\EmersonC\.maven\cache\maven-multiproject-pl
ugin-1.4.1\plugin.jelly
Element... maven:reactor
Line.. 64
Column -1
Unknown error reading project
Total time   : 2 seconds
Finished at  : 12 September 2005 10:58:27 BST

This was when I tried to run multiproject goal, when I try to build a
subproject directly, the following happens:

C:\workspace\com.yell.businessobjects>maven site:deploy
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.1-beta-2

Attempting to download com.yell.java-1.0-SNAPSHOT.jar.
Artifact /com.yell/jars/com.yell.java-1.0-SNAPSHOT.jar doesn't exist in remote r
epository, but it exists locally.
build:start:

site:deploy:
Attempting to download fop-0.20.5.jar.
1484K downloaded
Attempting to download batik-1.5-fop-0.20-5.jar.
2062K downloaded
Attempting to download avalon-framework-4.1.5.jar.
71K downloaded
Attempting to download xalan-2.4.1.jar.
1006K downloaded

BUILD FAILED
File.. C:\Documents and Settings\EmersonC\.maven\cache\maven-xdoc-plugin-1.9
.2\plugin.jelly
Element... attainGoal
Line.. 989
Column -1
No goal [maven-findbugs-plugin:register]
Total time   : 35 seconds
Finished at  : 12 September 2005 11:06:58 BST

Better to go back to 1.1 beta 1?

Emerson

On 12/09/05, Brett Porter <[EMAIL PROTECTED]> wrote:
> The Apache Maven team is pleased to announce the release of Maven 1.1 Beta 2
> 
> http://maven.apache.org/start/download.html
> 
> Maven is a project management and project comprehension tool. Maven is
> based on the concept of a project object model: builds, documentation
> creation, site publication, and distribution publication are all
> controlled from the project object model. Maven also provides tools to
> create source metrics, change logs based directly on source repository,
> and source cross-references.
> 
> For a list of changes since 1.1 beta 1, please see JIRA [2].
> 
> The 1.1 release focuses on the following objectives:
> 
>* Integration of Maven 2 technologies such as Maven Wagon, Maven SCM and 
> the new model code
>* Ant 1.6.5 support, including forkmode="once"
>* Upgrade to later releases of dependencies, in particular Jelly
>* Significant improvements in memory usage
>* Improved POM layout
>* Bugfixes
> 
> With just a few exceptions [1], Maven 1.1 is backwards compatible with Maven 
> 1.0.
> 
> *IMPORTANT: * You must ensure that Maven 1.1 is first in your path if you 
> want to have it installed side-by-side with Maven 1.0.2
> 
> We hope you enjoy using Maven! If you have any questions, please consult:
> 
>* the FAQ: http://maven.apache.org/faq.html
>* the maven-user mailing list: http://maven.apache.org/mail-lists.html
> 
> For news and information, see:
> 
>* Maven Blogs: http://www.mavenblogs.com/
> 
> - The Apache Maven Team
> 
> [1] http://maven.apache.org/reference/backwards-compatibility.html
> [2] 
> http://jira.codehaus.org/secure/ReleaseNote.jspa?version=10211&styleName=Html&projectId=10030&Create=Create
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 PROTECTED]
<[EMAIL PROTECTED]> wrote:
> 
> Hello again.
> 
> The Maven ClearCase plugin doesn't help in it self - in that it is mostly a
> wrapper
> over the Ant "cc" target-set.
> They may help you to operate on, for instance, a "build number" property
> file or the likes.
> 
> The CI tools needs to be able to get modification notificatios from the SCM
> subsystem, in
> order to schedule builds for any given component.
> 
> Currently we're using the "pull" method (for each N minutes, scan view X
> for changes on
> branch Y) in CruiseControl, but I'm led to believe work is underway to
> support dynamic
> modification events ("push") from ClearCase.
> This would possibly be done with triggers, but I'm not too sure about that.
> 
> 
> - Reply to All the Original Message -
> Author:  Wim Deblauwe
> To:Maven Users List
> Date:  08.09.2005 17:20:25
> Subject: Re: Advised Continous Integration tool?
> 
> > We are using ClearCase also, so your information is very valuable. I saw
> > there is a Maven plugin for CruiseControl. Doesn't that help?
> >
> > regards & thank you already for everybody's replies,
> >
> > Wim
> >
> > 2005/9/8, [EMAIL PROTECTED]
> <[EMAIL PROTECTED]>:
> > >
> > >
> > > I'd say its much up to your environment and your other requirements.
> > >
> > > We've got (struggling with?) ClearCase and therefore we needed a CI
> tool
> > > that sat well on top of it.
> > >
> > > I couldn't get Luntbuild to work with dynamic views (it seemed
> insistent
> > > upon creating NEW snapshot views all the time),
> > > continuum does not (or at least, didn't) support ClearCase and neither
> > did
> > > DamageControl.
> > >
> > > So we ended up with CruiseControl.
> > > I'm fairly happy with it, but it's one big (underscored and capital
> > > letters) drawback is it's configuration.
> > > But I gather there's work going on with that problem too.
> > >
> > > The nice thing about CruiseControl is it's flexibility - not it's
> visual
> > > impact.
> > > I'm *not* a GUI developer, so I'm capable of appreciating the things I
> do
> > > not see ;-)
> > >
> > > As always, the best way to determine the best solution for you - is to
> > try
> > > them all :-/
> > >
> > > // Jan-Helge Bergesen, Systems Developer, TMN Group, AXXESSIT ASA,
> > > http://www.axxessit.no
> > >
> > > - Reply to All the Original Message -
> > > Author: Jesse McConnell
> > > To: Maven Users List,wim.deblauwe
> > > Date: 08.09.2005 14:36:15
> > > Subject: Re: Advised Continous Integration tool?
> > >
> > > > I like continuum a lot...and since I am already using m2 for things
> it
> > > > integrated really easily with continuum..
> > > >
> > > > and continuum is really pretty neat when you dig into it, quite a
> > little
> > > > edumacation...
> > > >
> > > > On 9/8/05, Wim Deblauwe <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > > Hi,
> > > > >
> > > > > I'm looking into CI tools and I wonder what other already use:
> > > > > CruiseControl, LuntBuild, DamageControl, maven's own Continum, ...
> > > > >
> > > > > What are your experiences with CI tools and Maven 1.x? What are the
> > > > > advantages/disadvantages? I heared CruiseControl is not so easy to
> > > setup
> > > > > compared to LuntBuild. Anyone caring to share his experience?
> > > > >
> > > > > regards,
> > > > >
> > > > > Wim
> > > > >
> > > > >
> > > >
> > > >
> > > > --
> > > > jesse mcconnell
> > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]