Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ecf-dev] Maven dependencies

Thanks!


From: wim.jongman@xxxxxxxxx
Date: Thu, 9 Apr 2015 13:33:14 +0200
To: ecf-dev@xxxxxxxxxxx
Subject: Re: [ecf-dev] Maven dependencies

We do not supply the osgi bits of remote serviceadmin. This is equinox. I don't know if they have a maven repo. You can google that.

The group id of ecf you can find by traversing the link

http://build.ecf-project.org/maven/3.9.3

e.g.

http://build.ecf-project.org/maven/3.9.3/org/eclipse/ecf/org.eclipse.ecf.console/maven-metadata.xml


On Thu, Apr 9, 2015 at 12:47 PM, Timothy Vogel <tvogel@xxxxxxx> wrote:
  I am trying to include remoteserviceadmin in my pom but it won't resolve.  I have tried various alternates of groupId and artifactId without success.

  Is there any place that lists the maven dependency for ECF bundles?

<repositories>
<repository>
<id>ecf</id>
</repository>
</repositories>

      <dependencies> 
      ******* This is resolved
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.3.1</version>
</dependency>
      ******* This is NOT resolved
<dependency>
<groupId>org.eclipse.osgi</groupId>
<artifactId>org.eclipse.osgi.services.remoteserviceadmin</artifactId>
<version>3.9.3</version>
</dependency>
</dependencies>


Tim


_______________________________________________
ecf-dev mailing list
ecf-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/ecf-dev


_______________________________________________ ecf-dev mailing list ecf-dev@xxxxxxxxxxx To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://dev.eclipse.org/mailman/listinfo/ecf-dev

Back to the top