Pregunta

I'm working on a project on Eclipse IDE that requires jfugue. How do I add this dependency to my project, using Maven?

I tried to:

  1. Right click to the project name->Maven->Add Dependency;
  2. I added a dependency from pom.xml form:

    <dependency>
     <groupId>org</groupId>
     <artifactId>jfugue</artifactId>
     <version>4.1.0</version>
     <type>java-source</type>
    </dependency>
    
  3. I added the repository:

    <repository>
     <id>jfugue-repo</id>
     <url>http://jfugue.googlecode.com/svn/trunk/jfugue/</url>
    </repository>
    
  4. It search files with a broken link but I can't see it because it not appear for more than one second in the Progress View.

How can I fix this? Thanks for your help.

UPDATE 1 jfugue pom.xml is this. Mine pom.xml is this.

¿Fue útil?

Solución

It seems that the pom.xml doesn't have remote repositories. Use the following link to figure out how to install jar into the local repository. You have also remove <repository tag from your project's pom.xml.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top