tags:

views:

119

answers:

1

does anyone know the java packages that flickrj is dependent on? I'm going through the slow and painful compile - jarify - run - locate-library - repeat loop.

+1  A: 

There's a Maven POM that references flickrj by name, you may find the listed dependencies useful. Note you'd also have to resolve the referenced project's transitive dependencies.

If you use the Maven dependency:copy-dependencies goal you can get all the transitive dependencies downloaded to a directory (you can also use the dependency:sources goal to get their sources)

You can also see the dependencies for flickr-api (a wrapper for flickrj) in its Maven pom.

Rich Seller
thanks
Jason S