Site deployment to sourceforge.net broken

2008-10-06 Thread Thiago Moreira (timba)
Which JIRA project/component should I open the ticket ?? Thanks Thiago Moreira

Re: Site deployment to sourceforge.net broken

2008-10-07 Thread Thiago Moreira (timba)
Voted! On Tue, Oct 7, 2008 at 4:52 AM, Marat Radchenko [EMAIL PROTECTED] wrote: Done: http://jira.codehaus.org/browse/MDEPLOY-86 2008/10/6 Wayne Fay [EMAIL PROTECTED]: Then file a bug in JIRA, and get lots of people to vote on it. Complaining about bugs on the Maven Users list is

Re: Site deployment to sourceforge.net broken

2008-10-16 Thread Thiago Moreira (timba)
at 8:28 AM, Thiago Moreira (timba) [EMAIL PROTECTED] wrote: Voted! On Tue, Oct 7, 2008 at 4:52 AM, Marat Radchenko [EMAIL PROTECTED] wrote: Done: http://jira.codehaus.org/browse/MDEPLOY-86 2008/10/6 Wayne Fay [EMAIL PROTECTED]: Then file a bug in JIRA, and get lots of people to vote

${pom.version} without the SNAPSHOT part.

2009-01-24 Thread Thiago Moreira (timba)
Hi there, Is there a way to get only the numbers of the ${pom.version} property?? Something like this: 1.2.3-SNAPSHOT, I want just the 1.2.3 part.I will use it to build a Eclipse plugin that don't accept Strings on the version property. Thanks Thiago Moreira

Re: ${pom.version} without the SNAPSHOT part.

2009-01-25 Thread Thiago Moreira (timba)
be no whitespace in version. Cheers 2009/1/25 Thiago Moreira (timba) tmoreira2...@gmail.com Hi there, Is there a way to get only the numbers of the ${pom.version} property?? Something like this: 1.2.3-SNAPSHOT, I want just the 1.2.3 part.I will use it to build a Eclipse plugin that don't

Re: ${pom.version} without the SNAPSHOT part.

2009-01-25 Thread Thiago Moreira (timba)
|'_'|'-')+ digit::=[0..9] alpha::=[a..zA..Z] There must be no whitespace in version. Cheers 2009/1/25 Thiago Moreira (timba) tmoreira2...@gmail.com Hi there, Is there a way to get only the numbers of the ${pom.version} property?? Something like this: 1.2.3-SNAPSHOT, I want just the 1.2.3 part.I

Problems with release:prepare on the resolution of a dependency with test classifier

2009-01-25 Thread Thiago Moreira (timba)
Hi there, I have a multi module project and one of the sub modules produce two artifacts: temp-1.2.3.jar and temp-1.2.3-*test*.jar the last one is built using this configuration: plugin artifactIdmaven-jar-plugin/artifactId executions

Re: Problems with release:prepare on the resolution of a dependency with test classifier

2009-01-27 Thread Thiago Moreira (timba)
The workaround is not working for me! I tried mvn release:prepare -DpreparationGoals=clean install without success. Any other thoughts?? On Sun, Jan 25, 2009 at 11:44 PM, Barrie Treloar baerr...@gmail.com wrote: On Mon, Jan 26, 2009 at 5:03 PM, Thiago Moreira (timba) tmoreira2...@gmail.com

Re: Problems with release:prepare on the resolution of a dependency with test classifier

2009-01-27 Thread Thiago Moreira (timba)
the PrepareReleaseMojo class only merge the releaseVersions and developmentVersions properties. On Tue, Jan 27, 2009 at 9:31 AM, Thiago Moreira (timba) tmoreira2...@gmail.com wrote: The workaround is not working for me! I tried mvn release:prepare -DpreparationGoals=clean install without

Re: Problems with release:prepare on the resolution of a dependency with test classifier

2009-01-28 Thread Thiago Moreira (timba)
, Jan 28, 2009 at 4:34 AM, Thiago Moreira (timba) tmoreira2...@gmail.com wrote: Ok, I took a look on the source code of the maven-release-plugin and there is no way to set the preparationGoals from the command line!!! The method mergeCommandLineConfig http://maven.apache.org/plugins

Re: Oddness with release:prepare

2009-01-30 Thread Thiago Moreira (timba)
I used the workaround svn up -r HEAD to fix it... and than mvn release:prepare -Dresume=true to finish the preparation... Got the answer with some one on here... Cheers On Fri, Jan 30, 2009 at 3:22 PM, James CE Johnson j...@tragus.org wrote: You nailed it. That box has the 1.5.3 svn

