addonscript-java/build.gradle

22 lines
440 B
Groovy

plugins {
id 'java'
}
group 'ley.anvil'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'com.google.code.gson:gson:+'
compile 'org.apache.maven:maven-core:+'
compile 'org.python:jython:2.7.0'
compile "com.github.TheRandomLabs:CurseAPI:master-SNAPSHOT"
testCompile group: 'junit', name: 'junit', version: '4.12'
}