Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [egit-dev] Request update Maven repository for Eclipse EGit GitHub API Core

I can confirm that this Egit Maven repo also works for me.  This is what I needed to have in my project pom.xml to use it:

  <repositories>
    <repository>
      <id>repo.eclipse.org</id>
      <name>EGit Maven Repository - Releases</name>
      <url>https://repo.eclipse.org/content/repositories/egit-releases/</url>
    </repository>
  </repositories>
  <dependencies>
    <dependency>
      <groupId>org.eclipse.mylyn.github</groupId>
      <artifactId>org.eclipse.egit.github.core</artifactId>
      <version>5.4.0.201905221418-m3</version>
    </dependency>
  </dependencies>



On Mon, Jul 15, 2019 at 4:42 PM Matthias Sohn <matthias.sohn@xxxxxxxxx> wrote:
On Mon, Jul 15, 2019 at 10:34 PM Hang Yin <hang.yin@xxxxxxxxxxxx> wrote:
Hi team:

My name is Hang and I am from DoorDash. I am working on a project that needs org.eclipse.egit.github.core. This library is good to use and I love it very much.

However, the maven repository seem not been updated since 2013, (https://mvnrepository.com/artifact/org.eclipse.mylyn.github/org.eclipse.egit.github.core) and some new fields of Github Api, which are already in your repo (https://github.com/eclipse/egit-github/tree/master/org.eclipse.egit.github.core), are not accessible to our maven project.

Would you please update the maven repository to include your latest stable version?

You can download the latest release of this library from the Eclipse Maven repository here:

We plan to further automate creating releases for EGit.
Maybe we find time to also include publishing to Maven central.

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


--
In general, we reserve the right to have a poor
memory--the computer, however, is supposed to
remember!  Poor computer.  -- Guy Lewis Steele Jr.

Back to the top