How to copy the build to shared filesystem

2006-03-30 Thread Gautham Pamu
Hi Everyone, I am using Maven 1.0.2 and Continuum 1.0.2, I want to copy the complete build to a shared file system. Whats the best way to acheive it, are they are plugins in maven or configuration in continuum to copy the build to shared file system. -- -Gautham Pamu

Re: Does continuum add any email notifiers automagically?

2006-03-30 Thread Emmanuel Venisse
You can define it in ciManagement part of your pom http://maven.apache.org/continuum/guides/getting-started/index.html Stevenson, Chris a écrit : Hi, I'd like to define in my pom (or in application.xml) a set of default developers myself included who get all the build emails

update in continuum

2006-03-30 Thread raghurajan . x . gurunathan
Is that possible in continuum to configure it so that it wont actually update the source, instead just run the maven goals?? Thanks, Raghu

which locales are supported by maven-site-plugin?

2006-03-30 Thread li pan
Hi, I am tring to build document with maven-site-plugin. I am using maven 2.0.2 The documents of maven says that if I want to build a fr verion, what I need is a fr directory, site_fr.xml, and add fr to the locales of pom Yes, it works. But I tried other locales like cn ja de, and none works(I

Re: mvn eclipse:eclipse -- requires install first -- bug/oversight?

2006-03-30 Thread stéphane bouchet
Hi, i got the same 'problem' with Maven 1.X. I need to install all my local projects before generating .project and .classpath files. It is really annoying because the generated files does not refers to the libs in my repo. It looks like even if the property eclipse.dependency is set or not,

RE : Disable a phase plugin

2006-03-30 Thread Olivier Lamy
You need to specify a new packaging [1]. Note : I have done it but in certain case (rare) I have encountered this issue http://jira.codehaus.org/browse/MNG-2109. And customizing my Artifact Handler has some trouble (like no javadoc generated). But as new features are currently implemented in the

maven-proxy support for M2

2006-03-30 Thread Nicolas De Loof
Hello maven-proxy 0.2 has been released with better support for maven2. My proxy is configured to merge artifacts from central, mojo-snapshots and others m2 repositories. How does maven-proxy handle metadata.xml files ? Without a proxy, maven2 downloads this file from every repo and add

Re: maven-proxy support for M2

2006-03-30 Thread Carlos Sanchez
The truth is that I don't know which one wins, I didn't write the code, but *better m2 support* means redownloading of poms and IIRC also metadata files On 3/30/06, Nicolas De Loof [EMAIL PROTECTED] wrote: Hello maven-proxy 0.2 has been released with better support for maven2. My proxy is

Re: [M2] Is FTP maven2 repository supported?

2006-03-30 Thread Jian.Wu
Hi, I had similar issue. I end up using FTP for upload/deploy and HTTP with Apache for download. Jian -- View this message in context: http://www.nabble.com/-M2-Is-FTP-maven2-repository-supported--t1361416.html#a3666785 Sent from the Maven - Users forum at Nabble.com.

RE : [M2] Is FTP maven2 repository supported?

2006-03-30 Thread Olivier Lamy
Hi, Perso, I use sftp which works fine. Look at [1], probably solve your trouble ? - Olivier [1] http://maven.apache.org/guides/mini/guide-deploy-ftp.html -Message d'origine- De : Jian.Wu [mailto:[EMAIL PROTECTED] Envoyé : jeudi 30 mars 2006 11:21 À : users@maven.apache.org Objet : Re:

Re: [M2] Is FTP maven2 repository supported?

2006-03-30 Thread Carlos Sanchez
It'd be better if you open a jira issue with the docs so they end in the maven site On 3/29/06, Alexandre Poitras [EMAIL PROTECTED] wrote: It is supported but there some *undocumented* steps to perform, ie copying some libs in maven\lib directory. I can give you the complete listing in like

RE: maven-proxy support for M2

2006-03-30 Thread Jörg Schaible
Hi Nicolas and Carlos, Carlos Sanchez wrote on Thursday, March 30, 2006 11:10 AM: The truth is that I don't know which one wins, I didn't write the code, but *better m2 support* means redownloading of poms and IIRC also metadata files I wrote the code and the proxy loads the newest ;-) -

Re: [M2] mvn site:deploy throws an exception

