Re: continuum scheduled forced build

2006-02-23 Thread Emmanuel Venisse
nothing to do. In 1.0.2, we checked modifications in scm between the current execution and the previous even if it was two different build definition. In 1.0.3, we check scm changes between two executions of the same build definition, so if you set an hourly build schedule and a nightly build

Re: continuum scheduled forced build

2006-02-23 Thread Tomislav Stojcevich
Will there be a way to force the build even though there were no scm changes? I have projects that generate code from database metadata. If a database change occurs I would need the forced build (scheduled nightly) to still occur so that database changes are pick up and the system is rebuilt.

Re: Problems with multi-module CVS URLs

2006-02-23 Thread Mang Jun Lau
Yes I understand that it is invalid. I went on IRC and someone pointed out to me that to get the colons, I would have to add a SCM url to each child pom. So I did that and things are fine now. I have another question though. This is sort of similar to the multi-module thread. I would like

Re: continuum scheduled forced build

2006-02-23 Thread Emmanuel Venisse
It will be possible only in 1.1 but not in 1.0.3, sorry. Emmanuel Tomislav Stojcevich a écrit : Will there be a way to force the build even though there were no scm changes? I have projects that generate code from database metadata. If a database change occurs I would need the forced build

Re: usability suggestion

2006-02-23 Thread David Saff
This could use some signposting. I was about to respond that making the icon a link to the log would be a good idea, when I actually tried it. I've been clicking through to Build History and then the individual log for months, and never thought to try it. David Saff Emmanuel Venisse

Re: usability suggestion

2006-02-23 Thread Michael Böckling
This could use some signposting. I was about to respond that making the icon a link to the log would be a good idea, when I actually tried it. I've been clicking through to Build History and then the individual log for months, and never thought to try it. Don't worry, the same happened

Re: Multi module projects

2006-02-23 Thread Yann Le Du
Hi Max, 2006/2/23, Max [EMAIL PROTECTED]: Hi, Is it possible to setup a multi-module project such that a child module can be shared between two parent projects? What if i have two seperate projects A and B and they both depend upon a module C. How do i do this since there is only one

Re: SPAM: Multi module projects

2006-02-23 Thread Emmanuel Venisse
It isn't a continuum question but a maven question. Please ask the correct list. Emmanuel Max a écrit : Hi, Is it possible to setup a multi-module project such that a child module can be shared between two parent projects? What if i have two seperate projects A and B and they both depend upon

Adding Project with no web browsable URL to POM.

