summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorSimonIT <simonit.orig@gmail.com>2019-12-01 12:37:15 +0100
committerSimonIT <simonit.orig@gmail.com>2019-12-01 12:37:15 +0100
commit47f52b84fad37e3b02241364291944da33e10e7a (patch)
treebb936701f97fd963a5131a3cf0138b2da7246b26 /README.md
parent9900cd77491a40158dcefbf0da1e6c29cfd4eb45 (diff)
downloadgdx-boardgame-47f52b84fad37e3b02241364291944da33e10e7a.zip
gdx-boardgame-47f52b84fad37e3b02241364291944da33e10e7a.tar.gz
Some install instructions
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md
index c2df9ae..6581c57 100644
--- a/README.md
+++ b/README.md
@@ -12,3 +12,30 @@ code is mainly extracted from https://github.com/jeremyz/rustanddust
- various animations
- path, movement, line of sight computation
+## install
+
+Add the repository:
+```groovy
+ allprojects {
+ repositories {
+ maven { url 'https://jitpack.io' }
+ }
+ }
+```
+Add the dependency to all subprojects: (You can replace `master-SNAPSHOT` with a tag from github)
+```groovy
+ dependencies {
+ implementation 'com.github.jeremyz:gdx-boardgame:master-SNAPSHOT'
+ }
+```
+If you use the html module, you have to add also this module to its dependencies:
+```groovy
+ dependencies {
+ implementation 'com.github.jeremyz:gdx-boardgame:master-SNAPSHOT:sources'
+ }
+```
+
+For the html build, you have to add this line to your *.gwt.xml files in the html project:
+```xml
+<inherits name='ch.asynk.gdx.boardgame'/>
+```