2006-03-30 Thread Geoffrey De Smet
I don't know, but I do know that FTP will most likely be a lot slower then ssh in practice: - ssh deploy creates one big zip, sends that and unzips it. - ftp sends file per file. Deploying my site manually with filezilla (multiple select) over ftp took me +1 hour. Maybe it doesn't use true

[m2] How to use deploy:deploy-file to manage my private repo ?

2006-03-30 Thread Nicolas De Loof
Hello, I've got to add some private / restricted artifacts in my corporate repo, but I'd like to avoid creating all the required directories. install:intall-file can be used to put an artifact in local repo. Can I use deploy:deploy-file to do the same in my corporate repo ? How to set the

struts 1.2.9 checksum failure

2006-03-30 Thread Nicolas De Loof
It seems struts 1.2.9 POM checksum is wrong on ibiblio. [INFO] artifact struts:struts: checking for updates from central [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = 'da353354177574bb1a0e16bd3618fdcabfb2378c'; remote = 'da39a3ee5e6b4b0d255bfef95601890afd80709' -

RE: maven-proxy support for M2

2006-03-30 Thread hermod.opstvedt
Hi One note though - Build Maven-proxy with the latest commons-hhtpclient, otherwise you will redirect errors. Hermod -Original Message- From: Jörg Schaible [mailto:[EMAIL PROTECTED] Sent: Thursday, March 30, 2006 12:06 PM To: Maven Users List Subject: RE: maven-proxy support for M2

Maven 2 - properies

2006-03-30 Thread hermod.opstvedt
Hi What is the syntax for accessing the dependency elements in Maven 2. I.e to access the build path you write : ${project.compileClasspathElements} In Maven 1 there is a nice page that lists all the properties, but I have not been able to find one for Maven 2. Hermod * * * * * * * * * * *

Re: [M2] Adding downloaded files to a war

2006-03-30 Thread Stephen Duncan
Well, one typical usage of the plugin is to just use dependency:copy-dependencies just so you have all your dependencies locally, so you can include them in an assembly for distribution, etc. -Stephen On 3/28/06, Martin Cooper [EMAIL PROTECTED] wrote: OK, I got this to work by changing:

how to set a String[] parameter ?

2006-03-30 Thread Nicolas De Loof
Hello, I'm trying to configure aspectJ plugin and want to configure the includes property. According to http://maven.apache.org/guides/plugin/guide-java-plugin-development.html I've tried this : configuration includes**/aspects/*.aj/includes

Re: [m2] multiproject modules question

2006-03-30 Thread Dario Luis Coneglian Oliveros
Sounds great. I will try it. Thanks a lot, Dário Alexandre Poitras wrote: Oh great, didn't know that ;) Sometimes the answer is just too simple... On 3/29/06, Konstantin Polyzois [EMAIL PROTECTED] wrote: Would not this work? Project pom modulecomponents/Comp1/module ...

Re: Re: Re: RE : Re: RE : Continuum 1.0.3 RC require some tester

2006-03-30 Thread Kaare Nilsen
Also there is an annoying memory leak. i need to restart continumm each second or third day :( On 27/03/06, Kaare Nilsen [EMAIL PROTECTED] wrote: Hi been using the RC SNAPSHOT, and i do not feel it is ready for production yet. To often when i look in the list something has been broken, not of

Re: Re: Re: RE : Re: RE : Continuum 1.0.3 RC require some tester

2006-03-30 Thread Kaare Nilsen
And sometimes the index page shows that builds have failed, but when you look at the actual build results, it is fine On 30/03/06, Kaare Nilsen [EMAIL PROTECTED] wrote: Also there is an annoying memory leak. i need to restart continumm each second or third day :( On 27/03/06, Kaare Nilsen

Re: how to set a String[] parameter ?

2006-03-30 Thread Martin van der Plas
Nicolas, Specify the configuration as: configuration includes include**/aspects/*.aj/include include**/aspects/*.java/include /includes /configuration Martin Nicolas De Loof wrote: Hello, I'm trying to configure aspectJ plugin and want to configure

Re: maven-proxy support for M2

2006-03-30 Thread Nicolas De Loof
Does the *redownloading of poms* feature bypass the cache ? I notice .pom downloading being very slow, even when allready present in proxy cache. Nico. Jörg Schaible a écrit : Hi Nicolas and Carlos, Carlos Sanchez wrote on Thursday, March 30, 2006 11:10 AM: The truth is that I don't

[Solved] Re: how to set a String[] parameter ?

2006-03-30 Thread Nicolas De Loof
Solved : includes include**/*.aj/include include**/aspects/*.java/include /includes (Ant-like syntax) I may have read the Guide to configure plugin (http://maven.apache.org/guides/mini/guide-configuring-plugins.html) that is more explicit about this than the developer

Re: Where to download scm with all providers from?

2006-03-30 Thread Emmanuel Venisse
for 1.0-beta-2: http://www.ibiblio.org/maven2/org/apache/maven/scm/ for snapshots: http://cvs.apache.org/maven-snapshot-repository/org/apache/maven/scm/ Emmanuel Zsolt a écrit : Hi, where can I download all scm related jars from? Zsolt

No file updated, not building - Continuum

2006-03-30 Thread Carlos Henriquez
Hello, I'm using Continuum 1.0.2 with Maven 2.0.2 and I add a project with a default build that works just fine when I forced it (clean install). The problems comes with the Schedule. I'm using DEFAULT_SCHEDULE and it triggers every hour but the build throws and error. Here is the output of my

RE: maven-proxy support for M2

2006-03-30 Thread Jörg Schaible
Hi Nicolas, Nicolas De Loof wrote on Thursday, March 30, 2006 2:36 PM: Does the *redownloading of poms* feature bypass the cache ? I notice .pom downloading being very slow, even when allready present in proxy cache. It's configurable in the maven-proxy configuration: snapshot.update=true

Re: Spaces in -D?

2006-03-30 Thread Emmanuel Venisse
It's fixed in 2.0.3 http://jira.codehaus.org/browse/MNG-1415 Emmanuel Gordon Henriksen a écrit : On Mar 29, 2006, at 3:40 PM, Alex Shneyderman wrote: On 3/29/06, Gordon Henriksen [EMAIL PROTECTED] wrote: Even if I properly escape spaces in a path at the shell level, Maven seems to

How to copy the build to shared filesystem

2006-03-30 Thread Gautham Pamu
Hi Everyone, I am using Maven 1.0.2 and Continuum 1.0.2, I want to copy the complete build to a shared file system. Whats the best way to acheive it, are they are plugins in maven or configuration in continuum to copy the build to shared file system. -- -Gautham Pamu

RE: Where to download scm with all providers from?

2006-03-30 Thread Zsolt
Thank you Emmanuel, is there a better way to copy those files? Is a jar file available that contains all scm classes? It is not very convenient to copy so many files from so many directories. Zsolt -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Thursday,

Re: [Solved] Re: how to set a String[] parameter ?

2006-03-30 Thread Kaare Nilsen
Hi.. Also you cloud look at the configuration examples at : http://mojo.codehaus.org/aspectj-maven-plugin/ spesially (well even if you have alredy come to the right conclution ;) ) : http://mojo.codehaus.org/aspectj-maven-plugin/includeExclude.html /Kaare On 30/03/06, Nicolas De Loof [EMAIL

RE: Re: [M2] mvn site:deploy throws an exception

2006-03-30 Thread Jens Riboe
do know that FTP will most likely be a lot slower then ssh I'm in the process of setting up an internal server, which need to be accessed outside vpn but still be protected/restricted. There are two cases against ssh [1] The sysop don't like to create accounts for all potential users [2] I

Re: maven-proxy support for M2

2006-03-30 Thread Nicolas De Loof
I don't want to totally stop pom / metadata updates, I just want them to stay in cache according to repo.ibiblio.cache.period. Using maven-proxy, every developer that request a POM waits some seconds for it. This sounds like the proxy looks for changes on every request. In this case, why

Where is org.apache.maven.scm.providers.svn.settings.Settings?

2006-03-30 Thread Zsolt
I have checked out the sources from the trunk but cannot compile because for example the class below is missing: org.apache.maven.scm.providers.svn.settings.Settings Where can I find it? Zsolt

Re: [m2] maven-checkstyle-plugin

2006-03-30 Thread SiD tourment
Ok done, i have the sources. To compile it i have to find a lot of libraries, i have found some of them but i need to find : import org.codehaus.doxia.site.renderer.SiteRenderer; Anyone got it ? I don't find it on the web... On 3/29/06, Wayne Fay [EMAIL PROTECTED] wrote: Sure, just grab the

[m2] Continuum HowTo?

2006-03-30 Thread Stefan Fritz
Hi all, is ther a step by step HowTo for setting up Continuum with Maven 2? I want to setup Continuum on a Linux box for nightly builds. My projects are in SVN. Regards Stefan - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [m2] mvn 2.0.3 eclipse:eclipse not working anymore

2006-03-30 Thread Stefan Fritz
Ooops, sorry the problem was a type in one of my root pom files (a few levels up/down). Now it works :-) Stefan Thorsten Heit wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Stefan, My pom is valid and has no duplicate tags! Seems to be a problem with plexus. Any inpput

Re: [m2] Continuum HowTo?

2006-03-30 Thread Emmanuel Venisse
http://maven.apache.org/continuum/guides/getting-started/index.html Continuum user list is a better place for questions ;-) Emmanuel Stefan Fritz a écrit : Hi all, is ther a step by step HowTo for setting up Continuum with Maven 2? I want to setup Continuum on a Linux box for nightly

Re: Where to download scm with all providers from?

2006-03-30 Thread Emmanuel Venisse
Zsolt a écrit : Thank you Emmanuel, is there a better way to copy those files? Is a jar file available that contains all scm classes? No. It is not very convenient to copy so many files from so many directories. What do you try to do? If you declare them in a maven2 project, they'll be

Re: Where is org.apache.maven.scm.providers.svn.settings.Settings?

2006-03-30 Thread Emmanuel Venisse
It's a generated class. If you want it, you must build with maven2. Emmanuel Zsolt a écrit : I have checked out the sources from the trunk but cannot compile because for example the class below is missing: org.apache.maven.scm.providers.svn.settings.Settings Where can I find it? Zsolt

RE: maven-proxy support for M2

2006-03-30 Thread Jörg Schaible
Nicolas De Loof wrote on Thursday, March 30, 2006 3:41 PM: I don't want to totally stop pom / metadata updates, I just want them to stay in cache according to repo.ibiblio.cache.period. Using maven-proxy, every developer that request a POM waits some seconds for it. This sounds like the

RE: Where to download scm with all providers from?

2006-03-30 Thread Zsolt
I'm just a maven beginner. Can you give me a maven project that provides me the environment to use maven-scm? My goal is to use only maven-scm api and not maven. Zsolt -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Thursday, March 30, 2006 4:10 PM To:

Re: How to copy the build to shared filesystem

2006-03-30 Thread Emmanuel Venisse
You can use the deploy plugin. Gautham Pamu a écrit : Hi Everyone, I am using Maven 1.0.2 and Continuum 1.0.2, I want to copy the complete build to a shared file system. Whats the best way to acheive it, are they are plugins in maven or configuration in continuum to copy the build to shared

Re: Where to download scm with all providers from?

2006-03-30 Thread Emmanuel Venisse
look at maven-scm-client, you'll find all you need. Zsolt a écrit : I'm just a maven beginner. Can you give me a maven project that provides me the environment to use maven-scm? My goal is to use only maven-scm api and not maven. Zsolt -Original Message- From: Emmanuel Venisse

Re: [m2] Improper build number after deploying a snapshot of maven-javadoc-plugin

2006-03-30 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, which is strange because I just deployed it. I looked into the proxy directories and wondered that the files are named differently: * maven-javadoc-plugin-2.0-beta-4-20060322.180042-1.jar *

Re: Maven 1.0.2 documentation

2006-03-30 Thread Arnaud HERITIER
http://maven.apache.org/maven-1.x/ Arnaud On 3/30/06, Yuri Leikind [EMAIL PROTECTED] wrote: Hi everyone, I am going to support a project which uses Maven 1.0.2 as a project management tool. I've read the docs about Maven 2.0, played with it , and found it very easy to use, intuitive and

Re: Maven 1.0.2 documentation

2006-03-30 Thread Alex Shneyderman
http://maven.apache.org/maven-1.x/ On 3/30/06, Yuri Leikind [EMAIL PROTECTED] wrote: Hi everyone, I am going to support a project which uses Maven 1.0.2 as a project management tool. I've read the docs about Maven 2.0, played with it , and found it very easy to use, intuitive and powerful.

Re: [m2] How to package resource files in jar file

2006-03-30 Thread Mang Jun Lau
build resources resource directory${basedir}/directory includes include*.xml/include include*.wsdl/include /includes /resource /resources /build --- Mang Lau Software Developer

Why would I get this problem on initial create of project

2006-03-30 Thread MTedesco
Hi I am trying to create my first Maven project as guided in the Maven GettingStarted Guide But I get the following errors. Any ideas? This is my first step after installing Maven202. c:mvn -e archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app [INFO] Scanning for projects...

Is there documentation for Client-Jar creation?

2006-03-30 Thread raghurajan . x . gurunathan
Hi All, I want to include and exclude some files in creating ejb-client jar, But i don't know what need to be included in configuration section of ejb plugin , is there any documentation for this like how to configure client jar or is there some sample somewhere /some one has it Please

won't accept activation jar

2006-03-30 Thread Pete Carapetyan
I am a long time Maven 1.0 user making my first transition to a 2.0 project For whatever reason, my javax.activation jar won't be seen. Everything googled points to the same thing that apparently others have had happen, first you get this error Missing: -- 1)

How to get a list of files from a directory?

2006-03-30 Thread Zsolt
Hi, how can I figure out the files of a directory? For example I think checkout should work however it mustn't be recursive? Zsolt

Re: [m2] How to use deploy:deploy-file to manage my private repo ?

2006-03-30 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Nico, install:intall-file can be used to put an artifact in local repo. Can I use deploy:deploy-file to do the same in my corporate repo ? Yes. How to set the remote repository path (I cannot find an entry for this in setting.xml) ? It

Re: [m2] How to use deploy:deploy-file to manage my private repo ?

2006-03-30 Thread Martin Cooper
On 3/30/06, Nicolas De Loof [EMAIL PROTECTED] wrote: Hello, I've got to add some private / restricted artifacts in my corporate repo, but I'd like to avoid creating all the required directories. install:intall-file can be used to put an artifact in local repo. Can I use deploy:deploy-file

Continuum doesn't detect updates with schedule builds

2006-03-30 Thread Carlos Henriquez
Hello, I'm using Continuum 1.0.2 with Maven 2.0.2 and I added a project with a default build that works just fine when I forced it (clean install). The problems comes with the Schedule. I'm using DEFAULT_SCHEDULE and it triggers every hour but the build throws and error. Here is the tail output

Maven 2.0.3 - ${project.build.outputDirectory} value changed

2006-03-30 Thread raghurajan . x . gurunathan
Lets say i have directory structure has Project Module-A SubModule-A -pom.xml -pom.xml Module-B SubModule-B -pom.xml -pom.xml -pom.xml If run mvn compile from SubModule-A directory, the value

Re: maven repositories

2006-03-30 Thread andreas.ebbert-karroum
Hi, regarding your mail http://www.mail-archive.com/users@maven.apache.org/msg22668.html on the maven users list. Is there a way (with maven1) to generate html and pdf javadoc for the same project? Can I invoke the javadoc:generate goal from a maven.xml with different property sets?

Does continuum add any email notifiers automagically?

2006-03-30 Thread Stevenson, Chris
Hi, I'd like to define in my pom (or in application.xml) a set of default developers myself included who get all the build emails (failures/success etc...) Can I do that? We are defined in the parent pom as developers but when I drop the pom in we're not added as notifiers. Thanks,

Re: Maven 2.0.3 - ${project.build.outputDirectory} value changed

2006-03-30 Thread John Casey
yeah, we found this regression yesterday. Brett has fixed it, and we'll be calling for a 2.0.4 release soon as a result. :-\ See: http://jira.codehaus.org/browse/MNG-2186 for more information. -john [EMAIL PROTECTED] wrote: Lets say i have directory structure has Project Module-A

Re: Is there documentation for Client-Jar creation?

2006-03-30 Thread John Casey
What specifically do you want to configure? The list of classes that go in the client jar? If so, try putting something like the following in your maven-ejb-plugin configuration: clientIncludes clientInclude**/SomeClassPrefix*/clientInclude /clientIncludes clientExcludes

Why would I get this problem on initial create of project

2006-03-30 Thread MTedesco
Hi I am trying to create my first Maven project as guided in the Maven GettingStarted Guide But I get the following errors. Any ideas? This is my first step after installing Maven202. Thanks, c:mvn -e archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app [INFO] Scanning for

POM file truncated during deployment

2006-03-30 Thread Marc Dugger
We have several projects being built by M2/Continuum. However, one of the POM files is consistently being truncated at the same spot each time. The truncation doesn't occur during 'install' into developer's local repo. Has anyone seen something like this before? ... dependency

Re: Why would I get this problem on initial create of project

2006-03-30 Thread Carlos Henriquez
Every time you perform a goal for the first time, Maven downloads everything it needs to work. Maybe it can't connect to internet because of a Proxy or something like that or it is configure to not connect at all. Check that. Hope it works :D On 3/30/06, [EMAIL PROTECTED] [EMAIL PROTECTED]

RE : POM file truncated during deployment

2006-03-30 Thread Olivier Lamy
Yes I had this. The cause was : I deployed to same path as user's localRepository. - Olivier -Message d'origine- De : Marc Dugger [mailto:[EMAIL PROTECTED] Envoyé : jeudi 30 mars 2006 18:22 À : Maven Users List Objet : POM file truncated during deployment We have several projects

Re: [m2] Exceptions when executing the surefire-report-maven-plugin

2006-03-30 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Boris, Some tracks may be about your problem: * Do you an IDE to edit your files ? If not, Eclipse detects unusual characters and may be it could be helpful here. I know that I sometimes generated special characters with a key combination that

How to get a list of files from a directory?

2006-03-30 Thread Zsolt
Hi, how can I figure out the files of a directory? For example I think checkout should work however it mustn't be recursive? Zsolt

[Maven2] changelog plugin CEST date

2006-03-30 Thread François-Xavier Busch
Hi Does anyone knows if there is a bug with the changelog plugin about the CEST date time ? Last week we passed from CET to CEST time and the maven site goal crashes when generating the changelog report : [INFO] Generate changelog report. [INFO] Generating changed sets xml to:

Re: [m2] Exceptions when executing the surefire-report-maven-plugin

2006-03-30 Thread Boris Lenzinger
Hi Thorsten, I understood it was the plugin that was generating the file that could not be parsed. But may be it can be interesting to check where the characters are. It can be strings extracted from your code. For instance you get a method name with this char or a classname with this char in

Re: which locales are supported by maven-site-plugin?

2006-03-30 Thread Wayne Fay
I believe the bundles have not yet been written for most languages. But I know *someone* on the User (or Dev?) list was working on this, search the archives. I checked my maven-site-plugin 2.0-SNAPSHOT and it includes properties for en, de, fr, it, ja, and pl. I checked 2.0-beta-4 and it only

Re: struts 1.2.9 checksum failure

2006-03-30 Thread Wayne Fay
I've seen this on several jars myself. Perhaps open a JIRA bug in MEV if you want to see it updated/fixed? Wayne On 3/30/06, Nicolas De Loof [EMAIL PROTECTED] wrote: It seems struts 1.2.9 POM checksum is wrong on ibiblio. [INFO] artifact struts:struts: checking for updates from central

Re: Is there documentation for Client-Jar creation?

2006-03-30 Thread raghurajan . x . gurunathan
Thanks for your reply But when i tried that command its giving me mvn help:describe -Dplugin=ejb -Dmojo=ejb -Dfull=true NFO] Scanning for projects... NFO] Searching repository for plugin with prefix: 'help'. NFO] org.apache.maven.plugins: checking for updates from maven-snapshots NFO]

