versioneye / versioneye_maven_plugin

Maven Plugin for VersionEye
50 stars 22 forks source link

mvn versioneye:create fails #72

Open rzvikas opened 7 years ago

rzvikas commented 7 years ago

hi I keep getting following error when using versioneye:create command

Here is what I added to my pom.xml

com.versioneye versioneye-maven-plugin 3.11.0 xxxxx

[INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 6.924 s [INFO] Finished at: 2016-12-22T11:32:49-05:00 [INFO] Final Memory: 19M/304M [INFO] ------------------------------------------------------------------------ [ERROR] No plugin found for prefix 'versioneye' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (C:\Users\vikas_bali.m2\repository), calyps o-central-mirror (scp://cvs.calypso.com/home/releng/repo-thirdparty), codehaus-mojo-snapshots (http://snapshots.repository.codehaus.org/), codehaus-mojo-releases (http://repository.codehaus.org/), jboss-releases (https://repo sitory.jboss.org/nexus/content/groups/public/), central (https://repo.maven.apache.org/maven2)] -> [Help 1] [ERROR]

Thanks

reiz commented 7 years ago

Hi @rzvikas It works for me and thousands of others, so it must be related to your setup. Which version of Java and Maven are you using? Are you behind a firewall? Behind a proxy? Can you provide a Vagrantfile or Docker Image with your setup?

bindul commented 7 years ago

@rzvikas, I think the key part of the error message is: No plugin found for prefix 'versioneye' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo]

Maven is not looking for the plugin in the groupId com.versioneye, only in the two groupIds noted above, So, you have two options:

koppor commented 7 years ago

The thing is that the README of the project explicitly states

Now you can check if the VersionEye API is available: mvn versioneye:ping

@bindul Thank you for the hint!

mvn com.versioneye:versioneye-maven-plugin:ping works fine.

reiz commented 7 years ago

@rzvikas Is this still an issue? Or is this solved now?