-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to download the dependencies from maven central #123
Comments
Hello, I can explain the "black magic" bit you were mentioning. When I started with braingdx the <dependency>
<groupId>org.mini2Dx</groupId>
<artifactId>universal-tween-engine</artifactId>
<version>6.3.3</version>
</dependency> The more tricky bit is Could you provide error output? What exactly is failing? Even when relying on these custom dependencies your download should not fail. PS: I even created a ticket once but no one ever responded. 👎 PS 2: they just responded and it seems they are preparing 1.5 now. I will then modify the pom of braingdx so we are only relying on Maven Central dependencies from now on. This should eradicate all issues you have. |
The problem is
|
Ahh, I see what the issue is. It seems right now the following is still mandatory: <repositories>
<repository>
<id>k40s</id>
<name>k40s</name>
<url>https://nexus.k40s.net/repository/maven-public</url>
</repository>
</repositories> and for gradle respectively: repositories {
maven {
url "https://nexus.k40s.net/repository/maven-public"
}
} However, this will not work due to #122. Which means the following for braingdx:
Lessions learnt. Hopefully this week we can move fully to Maven Central by using universal-tween-engine and box2dlights respectively. DISCLAIMER the wiki is not up-to-date yet. I will do big progress this week to make it much more easy to understand braingdx! |
@born2snipe Please try again with version Today I finished #124 which allows me to do deploy very fast (uploading to Maven Central, creating a git tag and generating Javadoc). You can find the newest Javadoc of braingdx here. Let me know if it works for you now so I can close off this issue. Thanks! ❤️ |
Download successful! 👍 |
I was looking through the TravisCI logs for when you are publishing the
braingdx
jar to maven central and I see the code is compiling fine. I just could not find how you are accessing theuniversal-tween-engine
artifact from your CI box. I originally assumed you just did anmvn install:install-file
on your local dev machine to keep things moving along, but after seeing your TravisCI build worked I am guessing there is some black magic going on. :)Dependencies in question:
For what it is worth I did see there is an artifact to the
universal-tween-engine
in maven central:The text was updated successfully, but these errors were encountered: