Re: M2Eclipse -workspace resolution

2008-04-24 Thread Mark Hewett
On Thu, Apr 24, 2008 at 12:46 AM, Salgar, Mehmet (external) < [EMAIL PROTECTED]> wrote: > I would try to find the JIRA for m2eclipse and write this there... Sounds like you may be running into this (or a variation of)... http://jira.codehaus.org/browse/MNGECLIPSE-438

Re: Repository search order

2008-04-12 Thread Mark Hewett
On Fri, Apr 11, 2008 at 12:42 PM, Jason van Zyl <[EMAIL PROTECTED]> wrote: > This is another classic example of why using a repository manager is a > good thing. You can specify repositories in one central place, and with > Nexus you can order, group, and route which means you can get certain > ar

Re: [IMPORTANT] Maven 2 Plugin Auto-Versioning Considered Dangerous

2007-04-15 Thread Mark Hewett
On 4/15/07, John Casey <[EMAIL PROTECTED]> wrote: Did you file a jira issue for this? If your assembly broke, then I'm assuming there was some behavior change from 2.1 -> 2.2-beta-1 that got you in trouble...I think that even if we're not going to fix it, we should have some doco for it... So, w

Re: [IMPORTANT] Maven 2 Plugin Auto-Versioning Considered Dangerous

2007-04-14 Thread Mark Hewett
On 4/11/07, John Casey <[EMAIL PROTECTED]> wrote: I'm sure many people have hit this plugin-versioning problem before... The first time this has really bit me in the rear is when the assembly plugin 2.2-beta-1 hit central, and my formerly working assembly went all to hell. Almost like you pl

Re: Skipping Tests but Still Compiling

2007-01-30 Thread Mark Hewett
On 1/30/07, Bashar Abdul Jawad <[EMAIL PROTECTED]> wrote: That is not true. Maven will still compile the test classes, but only if they have changed since the last compilation. To force maven to compile even if there were no changes run a clean first. Bashar Doesn't seem to for me... mvn -Dm

Re: Continuum behind Apache Proxy

2006-10-02 Thread Mark Hewett
On 9/28/06, Vivian Stelller <[EMAIL PROTECTED]> wrote: Hello at all, I want to setup continuum in a subdomain of my Apache 2.0.x managed domain. It should appear on http://continuum.eecoo.net Not sure if this will help, but here's how I'm doing it (which ends up with continuum being at htt

Re: [m2] eclipse attached sources for snapshot builds

2006-08-08 Thread Mark Hewett
On 8/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: great, that's it! But now the javadoc source is also generated, is it possible to switsh it off? the javadoc location in eclispse is not updated ;-( Fredy If you take a look at the super POM at http://maven.apache.org/guides/introductio

Re: Maven 2.0 Eclipse Plug-in compatibility with Eclipse 3.2.x (and IBMRAD 6.x)

2006-07-29 Thread Mark Hewett
On 7/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Actually I get appears whenever I now access the Eclipse preferences dialog e.g. MenuBar -> Windows -> Preferences. "Plug-in org.maven.ide.eclipse was unable to load class org.maven.ide.eclipse.preferences.Maven2PreferencePage." Peter,

[m2] Custom built org.apache.maven.plugins.* plugins

2006-07-25 Thread Mark Hewett
I'm having an issue with some custom built plugins - I'm taking a SNAPSHOT version of a plugin (e.g. maven-jar-plugin-2.1-SNAPSHOT) from SVN, modifying the version to be a release (e.g. 2.1-417949, using the svn version for the number) and building the plugin and deploying it into an in-house remo

Re: settings.xml activation activeByDefault setting

2006-07-19 Thread Mark Hewett
On 7/19/06, Max Cooper <[EMAIL PROTECTED]> wrote: Mykel, I am glad you posted your experience! I tried an empty the same way you did and assumed that it didn't work. I ended up listing the profile I wanted active in . And then setup an example settings.xml for the rest of my team to active th

Re: [m2] release:perform checkout vs. export (with Subversion)

2006-07-17 Thread Mark Hewett
On 7/17/06, Mike Perham <[EMAIL PROTECTED]> wrote: release:perform just uses the scm:checkout command. There's no scm:export command. Ahh, and it seems that someone has already requested that export be added: http://jira.codehaus.org/browse/SCM-210 Maybe it's time to roll up my sleeves and se

[m2] release:perform checkout vs. export (with Subversion)

2006-07-17 Thread Mark Hewett
When doing a release:perform the tagged version is checked out into target/checkout. This causes some issues with Subclipse - you end up with a Subversion working copy nested within a Subversion working copy, and even though the target directory is marked as ignored this causes new resources crea

Re: [M2] Mojo development: access to resources inside the plugin

2006-07-16 Thread Mark Hewett
Maybe you can pack your foo directory structure into a JAR that gets put into your plugin JAR. You can then try something like: InputStream is = this.getClass().getClassLoader().getResourceAsStream( "/foo.jar" ); JarInputStream jis = new JarInputStream(is); JarEntry je = null; while ((je = jis.g

[m2] release:prepare generateReleasePoms?

2006-06-30 Thread Mark Hewett
I have been trying to work out how to use release:prepare to create reproducible releases of our projects - i.e. trying to get a release-pom.xml generated with the versions of all the plugins resolved (as documented in the Mergere book and the plugin documentation). It seems like I should just sp

[m2] maven-jar-plugin-2.1 status?

2006-06-22 Thread Mark Hewett
Is there any estimate on when there will be a release build of the maven-jar-plugin-2.1 - even if it is a beta release build? We are using this to create signed JAR files, and so we are relying on the snapshot build on http://svn.apache.org/maven-snapshot-repository. However, this seems to stop u

Re: [maven2] Generating several artifacts per project ?

2006-05-27 Thread Mark Hewett
You may be able to use the assembly plugin to do something like what you want - although I'm not sure if the extra jars will make it into your repository so that you could depend on them in other projects. Bind the assembly:attached target into your build process in your pom.xml with something li

Re: Location of cobertura-maven-plugin?

2006-04-20 Thread Mark Hewett
No problem. I just tried it out and have a very nice report, so many thanks to the people working on this plugin! I should have mentioned that you can add the following to your POM to enable the snapshot repository, in case you haven't done this before. snapshots http://snapshots.mav

Re: Location of cobertura-maven-plugin?

2006-04-20 Thread Mark Hewett
On 4/20/06, Sean McNamara <[EMAIL PROTECTED]> wrote: > Simple question: > > Can anyone point me to the location of the > cobertura-maven-plugin? I can't seem to find it in > any of the online repositories. > > thanks! I think it's only in the snapshots repository at the moment. http://snapshots.

Re: [M2] How to sign a jar file

2006-03-30 Thread Mark Hewett
We are using the following. maven-jar-plugin sign ${project.build.directory}/${project.build.finalName}.jar ${project.build.directory}/signed/${project.build.finalName}.jar ${keystore.location} ${keystore.storepass} ${keystore.keypas

Re: [m202] eclipse plugin not running install correctly on multiproject?

2006-02-03 Thread Mark Hewett
On 2/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I searched google and jira and found no hits. Has anyone else seen this > behavior? This has come up on the [EMAIL PROTECTED] list. Probably worth creating a Jira entry for it, although I'm not sure if this is caused by the m2eclipse plug