josuFramework - Getting Started
===============================
Setting up josuFramework for making a game.
josuFramework is deployed to JitPack.
Gradle
------
.. code-block:: gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add this to your root settings.gradle at the end of repositories.
Add the dependency:
.. code-block:: gradle
dependencies {
implementation 'com.github.meowcat767:josuframework:Tag'
}
And done! Reload Gradle and josuFramework is ready for use!
Maven
-----
Add the repository to your pom.xml:
.. code-block:: xml
jitpack.io
https://jitpack.io
Now add the dependency:
.. code-block:: xml
com.github.meowcat767
josuframework
Tag
And done! Reload Gradle and josuFramework is ready for use!
sbt
---
Add the repo to your build.sbt at the end of resolvers:
.. code-block:: scala
resolvers += "jitpack" at "https://jitpack.io"
Add the dependency:
.. code-block:: scala
libraryDependencies += "com.github.meowcat767" % "josuframework" % "Tag"