Re: [m2] maven-checkstyle-plugin

2006-03-30 Thread Wayne Fay
That looks like doxia. Try adding this to your dependencies: groupIddoxia/groupId artifactIddoxia-core/artifactId version1.0-alpha-5/version Not positive that will work, but give it a try. Wayne On 3/30/06, SiD tourment [EMAIL PROTECTED] wrote: Ok done, i have the sources. To compile

Re: won't accept activation jar

2006-03-30 Thread Wayne Fay
Send us your full command from DOS and perhaps we can help. Wayne On 3/30/06, Pete Carapetyan [EMAIL PROTECTED] wrote: I am a long time Maven 1.0 user making my first transition to a 2.0 project For whatever reason, my javax.activation jar won't be seen. Everything googled points to the

Re: [Maven2] changelog plugin CEST date

2006-03-30 Thread Wayne Fay
Looks like a bug. File it in JIRA. They probably are only looking for 3 characters in the timezone field and CES is not valid, or something. Wayne On 3/30/06, François-Xavier Busch [EMAIL PROTECTED] wrote: Hi Does anyone knows if there is a bug with the changelog plugin about the CEST date

Re: Maven 1.0.2 documentation

2006-03-30 Thread Wayne Fay
Convince your group to move to Maven 2.0. ;-) Wayne On 3/30/06, Alex Shneyderman [EMAIL PROTECTED] wrote: http://maven.apache.org/maven-1.x/ On 3/30/06, Yuri Leikind [EMAIL PROTECTED] wrote: Hi everyone, I am going to support a project which uses Maven 1.0.2 as a project management

