RE: [M2] Overriding the Central Repository not working

2006-10-06 Thread Peter Anning
Anyway Arnaud Bailly was right I have solved my problem by creating a Bash script moving all the maven-metadata-central.xml to maven-metdata.xml regenerating the sha1 files and delete al unwanted maven-metadata-*.xml files in the copy of the local registry. Also my plugins that were Snapshots

Re: Error getting POM

2006-10-06 Thread Jeff Mutonho
Hi Jeff, connection problems appear as time-out errors. Try running it with the -X option next time you have errors. Adam I tried that when I was getting the error and the output didnt have anything of diagnostic value.It still the same Reason: Error getting POM for '

Patching plugins

2006-10-06 Thread jan_bar
Hello, I have some troubles with patched plugins. 1. Comparing artifact versions: The Better Builds with Maven, p. 61 first para says, that A version that contains a qualifier is always considered newer than a version without a qualifier; for example, 1.2 is newer than 1.2-beta. This is in

RE: mvn site does NOT create index files for any of my modules

2006-10-06 Thread Zeltner Martin
Hi Mike Which version of the maven-project-info-reports-plugin do you use? I use 2.0.1 and it works well. Did you defined the version in the plugin mgt section? If so take care because you have to define the version in reporting section too (see http://jira.codehaus.org/browse/MNG-1931). I've

How do i get more sensible test reports on the command line

2006-10-06 Thread Stefan Arentz
I'm trying to track down a bug in an open source project that is using maven 2. When I run mvn test all I get is: Running org.mortbay.jetty.HttpParserTest Tests run: 9, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 0.061 sec FAILURE! without much more details. Is there a simple way to

Re: Error getting POM

2006-10-06 Thread Iulian Costan
it seems that other dependecy requires this pom (as base pom or pom reference) but it is missing so this quick fix will solve your issue for the moment at least. dependency groupIdorg.codehaus.cargo/groupId artifactIdcargo-ant/artifactId version0.8/version

Re: Error getting POM

2006-10-06 Thread Jeff Mutonho
On 10/6/06, Iulian Costan [EMAIL PROTECTED] wrote: it seems that other dependecy requires this pom (as base pom or pom reference) but it is missing so this quick fix will solve your issue for the moment at least. dependency groupIdorg.codehaus.cargo/groupId

Re: [m2] where should sql, dtds, test data and generated docs go?

2006-10-06 Thread soir
Adam Hardy-4 wrote: Where would I put SQL scripts? Under src/main/sql or src/main/resources/data? dbunit test data files - src/test/resources ? dbunit test data DTD - as above? I store SQL scripts in /database folder. There is the PowerDesigner database model too. DbUnit files are

Re: [M2] SSH deploy makes too many connections

2006-10-06 Thread José González Gómez
2006/10/5, José González Gómez [EMAIL PROTECTED]: Hi there, I'm trying to deploy some files to my server hosted somewhere. If the intrusion detection system of my hoster detects more than 10 ssh connections in less than 2 minutes it blocks the origin IP for 15 minutes, and this seems to be the

creating different packages for different customers

2006-10-06 Thread Marek Chowaniok
Hi all, In our company we need to create more packages (jar, war) for different customers. The content mostly will be same (like logic layer of the application) but the view layer should be different. i.e. we have (Cust1Index.jsp, Cust2Index.jsp, Cust3Index.jsp) and we need to create 3 different

Re: mvn site does NOT create index files for any of my modules!!!!!!

2006-10-06 Thread Syvalta
Mick Knutson-4 wrote: I get all the other files and documents created EXCEPT the index.html files. This applies for all my modules. I had the same problem. It got solved just by updating to site 2.0-beta-5 (just run maven with -U -up params). -- View this message in context:

Re: [OT?] Including Java LookFeel Graphics Repository

2006-10-06 Thread José González Gómez
Got fed up of legal issues just to use some icons... I'm gonna give a try to the icons in the Tango project [1], they even upload their icons to the maven repository [2] and they can be used under a CC license. [1] http://tango.freedesktop.org/Tango_Icon_Gallery [2]

RE: [mvn] clover-plugin documentation is very annoying

2006-10-06 Thread Vincent Massol
-Original Message- From: fuvo [mailto:[EMAIL PROTECTED] Sent: jeudi 5 octobre 2006 19:10 To: users@maven.apache.org Subject: RE: [mvn] clover-plugin documentation is very annoying Hi Vincent, Which version of the plugin are you using? Like in the examples I didn't set a

Re: maven and WTP in eclipse

2006-10-06 Thread Adam Hardy
Rod, what steps do you go through to get the WTP project deployed with maven filtering? Tomcat in Eclipse is reading the classpath OK and is pointing at the unfiltered web resources in my project, so it falls over as soon as it sees the place holders such as ${root.context} or

How to change plugin version

2006-10-06 Thread Naess, Ronny
I currently use maven-surfire-plugin 2.0 (at least so it says in my repository) how do I switch to another version? I tried to configere the plugin as a dependency but no luck. -Ronny - To unsubscribe, e-mail: [EMAIL

Re: mvn site does NOT create index files for any of my modules!!!!!!

2006-10-06 Thread Adam Hardy
Mick, are you sure you're not getting what you want? AFAICT it makes no difference having the index and summary elements in my pom. With or without them I get the project summary report. I do see this: [INFO] [site:site] [WARNING] Error loading report org.apache.maven.changes.ChangesMojo -

Re: How to change plugin version

2006-10-06 Thread Geoffrey De Smet
build pluginManagement plugins plugin groupId... artifactId... version... ... One good advice: lock down all your plugin versions if you want a stable build. Naess, Ronny wrote, On 2006-10-06 1:26 PM: I currently use maven-surfire-plugin 2.0 (at least so it says in my repository) how do I

Re: How to change plugin version

2006-10-06 Thread olivier . lambert
Hello, I would like to download source jars of my project dependencies from ibiblio repository. How can I configure maven to let do it ? thks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Easy way to print a dependency tree?

2006-10-06 Thread Stefan Arentz
I see a whole bunch of dependencies in my project and I have no idea where they come from. Is there an easy way to print a dependency tree so that I can see what artifacts depend on what? After dependency resolution. S. - To

Re: Easy way to print a dependency tree?

2006-10-06 Thread Ralph Pöllath
On 06.10.2006, at 14:01, Stefan Arentz wrote: I see a whole bunch of dependencies in my project and I have no idea where they come from. Is there an easy way to print a dependency tree so that I can see what artifacts depend on what? After dependency resolution. Have a look at the Dependencies

Re: Re: Easy way to print a dependency tree?

2006-10-06 Thread Stefan Arentz
On 10/6/06, Ralph Pöllath [EMAIL PROTECTED] wrote: On 06.10.2006, at 14:01, Stefan Arentz wrote: I see a whole bunch of dependencies in my project and I have no idea where they come from. Is there an easy way to print a dependency tree so that I can see what artifacts depend on what? After

Override plugin properties

2006-10-06 Thread jan_bar
Hello, plugin POM: Plugin POM: project properties xjavadoc.version1.1/xjavadoc.version /properties ... dependencies dependency ... version${xjavadoc.version}/version /dependency /dependencies /project How can I override the xjavadoc.version from my artifact pom, that uses

Re: Re: Easy way to print a dependency tree?

2006-10-06 Thread Wendy Smoak
On 10/6/06, Stefan Arentz [EMAIL PROTECTED] wrote: Is there a way to do this without having to create a report and thus the site? Run mvn with -X on the command line. You'll probably want to redirect the output to a file and view it in a text editor that does not wrap lines. It will print

[info] Problems with daily build of 20061006

2006-10-06 Thread Mohni, Daniel
Hello all I did some testing with the current daily build, and found some strange things... I installed archiva from scratch, therefore it's like a inital setup. 1. create admin 2. login as admin 3. create repository pointing to my current m2-repo 4. browse the repo in archiva and try to

RE: Why does my install goal fail?

2006-10-06 Thread Dave Hoffer
Well after all, I didn't really fix this. This is an issue that seems to come and go. Here is the contents of maven-metadata-inhouse.xml ?xml version=1.0 encoding=UTF-8?metadata groupIdcom.xrite/groupId artifactIdxrite-colorlib-api/artifactId version1.0/version versioning

Re: [M2] SSH deploy makes too many connections

2006-10-06 Thread dan tran
did you try it with the none external ssh? I dont see how you can get away from many connections issue using scpexe since maven requires a bunch of interactions with remote repo to do validation. and each interaction needs a ssh/scp invocation. -D On 10/6/06, José González Gómez [EMAIL

Re: Installing snapshot sources

2006-10-06 Thread Johannes Schneider
This is not always possible. I have a build server here (TeamCity) that automatically installs the latests snapshot of Spring RCP. But of course I also want to have the sources installed to. Since the build server always checks out the latest pom.xml from the repository I can't modify it. Any

Re: Why does my install goal fail?

2006-10-06 Thread Wayne Fay
Bug in Proximity. Bug in Maven. Bug in HTTP protocol / network / server hardware / client hardware. ;-) Wayne On 10/6/06, Dave Hoffer [EMAIL PROTECTED] wrote: Well after all, I didn't really fix this. This is an issue that seems to come and go. Here is the contents of

RE: Why does my install goal fail?

2006-10-06 Thread Dave Hoffer
We rebooted the server and it works now...how long is anyone's guess. I don't know to track this one down. I'm using RC4 of Proximity. -dh -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Friday, October 06, 2006 11:45 AM To: Maven Users List Subject: Re: Why does my

Re: Installing snapshot sources

2006-10-06 Thread Johannes Schneider
Okay, got it. I simply added -DperformRelease=true as JDK argument. Everything works fine now. Thanks. Johannes Schneider Johannes Schneider wrote: This is not always possible. I have a build server here (TeamCity) that automatically installs the latests snapshot of Spring RCP. But of course

Re: [M2] SSH deploy makes too many connections

2006-10-06 Thread Doug Douglass
FYI, we ran into the same issue with scpexe. I don't particularly think this is so outrageous, we just had our hosting provider whitelist certain IPs. Dan, hasn't maven and mojo moved to using WebDAV for deploys? Any feedback on how this has been working? Doug On 10/6/06, dan tran [EMAIL

Re: How do i get more sensible test reports on the command line

2006-10-06 Thread Hilco Wijbenga
Look in target/surefire-reports/. On 10/6/06, Stefan Arentz [EMAIL PROTECTED] wrote: I'm trying to track down a bug in an open source project that is using maven 2. When I run mvn test all I get is: Running org.mortbay.jetty.HttpParserTest Tests run: 9, Failures: 2, Errors: 0, Skipped: 0, Time

MavenProject from pom.xml

2006-10-06 Thread MortenK
How can I load a pom.xml file from the filesystem into a MavenProject object? Morten -- View this message in context: http://www.nabble.com/MavenProject-from-pom.xml-tf2396491.html#a6682277 Sent from the Maven - Users mailing list archive at Nabble.com.

Re: [M2] SSH deploy makes too many connections

2006-10-06 Thread dan tran
Doug, codehaus' webdav works great, but there are some annoy warnings during deploy -D On 10/6/06, Doug Douglass [EMAIL PROTECTED] wrote: FYI, we ran into the same issue with scpexe. I don't particularly think this is so outrageous, we just had our hosting provider whitelist certain IPs.

Re: How do i get more sensible test reports on the command line

2006-10-06 Thread Wayne Fay
This was discussed just yesterday on this same email list... You can also use the configuration useFilefalse to disable the creation of these files, and then surefire will direct its output to the command line rather than the files. Wayne On 10/6/06, Hilco Wijbenga [EMAIL PROTECTED] wrote:

Re: [m2] Exclude resources from Jar?

2006-10-06 Thread Ian Brandt
Neeraj Bisht wrote: hi just use excludes exclude /eclude /exclude tag in resource to exclude any resource Thanks for the suggestion, but unfortunately that seems to exclude the resources from the build entirely. I want them to be filtered and

Errant failure notification

2006-10-06 Thread Richard Wallace
I've got a build that failed once yesterday, and ever since then a failure message has been sent out every hour even though the build is now fixed and its last build status in Continuum was successful. I even tried deleting the project from Continuum, but it still sends out the message. I also

RE: How do i get more sensible test reports on the command line

2006-10-06 Thread LAMY Olivier
mvn -Dtest=HttpParserTest -Dsurefire.useFile=false test -Message d'origine- De : Hilco Wijbenga [mailto:[EMAIL PROTECTED] Envoyé : vendredi 6 octobre 2006 18:08 À : Maven Users List Objet : Re: How do i get more sensible test reports on the command line Look in

authenticity and checksum warnings from internal repository using SCP

2006-10-06 Thread Christofer Jennings
Hi, I'm getting authenticity and checksum warnings from my internal repository using SCP. This is my first attempt setting up an internal repository and I'm pretty new to SCP so any help would be appreciated. Below are my settings and the CLI output. I need a special version of DWR ( 2.0m3) in

Re: [m2] Exclude resources from Jar?

2006-10-06 Thread Wendy Smoak
On 10/6/06, Ian Brandt [EMAIL PROTECTED] wrote: Thanks for the suggestion, but unfortunately that seems to exclude the resources from the build entirely. I want them to be filtered and copied to the target/classes directory (so they're on the classpath when debugging), and included in my

Re: authenticity and checksum warnings from internal repository using SCP

2006-10-06 Thread Wayne Fay
You need to generate the sha1 and md5 files manually on the server when you simply copy files over to the repo like this. Alternatively use mvn deploy and it will generate the files for you. Wayne On 10/6/06, Christofer Jennings [EMAIL PROTECTED] wrote: Hi, I'm getting authenticity and

Maven WAR/EAR projects and the WebSphere test server

2006-10-06 Thread justin_fung
Hello, I'm wondering if anybody has experience setting up a war/ear project in a multimodule pom and then having this run on WebSphere Application Developer's Test Server environment. Did you have to fiddle around with any of the settings? I know WSAD expects code in the web module to be in a

Customizing MANIFEST.MF with assembly plugin

2006-10-06 Thread Sebastien Arbogast
Hi, I'm currently investigating the use of Maven Assembly Plugin and I'd like the generated jar archive to be executable. For that I need the manifest to include a Main-Class attribute. The problem is that I don't manage to get a customized Manifest into the generated assembly. I've tried to add

Using FTP for site-deploy

2006-10-06 Thread Minto van der Sluis
Hi folks, I wonder if the wagon ftp provider already allows site-deploy over ftp. My isp does not allow ssh/scp to be used :-( I have looked in the mailing list archive and discovered earlier requests like this. However, most replies state directory copying is not supported. This is also the

Re: authenticity and checksum warnings from internal repository using SCP

2006-10-06 Thread Christofer Jennings
Thanks Wayne! I got past the checksum warnings and I geuss I need to set up the keys somewhere. ,chris On 10/6/06, Wayne Fay [EMAIL PROTECTED] wrote: You need to generate the sha1 and md5 files manually on the server when you simply copy files over to the repo like this. Alternatively use

maven and jalopy plugin

2006-10-06 Thread Stephen More
Has anyone use jalopy as a maven 2.0 pluging ? How do I get started ? I have not found a good source of info on the net yet. -Thanks Steve More - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: Maven WAR/EAR projects and the WebSphere test server

2006-10-06 Thread Marco Mistroni
Hello, not sure if it can help but i have just completed to move a WAS project to jboss using maven. yes you'd need to play around maven2 when you have to build your artifacts (suchca sgetting sources from JavaSource rather than src/main/java) and i had problems witn resources .. but if you need

Idea plugin and hot deploys from Maven

2006-10-06 Thread Mick Knutson
Will the Idea plugin allow me to run maven and hot deploy through IDea with JBoss 4? -- Thanks DJ MICK http://www.djmick.com http://www.myspace.com/mickknutson

RE: [M2] Overriding the Central Repository not working

2006-10-06 Thread Marilyn Sander -X \(marilysa - Digital-X, Inc. at Cisco\)
Peter, what local registry do you speak of? Do you mean the Windows registry? The reason I ask is I'm about to try the same thing, but I'm using Linux. Thanks, --Marilyn -Original Message- From: Peter Anning [mailto:[EMAIL PROTECTED] Sent: Thursday, October 05, 2006 11:34 PM To:

Re: maven war plugin filter

2006-10-06 Thread Christofer Jennings
I'm trying to figure out the same thing. Have you seens this... http://www.nabble.com/filtering-web.xml-with-profile-properties-tf2272626.html#a6309369 ,chris On 10/2/06, foamdino [EMAIL PROTECTED] wrote: Hi, I've been struggling with this for the whole morning and I'm at an impasse. I'm

Renaming an artifact

2006-10-06 Thread Swenson, Eric
I'm using Maven 2.0.4 and need to produce a .wsr file. A .wsr file is a jboss web service archive and is very similar to a .war file, a .sar file, and an .ear file. I've tried two tacts so far, neither successful. The first approach was to take the mavin-war-plugin sources, renaming all

Re: Maven WAR/EAR projects and the WebSphere test server

2006-10-06 Thread Neeraj Bisht
in jaboss you have to need hibernateservice.xml and mysql-ds.xml file i am using the multiproject pom and deploy ear in jboss no ideya in webspere On 10/7/06, Marco Mistroni [EMAIL PROTECTED] wrote: Hello, not sure if it can help but i have just completed to move a WAS project to jboss using

RE: Creating a .wsr file artifact

2006-10-06 Thread Swenson, Eric
Well, I've made progress since my post. However, I still have an issue. I now have a maven-wsr-plugin, which I based on maven-war-plugin and I'm able to compile my project with: mvn compiler:compile and package my project (into a .wsr file) with: mvn wsr:wsr However, what I

Getting started with archiva

2006-10-06 Thread Dirk Olmes
Hi, I wanted to take a look at archiva for some time now, finally I found the time to do so. I did a fresh svn checkout and issued mvn compile from the commandline - no success. I had to define the codehaus snapshot repo and the apache plugin snapshot repo in my settings.xml in order to get