[ANN] Maven Indexer 4.1.2 Release

2011-09-26 Thread Olivier Lamy
Hello, The Apache Maven team is pleased to announce the release of the Apache Maven Indexer version 4.1.2 http://maven.apache.org/maven-indexer/ You should specify the version in your project's configuration: dependency groupIdorg.apache.maven.indexer/groupId

Re: Copynig hibernate config files in maven project.

2011-09-26 Thread Anders Hammar
src/main/resources and src/test/resources respectively. The Hibernate config files are resource files. /Anders On Mon, Sep 26, 2011 at 07:34, arka.sharma arka.sharma1...@gmail.com wrote: Hi, I have a hibernate project.My source files are located inside the package com.sdp.So I have kept

[ANN] Mojo's Cassandra Maven Plugin 0.8.6-1 released

2011-09-26 Thread Stephen Connolly
The Mojo team is pleased to announce the release of Mojo's Cassandra Maven Plugin version 0.8.6-1. Mojo's Cassandra Plugin is used when you want to install and control a test instance of Apache Cassandra from within your Apache Maven build. The Cassandra Plugin has the following goals. *

Re: release transitive SNAPSHOT dependency

2011-09-26 Thread Abid Hussain
It's simply to save time. Let's say you have a project containing of several components. Instead of releasing every component separate, you perform the release only for the main component and in a transitive way maven performs automatically releases of all dependent SNAPSHOT components.

Re: Can I configure the version used as default for Maven plugins?

2011-09-26 Thread Ron Wheeler
I would do it in the parent project for the project rather than at a company level. You may have several projects running at once and you may not want to affect all of them Ron On 25/09/2011 6:28 AM, Jonny Andersson wrote: Aha ... which then cause it to be located in the file

Re: release transitive SNAPSHOT dependency

2011-09-26 Thread Ron Wheeler
My own preference is to have the person who is going to provide the personal guarantee to the rest of the team that module B is ready for release to do the release. This may take a few minutes but the peace of mind that it gives me is worth that few minutes. If Maven does the release, who is

Can cobertura and surefire-report plugins be run without running the tests twice?

2011-09-26 Thread Miguel Almeida
I am using the cobertura plugin to create test coverage reports, and surefire-report for test reports. See [1] for my maven 3 configuration on the top-tier of a multi-module project. The goals I am running are: Surefire: surefire-report:report Cobertura: cobertura:cobertura Is it possible to run

Re: Can cobertura and surefire-report plugins be run without running the tests twice?

2011-09-26 Thread Stephen Connolly
http://maven.40175.n5.nabble.com/Cobertura-and-Surefire-td3338334.html On 26 September 2011 15:46, Miguel Almeida migueldealme...@gmail.com wrote: I am using the cobertura plugin to create test coverage reports, and surefire-report for test reports. See [1] for my maven 3 configuration on the

Re: [m2] Any support for Cruise Control yet?

2011-09-26 Thread sreejithsown
Is it possible to generate html junit, pmd, reports using maven2 and cruise control? Please update if you have any solution. Thanks in advance, Sreejith -- View this message in context: http://maven.40175.n5.nabble.com/m2-Any-support-for-Cruise-Control-yet-tp50718p4841817.html Sent from the

Multiple single-module projects vs one multi-module project

2011-09-26 Thread Behrang Saeedzadeh
Hi, For large projects, wouldn't multiple single module projects work better than one multi-module project, because: 1- when using a dvcs, the repositories tend to become very large and when the project is divided into multiple single module projects, each project can have a small dvcs

Re: Multiple single-module projects vs one multi-module project

2011-09-26 Thread Ron Wheeler
I agree. 4- better visibility into the project for the manager. You know which modules are being changed and which ones are supposed to remain unchanged. You also get a bit of a warning about scope issues or potential problems when a new module gets added to the list of things that need

Re: [m2] Any support for Cruise Control yet?

2011-09-26 Thread Guillaume Polet
Well it seems some people did it here: http://lijinjoseji.wordpress.com/2008/04/29/configuring-cruise-control-with-maven2-and-svn-146-for-continuous-build-environment/ but it was a while ago. Personnally, I use Jenkins which comes with direct support for everything you want, it is easy to

m-assembly-p problem with dependencies

2011-09-26 Thread Jesse Farinacci
Greetings, I am having a lot of problems with the assembly plugin, using Maven 3.0.3 and m-assembly-p 2.2.1. My assembly descriptor and relevant pom.xml information can be found here: https://gist.github.com/1242745 With this configuration, I expect com.acme.proj:bootstrap and its dependencies

Re: m-assembly-p problem with dependencies

2011-09-26 Thread Guillaume Polet
I think you are mistaking on the semantic of useTransitiveDependency which seems to mean that: * Include/exclude filtering is applied on your direct dependencies, or also on the transtive dependencies (default is to true which seems logical) I believe that what you want is to use an exclude

Question about SCM and maven-release-plugin

2011-09-26 Thread Laird Nelson
What should the scm element contain so that the maven-release-plugin will work properly? I have seen people's projects have scm stanzas like this: scm connectionscm:svn:https://whatever.com/whatever/trunk/connection developerConnectionscm:svn:https://whatever.com/whatever/trunk

Re: Question about SCM and maven-release-plugin

2011-09-26 Thread Olivier Lamy
Hello, 2011/9/26 Laird Nelson ljnel...@gmail.com: What should the scm element contain so that the maven-release-plugin will work properly? I have seen people's projects have scm stanzas like this: scm    connectionscm:svn:https://whatever.com/whatever/trunk/connection    

Re: Question about SCM and maven-release-plugin

2011-09-26 Thread Dennis Lundberg
On 2011-09-26 20:58, Laird Nelson wrote: What should the scm element contain so that the maven-release-plugin will work properly? I have seen people's projects have scm stanzas like this: scm connectionscm:svn:https://whatever.com/whatever/trunk/connection

Possible to disable maven central ( repo1 ) ?

2011-09-26 Thread Sony Antony
Hi : We have an http internal repository to which, I would like all developers to point for their local builds. But I dont want them to go to repo1.maven.org Looks like if I switch maven to online ( offlinefalse/offline ), it will attempt to go to repo1 ( in addition to the repositories specified

Re: Possible to disable maven central ( repo1 ) ?

2011-09-26 Thread Brian Topping
http://www.sonatype.com/books/nexus-book/reference/maven-sect-single-group.html discusses how to do that. On Sep 26, 2011, at 7:47 PM, Sony Antony wrote: Hi : We have an http internal repository to which, I would like all developers to point for their local builds. But I dont want them to

Re: Possible to disable maven central ( repo1 ) ?

2011-09-26 Thread Manfred Moser
And in addition if you want to make sure they do not use anything from central you might want to block it on the firewall level (including mirrors) On 11-09-26 04:51 PM, Brian Topping wrote: http://www.sonatype.com/books/nexus-book/reference/maven-sect-single-group.html discusses how to do

Re: Possible to disable maven central ( repo1 ) ?

2011-09-26 Thread Brian Topping
Good point, but I don't believe it's necessary if CI and management are the only clients that can push dependencies to the internal repository. Then, if someone checks in a POM that references an artifact that hasn't been blessed because they are using other repositories, CI will fail, also

Re: Possible to disable maven central ( repo1 ) ?

2011-09-26 Thread Manfred Moser
On 11-09-26 05:16 PM, Brian Topping wrote: Good point, but I don't believe it's necessary if CI and management are the only clients that can push dependencies to the internal repository. Very true.. but those are some big If's imho. They might not even have a CI system yet and even if that