tags:

views:

14

answers:

1

Hello all,

We are developing with EMF outside Eclipse therefore using Maven for build. My question is where can I find EMF artifacts, and if yes which version.

BTW Is there any tool to automatically cross-publish Eclipse artifacts with sources to Maven repository?

Renat

A: 

You must install/deploy them manually. I use this command line:

mvn eclipse:make-artifacts -DstripQualifier=true -DeclipseDir=.../eclipse

to get the artifacts into the local M2 repo.

After that, I run this script to move the source JARs to the right place for Maven to pick them up.

The easiest way to deploy them is to use Nexus or a similar Maven cache/proxy and copy the files in the right place.

Aaron Digulla
Will source JAR files also be created?
Renat
Yes but only if you have them. Usually, you can get them by downloading all available "SDKs"
Aaron Digulla