Re: [m2] Improper build number after deploying a snapshot of maven-javadoc-plugin

2006-03-30 Thread Wayne Fay
You'll need to add the Maven SNAPSHOT repository to your pom. This is such a common topic on the User list... repository idMaven Snapshots/id urlhttp://snapshots.maven.codehaus.org/maven2//url snapshots enabledtrue/enabled /snapshots releases

Re: How to copy the build to shared filesystem

2006-03-30 Thread Wayne Fay
I don't use Continuum at this point, but can't you run a mvn install or mvn deploy kind of command after the build successfully builds, which will install/deploy your build to a specified location? Wayne On 3/30/06, Gautham Pamu [EMAIL PROTECTED] wrote: Hi Everyone, I am using Maven 1.0.2

M2: no downloading attempts of non-existing artifact, please

2006-03-30 Thread John J. Franey
I'm converting a project to maven 2. Some dependencies do not exist in ibiblio, so I've 'installed' these into my local repository. I'm unhappy because every time I perform a run, there is a significant delay (sometimes) when maven tries to download these non-existent artifacts. I get these

Re: [m2] Exceptions when executing the surefire-report-maven-plugin

2006-03-30 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Gunther, 0x8 is a control character (Backspace?) and not allowed in XML files. The only exception to this are tab (0x9), CR and LF. Check the XML file using a hex editor or XML Spy for the exact location of the invalid character. These

