문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top