Can someone walk through the steps carefully for me? I have been trying for hours and I can’t seem to get it. I’m using a Mac. And, I want to be able to use the Jung2 libraries while programming, using the Eclipse IDE.
http://jung.sourceforge.net/ Can someone walk through the steps carefully for me? I have been trying
Share
@Rohan: JUNG 2.0 Framework contains both binary and source form of jars.
To use the binary jars from JUNG, you need to add them as
Referenced Librariesin a project. Create a new project. Then, add required JUNG jars somewhere inside project directory.Refreshproject tree. Right-click on each JUNG jar to add it toBuild Path > Add to Build Pathin Eclipse. By doing this, each will be registered underReferenced Librariestree in the project.Since a few JUNG jars have source code version, you can open the
Build Pathof the project and go toLibraries tab. Under this tab, it lists all JARs. Attach the JUNG source code jar version to equivalent JUNG binary jar version underSource attachmentof that jar. For example: attachjung-samples-2.0.1-sources.jartojung-samples-2.0.1.jarOnce done, go to
jung-samples-2.0.1underReferenced Librariesand open any class in a JUNG package. You will be able to see the source code view of the class.