Re: won't accept activation jar

2006-03-30 Thread Pete Carapetyan
Send us your full command from DOS and perhaps we can help. Thanks Wayne. First, this is the dependency that blows up. dependency groupIdjavax.activation/groupId artifactIdactivation/artifactId version1.0.2/version /dependency To match that I have the standard folder configuration

Re: won't accept activation jar

2006-03-30 Thread Wayne Fay
That's exactly why I wanted the full command... $ mvn install:install-file -DgroupId=javax.activation -DartifactId=activation -Dversion= 1.0.2 -Dpackaging=jar -Dfile=/ This should be: -Dfile=/activation-1.0.2.jar Or whatever the file name is. Wayne On 3/30/06, Pete Carapetyan [EMAIL

Re: [m2] Improper build number after deploying a snapshot of maven-javadoc-plugin

2006-03-30 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Wayne, You'll need to add the Maven SNAPSHOT repository to your pom. This is such a common topic on the User list... Sorry, forgot to mention that I already have this... Unfortunately http://snapshots.maven.codehaus.org/maven2 only contains

Re: M2: no downloading attempts of non-existing artifact, please

2006-03-30 Thread Wayne Fay
This is a somewhat common user request. Perhaps someone will file a JIRA enhancement request and it can be added in a future release of M2. Perhaps it could be configured on a per-dependency basis in the pom.xml file? Not sure if this is on the board for 2.1 but now is the time to report/request

