Custom plugin not found

2007-10-10 Thread Duncan Doyle
Hello, I've created a custom Maven2 plugin for our SCM system (CA Harvest). This plugin is deployed in our internal remote repository. This remote repository is configured as a pluginRepository in my 'settings.xml ' file. The plugin's groupId ('org.test.tools.maven.harvest') has been specified in

Re: Custom plugin not found

2007-10-10 Thread Tim Kettler
Hi, From your description I would guess that your profile simply is not activated. Run 'mvn help:active-profiles' to ensure your profile is active. -Tim Duncan Doyle schrieb: Hello, I've created a custom Maven2 plugin for our SCM system (CA Harvest). This plugin is deployed in our internal

Re: Custom plugin not found

2007-10-10 Thread Duncan Doyle
I think that's actually the problem. When I execute 'mvn help:active-profiles' this is the output: [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'help'. [INFO] [INFO] Building Maven

Re: Custom plugin not found

2007-10-10 Thread Duncan Doyle
My profile is specified in the activeProfiles section and works when I perform maven goals on POMs. I tried to enable it explicitly using the -P command, but that didn't work either. I'll create a bug-report. Regards, Duncan On 10/10/07, Tim Kettler [EMAIL PROTECTED] wrote: How do you enable

Re: Custom plugin not found

2007-10-10 Thread Manos Batsis
On a similar issue, I just noticed that my custom plugin works fine in the site lifecycle but breaks when calling a goal directly as M2 thinks it's a maven plugin; my understanding is M2 uses the wrong groupId when trying to check the repo for it (should be

Re: Custom plugin not found

2007-10-10 Thread Tim Kettler
http://maven.apache.org/guides/introduction/introduction-to-plugin-prefix-mapping.html Manos Batsis schrieb: On a similar issue, I just noticed that my custom plugin works fine in the site lifecycle but breaks when calling a goal directly as M2 thinks it's a maven plugin; my understanding

Re: Custom plugin not found

2007-10-10 Thread Jörg Schaible
Manos Batsis wrote: On a similar issue, I just noticed that my custom plugin works fine in the site lifecycle but breaks when calling a goal directly as M2 thinks it's a maven plugin; my understanding is M2 uses the wrong groupId when trying to check the repo for it (should be

Re: Custom plugin not found

2007-10-10 Thread Duncan Doyle
You can configure that with the pluginGroups configuration in the settings.xml file. That works fine, I tested it by configuring my internal remote plugin repo as a mirrorOf central (as I described in one of my previous posts). The issue that I'm faced with here is the fact that Maven doesn't load

Re: Custom plugin not found

2007-10-10 Thread Jörg Schaible
Duncan Doyle wrote: Hello, I've created a custom Maven2 plugin for our SCM system (CA Harvest). This plugin is deployed in our internal remote repository. This remote repository is configured as a pluginRepository in my 'settings.xml ' file. The plugin's groupId