ice1000 / jimgui

:sparkling_heart: Pure Java binding for dear-imgui
Apache License 2.0
186 stars 13 forks source link

Missing artifact org.ice1000.jimgui:core:pom:v0.9 #53

Closed aeris170 closed 4 years ago

aeris170 commented 4 years ago

Hi, I cannot include the library with the Maven directive mentioned in the readme:

<dependency>
    <groupId>org.ice1000.jimgui</groupId>
    <artifactId>core</artifactId>
    <version>v0.9</version>
    <type>pom</type>
</dependency>

Does not work. If you require, I can provide a screenshot.

aeris170 commented 4 years ago

OK, it apperas the dependency is not in Maven Central, but in a repository called JCenter. Adding these lines to pom.xml solves the issue:

<repositories>
    <repository>
        <id>jcenter</id>
        <url>https://jcenter.bintray.com</url>
    </repository>
</repositories>

I'll add this info to readme and send a PR.

aeris170 commented 4 years ago

Please link this issue to the PR: https://github.com/ice1000/jimgui/pull/54