Re: [m2] Improper build number after deploying a snapshot of maven-javadoc-plugin

2006-03-30 Thread Wayne Fay
Not sure but sounds reasonable. Give it a try. If it doesn't work, then come back and complain about it, and ask for more help. ;-) Wayne On 3/30/06, Thorsten Heit [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Wayne, You'll need to add the Maven SNAPSHOT

[m2.0.3] Embedder - setAlignWithUser ignored

2006-03-30 Thread Rollo, Dan
It appears there is no way to override the localRepository used by MavenEmbedder. Some code from MavenEmbedder.java: public void setLocalRepositoryDirectory( File localRepositoryDirectory ) { this.localRepositoryDirectory = localRepositoryDirectory; } ... public void

Re: How to copy the build to shared filesystem

2006-03-30 Thread Gautham Pamu
maven install and deploy uploads the jars,poms to the local/remote repository but I want the copy the complete working directory files sourcecode etc to the shared file system. I also want to tag the module before starting the build, is it possible to tag using continuum or maven goal In order

Re: M2: no downloading attempts of non-existing artifact, please

2006-03-30 Thread John J. Franey
Thank-you. I created: http://jira.codehaus.org/browse/MNG-2194 John Wayne Fay wrote: This is a somewhat common user request. Perhaps someone will file a JIRA enhancement request and it can be added in a future release of M2. Perhaps it could be configured on a per-dependency basis in the