2006-02-23 Thread Treloar, Barrie \(SAPOL\)
Is it possible to use an SCM url for anonymous access instead of a http viewcvs URL? I tried scm:cvs:pserver:[EMAIL PROTECTED]:/cvs:MODULE But it didn't like it. I was hoping the Continuum would be able to use wagon to retrieve the file. If I don't have viewcvs (and it's not likely to get

Re: Adding Project with no web browsable URL to POM.

2006-02-23 Thread Emmanuel Venisse
If you have all your files checkouted locally on the server, you can use the file protocol (after allowed it http://maven.apache.org/continuum/faqs.html#can-i-use-file-protocol-in-add-project-view) scm url will be supported in a future version. Emmanuel Treloar, Barrie (SAPOL) a écrit : Is

Re: overwrite when changing profile

2006-02-23 Thread Wouter de Vaal
No answers to my question? Is there no way to overwrite resources without is being newer or cleaning the target dir? Wouter On 2/22/06, Wouter de Vaal [EMAIL PROTECTED] wrote: Hi, In my project I have created several profiles for different environments like profile

Re: Correct usage of addClasspath tag for maven-jar-plugin

2006-02-23 Thread Kees de Kooter
Thanks Alexandre, I was running jar:jar, thinking that was the appropriate way of building a jar. Running package did the trick. On 2/23/06, Alexandre Poitras [EMAIL PROTECTED] wrote: Weird because your pom seems alright. Have you run clean:clean before package or install? On 2/22/06, Kees

Re: How add url link to dependencies

2006-02-23 Thread Yann Le Du
Example setting URL only for Module A : Module A/pom.xml : ~ project ~ parent ~ ... ~ /parent ~ groupId... ~ artifactId... ~ version... ~ !-- URL where Module A generated site is accessible -- ~ urlhttp://host/maven/site/Module/Module A//url ~ ... ~ /project Example setting

Re: pmd : how to use custom ruleset ?

2006-02-23 Thread François-Xavier Busch
Thanks for the info ! I hope it will be fixed On 2/22/06, Giles, Nick [EMAIL PROTECTED] wrote: I have the same problem, and it's a bug in the core grammar of PMD ( http://sourceforge.net/tracker/index.php?func=detailaid=1339470group_id=56262atid=479921). It doesn't look like it's getting

Profile Activation

2006-02-23 Thread Paul Hepworth
I have quite a complex project with many sub-modules. What I need to be able to do is look in the developers local repository for a file, and if it's not there, then activate the profile. I think I should use something like the following: profile activation file

RE: Multi-project woes

2006-02-23 Thread Koranda Matthew James
This is actually what made it work! I added a repository tag with our internal repository to each subproject and it is now working! According to the documentation it seems as if this shouldn't be needed. Is this a bug? Matt -Original Message- From: Du,Guo [mailto:[EMAIL PROTECTED]

usability suggestion

2006-02-23 Thread Roland Kofler
My suggestion: When a build fails, you want to know why. On the web site actually you have click to build history and then to the last build to find the logs. It would be helpfull to come to the log with one click from the main page. just a suggestion, Roland

Re: Multi-project woes

2006-02-23 Thread Du,Guo
I don't think it is a bug. First of all, you need resolve the local parent project if exist, so you need tell the maven where to look at. The solution in maven2 is setting the repository in your local settings file, it would also work without the repository define in every poms. But you will

RE: Multi-project woes

2006-02-23 Thread Koranda Matthew James
Yes but my settings.xml is set up with our internal repository as a mirror. I would think that maven would first check the project path, then the local repository, and then central and mirrors. Is this incorrect? Should I have set it up as a repository with a certain profile in my settings.xml

Re: Mvn eclipse and eclipse builders

2006-02-23 Thread Tom Joad
Hi Alexandre Here is my maven-eclipse plugin configuration;Nothing very special. with mvn - Dwtpversion=R7 or wtpversion inside the pom.xml , I have always the same poblems. plugin artifactIdmaven-eclipse-plugin/artifactId version2.1/version configuration

Re: Multi-project woes

2006-02-23 Thread Du,Guo
I did not try mirror before but I think you should difine your local repository with a different repository id instead of a mirror site. The default repository id to maven2 repository is central. Kind regards, Du, Guo - Original Message - From: Koranda Matthew James [EMAIL

Re: j2ee:appserver-stop

2006-02-23 Thread Yann Le Du
Hello Ryan, You can have a look at Cargo Maven plugin : http://cargo.codehaus.org/Maven1+plugin - Yann 2006/2/22, rturnbull [EMAIL PROTECTED]: Hello to all, I'm looking for a way to stop and start a java application server (oroin) from the maven.xml. Thought I could use

ChangeLog plugin problems

2006-02-23 Thread Michael Niemaz
Hi all, Just have a couple of questions 'cos I'm a bit confused. I'm using maven 1.1beta2 I'd like to know what the following is supposed to do: repository connection scm:svn:http://svn.smartdocuments.codex.xerox.com/svnroot/smartdocuments /connection url

Re: ChangeLog plugin problems

2006-02-23 Thread Arnaud HERITIER
To use these plugins (changelog, developers activity, files activity) you must define in your POM the repository settings and the developpers for your project (the id of a developper must be the one he use in your SCM) Arnaud On 2/23/06, Michael Niemaz [EMAIL PROTECTED] wrote: Hi all,

fail build if coverage is decreased

2006-02-23 Thread Szczepan Faber
Have you ever heard about a plugin that will measure the tests' coverage and fail if it has been decreased from previous build? It may also be more sophisticated and relay also on lines of code commited, not only pure coverage value. Regards, Szczepan

Re: Mvn eclipse and eclipse builders

2006-02-23 Thread Tom Joad
I just find why i have the problem. Running mvn eclipse:eclipse doesn't set M2_REPO eclipse variable even if on classpath it is used (e.g classpathentry exported=true kind=var path=M2_REPO/ognl/ognl/2.6.7/ognl-2.6.7.jar/) Like goals range on standard build lifecycle , i was deeply persuaded of it

[m2] Howto custom CharsetProvider implementations ?

2006-02-23 Thread Christian Schulte
Hi, I have a problem with unit testing custom charset provider implementations. In some module I have a src/main/resources/META-INF/services/java.nio.charset.spi.CharsetProvider file defining custom charsets implemented in the same module. The jar file produced with this module works outside of

Re: fail build if coverage is decreased

2006-02-23 Thread Arnaud HERITIER
There are several plugins in m1 : - jcoverage : deprecated - cobertura : hosted in maven-plugins @ sf.net [EMAIL PROTECTED] - clover : not free for professionnal usage In m2 I know that there's a clover plugin... Arnaud On 2/23/06, Szczepan Faber [EMAIL PROTECTED] wrote: Have you ever heard

Re: Ant Script Path Repository Variable

2006-02-23 Thread Yann Le Du
2006/2/23, Alex Eagar [EMAIL PROTECTED]: Where should Ant scripts ideally be placed within a Maven 2.x project? I have placed them in project/src/main/resources/ant. Is there anywhere more maven-conventional? None that I know of :) How should I reference the local repository from an Ant

Re: ChangeLog plugin problems

2006-02-23 Thread Michael Niemaz
Thanx for answering. As for the repository settings, are the connection and url settings enough? (See below). Concerning the developpers, they are described such as: developers developer nametiti/name email[EMAIL PROTECTED]/email organization

Re: tests are running 3 times when i generate my site

2006-02-23 Thread David Sag
Hi Brett, I am well looking forward to that release. Once 2.0.3 is out and Cobertura is out I hope I can turn off snapshots for a while as official policy here won't allow their use (understandably). Kind regards, Dave Sag Brett Porter [EMAIL PROTECTED] wrote on 22-02-2006 23:10:03:

Re: ChangeLog plugin problems

2006-02-23 Thread Gisbert Amm
For svn URLs you need to set maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory in your project.properties aswell to get the changelog report working. Regards, Gisbert Amm Michael Niemaz wrote: Thanx for answering. As for the repository settings, are the connection and url

Re: ChangeLog plugin problems

2006-02-23 Thread Michael Niemaz
I've added some echos in the plugin: Generating the Change Log... maven-changelog-plugin:report: [echo] Generating the changelog report [echo] maven.changelog.basedir: /home/niemaz/smartdocuments_svn/smartdocuments/trunk/smartdocument.services [echo] pom.developers: [EMAIL PROTECTED],

Re: [m2] ant tasks and SNAPSHOTs

2006-02-23 Thread Christian Piccardi
Brett Porter brett.porter at gmail.com writes: It's missing the timestamp, indicating to me that jar.pom might be turning off the build numbering? In which case it is correct to always use -SNAPSHOT but is a bug if that isn't being redownloaded when it changes. - Brett

Re: how to create web project for eclipse using maven eclipse plugin

2006-02-23 Thread Tom Joad
Hello when you say it's not working what do you mean? I suppose you use maven1.x For me the problem was eclipse did not build my project. But maven packaging works fine. I use maven2.x but i think that you must set MAVEN_REPO as eclipse variable of your local repository before running

Re: Multi-project woes

2006-02-23 Thread Stephen Duncan
A thought (hope I didn't miss this in the discussion somewhere): is your parent version a SNAPSHOT? The central repository you are mirroring isn't defined to have snapshots enabled, I think, and therefore your mirror might not work, where a separately defined repository would. -Stephen On

Re: ChangeLog plugin problems

2006-02-23 Thread Gisbert Amm
Seems as if your developers haven't got an id tag, hence the NPE. As Arnaud said: The id of a developper must be the one he uses in your SCM. BTW: Do you have this typo in your POM: /developpers (mind the two p) or just in your posting? Regards, Gisbert Amm Michael Niemaz wrote: Thanx

RE: Re: [m2] ant tasks and SNAPSHOTs

2006-02-23 Thread Michał Stochmiałek
This leads me to another question. How are the snapshot jars supposed to be named? When using the ant-tasks to deploy a snapshot the resulting name doesnt contain a timestamp, the file always is called ..-SNAPSHOT.jar in the repository, while when using mvn2 there always seems to be a

Re: ChangeLog plugin problems [SOVED]

2006-02-23 Thread Michael Niemaz
Correct!!! One of my project.xml files was not defining the ids of developers ;-( Thanx a lot. --mike Gisbert Amm a écrit : Seems as if your developers haven't got an id tag, hence the NPE. As Arnaud said: The id of a developper must be the one he uses in your SCM. BTW: Do you have this

???template.maven_reports.section.subsection.title???

2006-02-23 Thread Michael Niemaz
Does anybody know how to fix this badly generated report pages? thanx, --mike - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: ???template.maven_reports.section.subsection.title???

2006-02-23 Thread Gisbert Amm
Probably some information is missing in your POM (such as name, description and so on)? Just a guess. -Gisbert Michael Niemaz wrote: Does anybody know how to fix this badly generated report pages? - To unsubscribe, e-mail:

Exclude patterns for resources

2006-02-23 Thread Walco van Loon
Hi List, Is it possible to specify exclude patterns for *any* resource in a project? So, in meaning equivalent to this, but without having to specify the directory element for each resource type present. resources resource directorysrc/main/java/directory excludes

RE: Multi-project woes

2006-02-23 Thread Koranda Matthew James
Ah, that sounds reasonable! I think that must be exactly what the problem is. Thanks a lot for all of the responses, they were all helpful and in the right direction. Matt -Original Message- From: Stephen Duncan [mailto:[EMAIL PROTECTED] Sent: 23. februar 2006 12:36 To: Maven Users

Re: ChangeLog plugin problems

2006-02-23 Thread Arnaud HERITIER
On 2/23/06, Michael Niemaz [EMAIL PROTECTED] wrote: Thanx for answering. As for the repository settings, are the connection and url settings enough? (See below). yes it's enough Concerning the developpers, they are described such as: developers developer nametiti/name

Re: ChangeLog plugin problems [SOVED]

2006-02-23 Thread Arnaud HERITIER
Michael, Can you open an issue on the changelog plugin please, because it's anormal that you receive a NullPointerException if an id is missing. Arnaud On 2/23/06, Michael Niemaz [EMAIL PROTECTED] wrote: Correct!!! One of my project.xml files was not defining the ids of developers ;-(

Re: Adding Build Time to Projects Summary Page

2006-02-23 Thread Emmanuel Venisse
No, it isn't possible. File an issue for this feature. Emmanuel Richard C. L. Li a écrit : Hi, Is there any way to add a column of the ending date and time of the latest build in the project summary page? Thanks, Richard Li

Re: ???template.maven_reports.section.subsection.title???

2006-02-23 Thread Arnaud HERITIER
what is your xdoc plugin release ? There was a bug in the 1.9 or in the 1.9.1 you have to upgrade to the 1.9.2 Arnaud On 2/23/06, Gisbert Amm [EMAIL PROTECTED] wrote: Probably some information is missing in your POM (such as name, description and so on)? Just a guess. -Gisbert Michael

Re: Re: [m2] ant tasks and SNAPSHOTs

2006-02-23 Thread Christian Piccardi
Michał Stochmiałek michal.stochmialek at eurobank.pl writes: I believe this behavior of ant-tasks is a bug. I filed it in jira few weeks ago. http://jira.codehaus.org/browse/MNG-2060 best regards, -- Michal Stochmialek IT Department, Research Development Division Euro Bank S.A

[m2] HOWTO: Compilers

2006-02-23 Thread Adrian Herscu
Hi all, I am trying to understand how compilers are invoked by M2 and eventually how to add support for my own compiler. Please explain how M2 relates to Plexus (in other words why M2 needs Plexus?). Do I need to build my compiler support as a Plexus component? Is it possible to reuse existing

Re: Re: [m2] ant tasks and SNAPSHOTs

2006-02-23 Thread Brett Porter
That is a result of MNG-1908. - Brett On 2/24/06, Christian Piccardi [EMAIL PROTECTED] wrote: Michał Stochmiałek michal.stochmialek at eurobank.pl writes: I believe this behavior of ant-tasks is a bug. I filed it in jira few weeks ago. http://jira.codehaus.org/browse/MNG-2060

[m2] Cannot download plexus-compilers

2006-02-23 Thread Adrian Herscu
Hi all, I am trying to setup different compilers -- so far I tried csharp and jikes without success. I have this pom.xml: project dependencies dependency groupIdorg.codehaus.plexus/groupId artifactIdplexus-compiler-jikes/artifactId !-- checked inside ibiblio and it

Re: ChangeLog plugin problems [SOVED]

2006-02-23 Thread Michael Niemaz
done! http://jira.codehaus.org/browse/MPCHANGELOG-83 --mike Arnaud HERITIER a écrit : Michael, Can you open an issue on the changelog plugin please, because it's anormal that you receive a NullPointerException if an id is missing. Arnaud On 2/23/06, Michael Niemaz [EMAIL PROTECTED]

Re: Mvn eclipse and eclipse builders

2006-02-23 Thread Alexandre Poitras
Yeah and the plugin had some major bugs for a long time. Well feel free to post a JIRA issue on tthis and what you want to be improved. On 2/23/06, Tom Joad [EMAIL PROTECTED] wrote: I just find why i have the problem. Running mvn eclipse:eclipse doesn't set M2_REPO eclipse variable even if on

Re: [m2] Hoping some project hosts the ejb 2.0 spec jar in repo (??)

2006-02-23 Thread Alexandre Poitras
That's what the developpers said earlier so I hope to see that happen in the near future :) On 2/23/06, Wayne Fay [EMAIL PROTECTED] wrote: Oh wow, so the license acceptance etc is built into the Maven-retrieve-dependencies bit? So from the cli, I type mvn clean package and it asks Do you agree

Re: Correct usage of addClasspath tag for maven-jar-plugin

2006-02-23 Thread Alexandre Poitras
That the maven 1 way. In Maven 2, you should try to use the standard lifecycle phases. On 2/23/06, Kees de Kooter [EMAIL PROTECTED] wrote: Thanks Alexandre, I was running jar:jar, thinking that was the appropriate way of building a jar. Running package did the trick. On 2/23/06,

Re: [m2] ant tasks and SNAPSHOTs

2006-02-23 Thread Michał Stochmiałek
-Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Christian Piccardi Sent: Thursday, February 23, 2006 2:21 PM To: users@maven.apache.org Subject: Re: Re: [m2] ant tasks and SNAPSHOTs Thanks for the pointer Michal. Beside the inconsistent names compared to mvn2,

Re: ???template.maven_reports.section.subsection.title???

2006-02-23 Thread Michael Niemaz
thanx. Upgrading solved the pb. --mike Arnaud HERITIER a écrit : what is your xdoc plugin release ? There was a bug in the 1.9 or in the 1.9.1 you have to upgrade to the 1.9.2 Arnaud On 2/23/06, Gisbert Amm [EMAIL PROTECTED] wrote: Probably some information is missing in your POM (such

RE: [m2] ant tasks and SNAPSHOTs

2006-02-23 Thread Michał Stochmiałek
-Original Message- From: Michał Stochmiałek [mailto:[EMAIL PROTECTED] Sent: Thursday, February 23, 2006 3:14 PM To: Maven Users List I tried with mvn 2.0.2 (with -U option) and it didn't work. However, I also tried with a 2.0.3 snapshot (link in Brett's comment on MNG-1908) (also

[1.1] plugin classpath

2006-02-23 Thread Nicolas De Loof
How is the plugin runtime classpath set ? I'm writing a (maven 1) plugin that uses velocity, so I'd like to load a Velocimacro file from classpath. My .vm file is declared as resource and gets packaged in the plugin root. It seems it is not added to plugin classpath at runtime. Is there a

Re: ChangeLog plugin problems [SOVED]

2006-02-23 Thread Arnaud HERITIER
thx Can you attach the full stack trace to the issue please. arnaud On 2/23/06, Michael Niemaz [EMAIL PROTECTED] wrote: done! http://jira.codehaus.org/browse/MPCHANGELOG-83 --mike

jpox enhancing

2006-02-23 Thread David Sag
I want to use JPOX there is a maven-jpox-plugin in repo1.maven.org/maven2/maven-plugins/ but when i add a reference to it in my pom.xml i get a FATAL ERROR null doing a mvn clean. is anyone out there using JPOX and Maven 2? Downloading:

[Maven2] changelog plugin configuration

2006-02-23 Thread François-Xavier Busch
Hi, I'm using the changelog plugin (version 2.0-beta-1) with maven2 and I can't configure the reports. Whether or not I set the configuration type to range or date it always generate reports on the last month. Anyone knows if that's a bug ?

Re: ChangeLog plugin problems [SOVED]

2006-02-23 Thread Michael Niemaz
done Arnaud HERITIER a écrit : thx Can you attach the full stack trace to the issue please. arnaud On 2/23/06, Michael Niemaz [EMAIL PROTECTED] wrote: done! http://jira.codehaus.org/browse/MPCHANGELOG-83 --mike

Re: [m2] ant tasks and SNAPSHOTs

2006-02-23 Thread Wayne Fay
This is a question for the dev list, not users. ;-) Wayne On 2/23/06, Michał Stochmiałek [EMAIL PROTECTED] wrote: When the 2.0.3 is going to be released? I just figured out that MNG-1908 is not going to be included in 2.0.3. Why? This fix is highly needed.

Re: jpox enhancing

2006-02-23 Thread Emmanuel Venisse
You must use this in your pom: plugin groupIdorg.codehaus.mojo/groupId artifactIdmaven-jpox-plugin/artifactId version1.0.1/version executions execution goals goalenhance/goal /goals /execution

Re: Exclude patterns for resources

2006-02-23 Thread Mang Jun Lau
So you just want to exclude this particular .db file but within various/all places in the project? If so then you can specify ${basedir} between the directory tags. _Mang Lau Walco van Loon [EMAIL PROTECTED] 02/23/2006 07:38 AM Please respond to Maven Users List users@maven.apache.org

Compiling error

2006-02-23 Thread adela
Dear Maveners, I tryied to compile my EJB3 project source using Maven with Jave 1.5, the below errorr comes up despite i set-up my Env based on 1.5 version, any idea i am having this error C:\Stephani\workspace\Stepheniemvn compile [INFO] Scanning for projects... [INFO]

Re: [1.1] plugin classpath [Solved]

2006-02-23 Thread Nicolas De Loof
I've solved my problem. This was a velocity missuse. Nicolas De Loof a écrit : How is the plugin runtime classpath set ? I'm writing a (maven 1) plugin that uses velocity, so I'd like to load a Velocimacro file from classpath. My .vm file is declared as resource and gets packaged in the

Re: [1.1] plugin classpath

2006-02-23 Thread Arnaud HERITIER
Not sure but you certainly have to add it manually to the classpath with maven:addPath declaring it as ressource add it to the classpath for the compilation. No for the runtime. Arnaud On 2/23/06, Nicolas De Loof [EMAIL PROTECTED] wrote: How is the plugin runtime classpath set ? I'm writing

[m2] strange behavior for deploy:deploy-file

2006-02-23 Thread Pieter Vandepitte
Can s.o. explain me the following? I'm executing exactly the same deploy:deply-file goal in 2 different subdirectories but giving me a success or failure :( best regards [EMAIL PROTECTED] maven-scripts]$ /home/vandepitte/maven-2.0.2/bin/mvn deploy:deploy-file

Re: Compiling error

2006-02-23 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, C:\Stephani\workspace\Stephenie\src\java\steph\ejb\Rank.java:[11,1] annotations are not supported in -source 1.3 (try -source 1.5 to enable annotations) @javax.persistence.Entity Try to add the following to your pom.xml: build

question about plug in

2006-02-23 Thread Xiaobo Chen
Hi, all I am very new in Maven. I am following the tutorial for Jetspeed: http://portals.apache.org/jetspeed-1/tutorial/prerequisites.html When I typed: mvn -e -Dmaven.test.skip=true dist:install NOT maven -Dmaven.test.skip=true dist:install as in the web page. I have version maven 2.0.2.

RE: Can I invoke (execute) a parent pom within a child pom

2006-02-23 Thread Coyner, Brian M. (STL) - contr
It is my understanding (and the source code seems to prove this) that a module can only exist in a pom whose packaging is pom. This means that a pom file that generates a WAR file (packagingwar/packaging) cannot utilize the maven reactor functionality for building dependent modules. Instead you

Re: question about plug in

2006-02-23 Thread Tom Joad
Hi, you use maven 2.0.2 I think there is not yet dist plugin available for maven2.x maven command runs maven 1.x Tom. 2006/2/23, Xiaobo Chen [EMAIL PROTECTED]: Hi, all I am very new in Maven. I am following the tutorial for Jetspeed:

RE: [m2] HOWTO: Compilers

2006-02-23 Thread Stevenson, Chris
Hi Adrian, I've had a bit of a play around with custom compilers, if you'd like to look at some source on how to do it you can download my CSharp stuff from JIRA: http://jira.codehaus.org/browse/MOJO-304 The specific bits of interest to you should be;

[m202] Errors in the console when execitung mvn site

2006-02-23 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, when I let Maven generate the site for my project, three error messages are shown in the console: (...) [INFO] Setting property: velocimacro.messages.on = 'false'. [INFO] Setting property: resource.loader = 'classpath'. [INFO] Setting

Re: question about plug in

2006-02-23 Thread Xiaobo Chen
Thanks for your reply. So if I use, 1.x, how can I install all those plugins? Actually, which plugins shall I install? Shall I download all those as in this page: http://www.ibiblio.org/maven2/plugins/org/apache/maven/plugins/ into the the 'lib' directory? Thanks a lot! Xiaobo Hi, you use

Re: Snapshot download problem: POM downloaded but not JAR

2006-02-23 Thread Jérôme BERNARD
Add this to your settings.xml: profiles profile id.../id repositories.../repositories pluginRepositories pluginRepository idsnapshot-plugin-repo/id nameReferentiel actif pour les plugin snapshots/name urlhttp://jip.inetpsa.com/maven/repository/url

Re: question about plug in

2006-02-23 Thread Alexandre Poitras
You don't have to install any plugins, maven will download everything by itself. On 2/23/06, Xiaobo Chen [EMAIL PROTECTED] wrote: Thanks for your reply. So if I use, 1.x, how can I install all those plugins? Actually, which plugins shall I install? Shall I download all those as in this page:

Re: question about plug in

2006-02-23 Thread Arnaud HERITIER
no. You have just to install maven (1.0.2 or 1.1-beta2 I don't know which one is supported by jetspeed) and to launch the given command. Arnaud On 2/23/06, Xiaobo Chen [EMAIL PROTECTED] wrote: Thanks for your reply. So if I use, 1.x, how can I install all those plugins? Actually, which

Re: question about plug in

2006-02-23 Thread Piéroni Raphaël
Hi Xiaobo, As far as i know Plugins for Maven 1.x and plugins for Maven 2.x are not compatible. If you use Maven 1.x, the plugins are located at ibiblio.org/maven/ (not maven2) You can find some there : http://ibiblio.org/maven/maven-plugins/plugins/ Some other there :

Maven 2 and Cactus

2006-02-23 Thread Domsch, Christian
Hi all, Is cactus supported under maven 2? And if not, is it planned? Greetings, Christian. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Maven and scm:cvs

2006-02-23 Thread FOUBERT Sebastien (P)
Hello I want to check out a project from cvs source I use maven 1.0.2 and I get this error message I don't know what to do, I have installed cvs on my winxp and fixed the CVS_HOME variable, ---

[Maven-2.0.3] Release

2006-02-23 Thread Boris Vassilieff
Does anyone knows when Maven-2.0.3 will be released ? bv

Re: [Maven-2.0.3] Release

2006-02-23 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, Does anyone knows when Maven-2.0.3 will be released ? When it is ready (hopefully in the next few days)...? *scnr* Regards Thorsten -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2.1 (MingW32)

OutOfMemoryError when creating Javadoc

2006-02-23 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, when I want to create the Javadoc for my project, Maven fails with an OutOfMemoryError. According to the documentation the javadoc plugin supports a parameter maxmemory so I added the following flag to the plugin configuration: build

RE: [Maven-2.0.3] Release

2006-02-23 Thread Mike Perham
It is being voted on right now. There is an RC build available if you check the maven-dev archives from 2 days ago. -Original Message- From: Boris Vassilieff [mailto:[EMAIL PROTECTED] Sent: Thursday, February 23, 2006 12:00 PM To: users@maven.apache.org Subject: [Maven-2.0.3] Release

[m202][ot]

2006-02-23 Thread Mick Knutson
I am trying to configure my release plugin, and have noticed I have created an incorrect directory structure ion svn and need to move several directories. I tried using the relocate, but that said I could not relocate this directory. Can someone help me understand the best way to re-organize

Re: Maven and scm:cvs

2006-02-23 Thread Daniel Schulz
Hi Sebastion, do you have the cvs executable in your PATH. (BTW: What installation do you have. cygwin cvs or wincvs/cvsnt?) What happens, if you execute cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/acegisecurity -q checkout -P acegisecurity in a dos box. AFAIK maven/ant expects cvs in

Re: Changelog error linking to scm url

2006-02-23 Thread Dennis Lundberg
Just to make sure that I understand your problem. Somewhere in the changelog report you have a link you have a link to, for example http://www.domain.com/cgi-bin/viewcvs.cgi/webapps/appname/com/bhn/cpms/dao/AssignedGroupDao.java But you expect it be

RE: Profile Activation

2006-02-23 Thread Brian E. Fox
Is it ${settings.localRepository}? -Original Message- From: Paul Hepworth [mailto:[EMAIL PROTECTED] Sent: Thursday, February 23, 2006 4:43 AM To: Maven Users List Subject: Profile Activation I have quite a complex project with many sub-modules. What I need to be able to do is look in

maven 1.0 to 1.1 migration question

2006-02-23 Thread Miguel Griffa
hi all I have a big project (30+ artifacts) that is currently beeing built with maven 1.0 I'd like to migrate to m1.1 at least but it is full of xml entities. entities are used to mantain artifacts version consistency my question is: if I place version properties in the project.properties of the

Re: [m202][ot]

2006-02-23 Thread Yann Le Du
Usually I export then add again the directory. But don't hesitate to check the excellent SVN book for better solutions : http://svnbook.red-bean.com/ - Yann 2006/2/23, Mick Knutson [EMAIL PROTECTED]: I am trying to configure my release plugin, and have noticed I have created an incorrect

[M1] Multiple test source directories ?

2006-02-23 Thread Sebastien Arbogast
Hi, I'm using Maven 1.0.2 in combination with AndroMDA 3.1. I've managed to tune AndroMDA in order to generate test skeletons and mock DAO's from my UML model. That part works fine but then I have a problem with Maven. For current classes, AndroMDA generates 2 kinds of files : - those that don't

Question about the tutorial for Jetspeed

2006-02-23 Thread Xiaobo Chen
Hi, all First, in the tutorial directory, I issued maven -Dtutorial=1 jetspeed:deploy then, I copy the jportal.war into the Tomcat webapps directory, then I can access it as: http://localhost:8082/jportal/portal Then, as said in the web page

Re: Changelog error linking to scm url

2006-02-23 Thread Brian Burridge
Right, because the source code isn't in cvs under webapps/appname, its under webapps/appname/src Brian On 2/23/06, Dennis Lundberg [EMAIL PROTECTED] wrote: Just to make sure that I understand your problem. Somewhere in the changelog report you have a link you have a link to, for example

Strange error in continuum

2006-02-23 Thread raghurajan . x . gurunathan
Hi All I have setup my maven 2 project as a shell project in continuum and i have this strange problem in my project. Like when run the build first time it did every thing good, no problem at all, then when i tried again its threw the below shown error, i thought it might be something else,

[m202] Still confused as to a solution to complex versioning

2006-02-23 Thread Mick Knutson
I started creating a profile for my build like: profile id1.3.5_6/id properties coreVersion1.1.4_4/coreVersion commonVersion1.0_1/commonVersion lksmWarVersion1.3.5_6/lksmWarVersion nytWarVersion1.2.2_1/nytWarVersion

Available archetypes

2006-02-23 Thread Laurie Harper
The Getting Started document on the Maven site introduces the use of three archetypes: the 'default' one, the maven-archetype-webapp one and the maven-archetype-site one. Is there documentation anywhere on, or some other way of figuring out, what other archetypes are available? The archetype

Re: Available archetypes

2006-02-23 Thread Wendy Smoak
On 2/23/06, Laurie Harper [EMAIL PROTECTED] wrote: The Getting Started document on the Maven site introduces the use of three archetypes: the 'default' one, the maven-archetype-webapp one and the maven-archetype-site one. Is there documentation anywhere on, or some other way of figuring out,

  1   2   >