On 31/10/11 20:27, Ian Dickinson wrote:
Hi Rob,
On 31/10/11 19:54, Robert Vesse wrote:
Is there any documentation on importing the maven projects into
Eclipse, when I try and do this I get a bunch of errors about
dependencies.
We need to update the Eclipse instructions for the new Maven structure.
It's also an area that is fluctuating, as we're adapting the Jena build
process to the Apache requirements.
The basic thing you need is to check out JenaTop trunk as a peer of the
Jena project you're trying to build (Core, ARQ, TDB, etc). If you look
in the pom.xml for JenaTop, that's where you'll find the missing
variables. The JenaTop pom is referred to from the pom's of the other
projects, e.g:
<parent>
<groupId>org.apache.jena</groupId>
<artifactId>jena-top</artifactId>
<version>0-incubating-SNAPSHOT</version>
<relativePath>../JenaTop/pom.xml</relativePath>
</parent>
I also find that even from the command line I cannot do a mvn install
easily because the artifacts appear to be referring to variables e.g
${ver.jena} When did this change
Basically it's changing live, as we try to get ready to build Apache
artifacts. However, adding JenaTop should solve your immediate issues.
Sorry that you've been inconvenienced by the changes!
Ian
There are checked-in Eclipse projects.
if you do
mvn dependency:resolve dependency:sources
all the necessary stuff should be installed in your maven repository.
Several projects have "mvn-update" scripts. But you need JenaTop
checked out until that is stable.
You need to set M2_REPO in Eclipse to your repository.
Andy