Re: How to copy the build to shared filesystem

2006-03-30 Thread Wayne Fay
I generally tag before a build, then pull the tag, and build/test it. We use a combination of project name plus timestamp for daily/test builds. This seems to be a pretty widely-used practice. Then if we decide to go RC or full release for a given tag, we can either retag it with a more

building with Continuum 1.0.3 snapshot

2006-03-30 Thread Carlos Henriquez
Hello, I've just installed the 1.0.3 SNAPSHOT because I heard that a bug was fixed but I'm getting the same error. When I try to build a project (that was build manually before) with the DEFAULT_SCHEDULE I get a message that says BuildController- The project was not built because

Xdocs Question

2006-03-30 Thread Helck, Christopher
In my documents I often want to create links to documents in other sites. Right now I hard code them like this: a href=http://site.server/maven/component-x-1.0.9/multiproject/xyzzy/foo. html ... /a This is hard to maintain. If I upgrade the current component to use the next version of

deploy works, but release:perform fails to deploy

2006-03-30 Thread Craig McDaniel
I can run 'mvn deploy' and it works just fine. I ran release:prepare and it also worked fine. When I run release:perform, I get the following error: $ mvn -e release:perform + Error stacktraces are turned on. [INFO] Scanning for projects... [INFO] Reactor build order: [INFO] Unnamed -