Execution sequence of three plugins on the same phase: process-classes

2009-02-04 Thread Thiago Moreira (timba)
Hi there, I have three plugins that must be executed on the same phase (process-classes). How can I set the sequence on each one will be executed? Thanks in advance! Thiago Moreira

Maven 2.0.8 + maven-compiler-plugin 2.0.2 issue

2009-11-14 Thread Thiago Moreira (timba)
Hi there, I have the following configuration for the maven-compiler-plugin plugin artifactIdmaven-compiler- plugin/artifactId executions execution iddefault-compile/id

Re: Maven 2.0.8 + maven-compiler-plugin 2.0.2 issue

2009-11-15 Thread Thiago Moreira (timba)
is to specify the defaults outside an execution and if necessary revert them back within any lifecycle bound executions Sent from my [rhymes with tryPod] ;-) On 14 Nov 2009, at 23:24, Thiago Moreira (timba) tmoreira2...@gmail.com wrote: Hi there, I have the following configuration

Re: Maven 2.0.8 + maven-compiler-plugin 2.0.2 issue

2009-11-16 Thread Thiago Moreira (timba)
Hey all, This is not an issue any more. I was able to update the environment to a 2.2.x version of Maven. Thanks anyway! Thiago Moreira On Sun, Nov 15, 2009 at 4:02 PM, Wayne Fay wayne...@gmail.com wrote: Thanks for confirmed that. Could you explain a little bit more how to

Maven 3.0 ProjectCycleException

2009-12-19 Thread Thiago Moreira (timba)
Hi there, I have a project that contains a build-tools subproject used only to store configuration files for checkstyle, jalopy and so forth... the parent project contains plugins that reference the build-tools subproject and the subproject reference the parent in its parent tag. I'm moving

Dependency plugin strange behavior

2010-01-26 Thread Thiago Moreira (timba)
Hi there, I'm facing a strange behavior with the dependency plugin. Here is my configuration plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-dependency-plugin/artifactId version2.1/version executions execution idcopy-dependencies/id phaseprocess-sources/phase goals

Re: Dependency plugin strange behavior

2010-01-26 Thread Thiago Moreira (timba)
Moreira (timba) tmoreira2...@gmail.com Hi there, I'm facing a strange behavior with the dependency plugin. Here is my configuration plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-dependency-plugin/artifactId version2.1/version executions execution idcopy

Re: How to take archetypeVersion in archetype-resources ?

2010-06-27 Thread Thiago Moreira (timba)
Hi Khin, How did you manage this problem? I'm trying to do the same thing. Thanks Thiago Moreira On Fri, Jun 11, 2010 at 11:29 AM, NGUYEN Cong Kinh cong_kinh.ngu...@it-sudparis.eu wrote: Hi everybody, I create a maven-archetype as the following: - myArchetype + pom.xml (1)

Re: Maven 3 and site generation

2010-10-16 Thread Thiago Moreira (timba)
I think I'm in the same boat... I found the following resources that helped me out to fix some of the problems https://cwiki.apache.org/MAVEN/maven-3x-and-site-plugin.html https://cwiki.apache.org/MAVEN/maven-3x-and-site-plugin.html http://maven.apache.org/doxia/references/doxia-apt.html

Defining a project name when creating it from an archetype.

2010-12-07 Thread Thiago Moreira (timba)
Hi there! I'm building an archetype and one thing that I need to take in account when creating an instance of the archetype is the directory's name generated. This is important because the artifact generated will be used in another system that the name is important. Is there way to force the

Re: Defining a project name when creating it from an archetype.

2010-12-08 Thread Thiago Moreira (timba)
drawback would likely regenerate without the convention and end up with a nicely named artifact. I have not tried this but it may be an option for you. -Ryan On Tue, Dec 7, 2010 at 6:35 PM, Thiago Moreira (timba) tmoreira2...@gmail.com wrote: Hi there! I'm building an archetype and one

Release process does resolve SNAPSHOT dependencies

2011-02-12 Thread Thiago Moreira (timba)
Hi there, I have a multi module project (https://github.com/floggy/parent) that has two submodules. In the parent project I make reference to one submodule like this: plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-checkstyle-plugin/artifactId inheritedtrue/inherited

Re: Release process does resolve SNAPSHOT dependencies

2011-02-12 Thread Thiago Moreira (timba)
plan could (in theory) be affected based on the result of building... - Stephen --- Sent from my Android phone, so random spelling mistakes, random nonsense words and other nonsense are a direct result of using swype to type on the screen On 12 Feb 2011 17:02, Thiago Moreira (timba