Skip to content

start.md: fetch JME libraries from Maven Central instead of JCenter #17

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

Merged
merged 1 commit into from
May 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions content/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
type: "default"
layout: "post_layout_default"
title: "Quick Start"
date: 2021-04-25T18:00:00+00:00
---

There are a variety of ways to use jMonkeyEngine:
Expand All @@ -16,11 +17,11 @@ Using the Netbeans-based SDK is by far the quickest solution to get you up and r
jMonkeyEngine is not bound to any specific IDE or SDK, though, and if you feel comfortable in the Java environment you can use any IDE. The engine itself and it's dependencies can be downloaded directly and you can include them just like any other library in your java project.
[Download the Engine](https://github.com/jMonkeyEngine/jmonkeyengine/releases).

If you prefer to use online dependencies you can include them in your project from jcenter. This is the most common approach for users that use an IDE such as intellij.
If you prefer to use online dependencies you can include them in your project from the Maven Central Repository. This is the most common approach for users that use an IDE such as intellij.

```groovy
repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down