Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a maven repository that distributes jung2 packages. Unfortunetely I can not find any information on its location.

Update: I have included the cental repository repo1.

 <repository>
  <id>central</id>
  <name>Maven Repository Switchboard</name>
  <layout>default</layout>
  <url>http://repo1.maven.org/maven2</url>
  <snapshots>
    <enabled>false</enabled>
  </snapshots>
</repository>

But I still get an error: 10/4/10 1:31:57 PM CEST: Missing artifact net.sf.jung:jung2:jar:2.0.1:compile. I use Maven 3.0-SNAPSHOT on Mac osX.

Update2: Declaration of Jung2 dependency:

  <dependency>
                <groupId>net.sf.jung</groupId>
                <artifactId>jung2</artifactId>
                <version>2.0.1</version>
                <type>pom</type>                 
        </dependency>

After adding pom, there is no error message. Unfortunetely maven does not retrieve jars of jung2 modules.

[Solved] I have added also a dependency to jung-graph-impl and I can now use jung2 in my project:

   <dependency>
        <groupId>net.sf.jung</groupId>
            <artifactId>jung-graph-impl</artifactId>
            <version>2.0.1</version>
</dependency>
share|improve this question

2 Answers

up vote 6 down vote accepted

On repo1 :

<dependency>
    <groupId>net.sf.jung</groupId>
    <artifactId>jung2</artifactId>
    <version>2.0.1</version>
</dependency>

Resources :

share|improve this answer
Still getting error: 10 1:26:09 PM CEST: Missing artifact net.sf.jung:jung2:jar:2.0.1:compile . Maven3 has download the jung2 pom but not jar files. – Skarab Oct 4 '10 at 11:27
1  
@Skarab, add the <type>pom</type> to the dependency, it's not a jar ;) – Colin Hebert Oct 4 '10 at 11:36
I did like that. Now I have nor errors neither jung2-* jars. I am confused... – Skarab Oct 4 '10 at 12:09

Try Maven Repository or Maven Repository Browser.

share|improve this answer
2  
This is Jung1 ;) – Colin Hebert Oct 4 '10 at 11:21
@Colin Hebert tx, fixed – Boris Pavlović Oct 4 '10 at 11:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.