Reputation: 5351
I am trying to download Zest in Eclipse Juno but unfortunately, I could not manage to do so. What I need is:
org.eclipse.zest
I could not find the Maven dependency for Zest and do not know how to get that installed. does anyone know how to get Zest installed in Eclipse Juno and how I can do with this with Maven. Thanks for your time.
Upvotes: 0
Views: 329
Reputation: 15675
You could get a hold of the source code, and mvn install
it, which would make it available to eclipse by using your local repository. Alternatively, if you have your own maven server (e.g. a nexus installation) you could mvn deploy
it or directly upload the artifact.
Upvotes: 0