[m2] supported languages by maven-site-plugin

2006-03-30 Thread Dario Luis Coneglian Oliveros
Hi there, I've been trying to generate a project site using pt_BR as language, but it doesn't seem to work, even though the maven-site-plugin says it is supported. By looking at maven-site-plugin code, I found out it was not able to locate the 'site-plugin_pt_BR.properties ' file, which

How to checkout taged version of the code

2006-03-30 Thread Gautham Pamu
Hi, Is it possible to add maven 2 project to continuum to checkout tagged version of the code. Can you specify the tag in the connection URL. Thanks -Gautham Pamu

Re: [m2] supported languages by maven-site-plugin

2006-03-30 Thread Wayne Fay
All languages are supported but not all have been implemented. This was just discussed a couple emails ago on Users list. Look for the emails with subject which locales are supported by maven-site-plugin? Feel free to write a pt_BR properties file and contribute back via JIRA. Wayne On

Re: How to checkout taged version of the code

2006-03-30 Thread Emmanuel Venisse
it depends on your scm. If you use subversion, it's possible. If it's an other, it isn't possible but you can define the tag to use in project edit view. http://maven.apache.org/scm/scm-url-format.html Please, send continuum question to the continuum list and maven question to maven list

Re: How to get a list of files from a directory?

2006-03-30 Thread Emmanuel Venisse
a checkout is always recursive. Emmanuel Zsolt a écrit : Hi, how can I figure out the files of a directory? For example I think checkout should work however it mustn't be recursive? Zsolt

Pls help

2006-03-30 Thread p k
  When I try to test Maven1.0.2,it is giving the error Out of Environment space even after setting the path and setting MAVEN_HOME.Can anybody pls help me with this? Thank you Maven user

Re: [m2] supported languages by maven-site-plugin

2006-03-30 Thread Dario Luis Coneglian Oliveros
Hi Wayne, It's already done according to 'mave-site-plugin' web page, but it seems like it's not released yet. Any idea when a new release is coming up ? The one I have is 2-0-beta-4. Dário Wayne Fay wrote: All languages are supported but not all have been implemented. This was just

Re: Pls help

2006-03-30 Thread Lukas Theussl
http://support.microsoft.com/kb/q230205/ or google for the error message, this is a well known problem. HTH, -Lukas p k wrote: When I try to test Maven1.0.2,it is giving the error Out of Environment space even after setting the path and setting MAVEN_HOME.Can anybody pls help me with

  1   2   >