Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] adding plugins

hi all
(thanks to christian) now i got a tycho based project up and running
next step: i need to add eclipselink to my project. how do i do this with tycho? on my 'plugin' project, (as i said before, i have 3 projects: plugin, feature and product) i added this

<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.core </artifactId>
<version>2.3.0</version>
<scope>compile</scope>
</dependency>
</dependencies>

but my maven plugin on eclipse says

09/09/11 13h50min31s AFT: Missing artifact org.eclipse.persistence:org.eclipse.persistence.core:jar:2.3.0:compile 09/09/11 13h50min31s AFT: [WARN] The POM for org.eclipse.persistence:org.eclipse.persistence.core:jar:2.3.0 is missing, no dependency information available 09/09/11 13h50min31s AFT: [WARN] The POM for org.eclipse.persistence:org.eclipse.persistence.core:jar:2.3.0 is missing, no dependency information available
09/09/11 13h50min31s AFT: Maven Builder: AUTO_BUILD

i'm using a nexus repository on my server.
is this the right path? or should i download eclipselink jars and drop it on my eclipse folder?

what am i missing?
thanks a lot


Back to the top