Skip to content

anthill-platform/anthill-runtime-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Runtime for Anthill Platform

This Runtime allows you to have all of the Anthill Platform functionality inside of your Java-based game (for example, using libGDX).

Installation

Gradle

  1. Add the JitPack repository to your build.gradle file
allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}
  1. Add the dependency:
dependencies {
    compile 'com.github.anthill-platform:anthill-runtime-java:0.1.7'
}

Maven

  1. Add the JitPack repository to your pom.xml file
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
  1. Add the dependency:
<dependency>
    <groupId>com.github.anthill-platform</groupId>
    <artifactId>anthill-runtime-java</artifactId>
    <version>0.1.7</version>
</dependency>