velo / maven-annotation-plugin

Automatically exported from code.google.com/p/maven-annotation-plugin
0 stars 0 forks source link

repository for "maven-plugin-tools-anno" is missing in pom.xml #2

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. checkout the project
2. execute "mvn clean install"

What is the expected output? What do you see instead?
The project must be build successfully. Instead, the error message is: 

[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
Missing:
----------
1) org.jfrog.maven.annomojo:maven-plugin-tools-anno:jar:1.3.1

What version of the product are you using? On what operating system?
Revision 14 of the SVN version.

Please provide any additional information below.
The problem is solved by adding the "maven-plugin-tools-anno" repository. 
The pom.xml of the project must contain:

  <repositories>
    <repository>
      <id>jfrog</id>
      <name>jfrog repository</name>
      <layout>default</layout>
      <url>http://repo.jfrog.org/artifactory/plugins-releases</url>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>

Original issue reported on code.google.com by pa.avo...@gmail.com on 12 Mar 2009 at 4:18

GoogleCodeExporter commented 9 years ago
thx for feedback i've fixed it

Original comment by bartolom...@gmail.com on 8 Nov 2009 at 12:27