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:
- Right click to the project name->Maven->Add Dependency;
-
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> -
I added the repository:
<repository> <id>jfugue-repo</id> <url>http://jfugue.googlecode.com/svn/trunk/jfugue/</url> </repository> - 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.
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
<repositorytag from your project’s pom.xml.