51 lines
1.4 KiB
Groovy
51 lines
1.4 KiB
Groovy
/*
|
|
* This file was generated by the Gradle 'init' task.
|
|
*
|
|
* This generated file contains a sample Java application project to get you started.
|
|
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
|
|
* User Manual available at https://docs.gradle.org/6.8.2/userguide/building_java_projects.html
|
|
*/
|
|
|
|
plugins {
|
|
// Apply the application plugin to add support for building a CLI application in Java.
|
|
id 'application'
|
|
}
|
|
|
|
repositories {
|
|
// Use JCenter for resolving dependencies.
|
|
jcenter()
|
|
|
|
maven {
|
|
name = "RetryLife Release"
|
|
url = "https://release.maven.retrylife.ca"
|
|
}
|
|
|
|
maven {
|
|
name = "RetryLife Snapshot"
|
|
url = "https://snapshot.maven.retrylife.ca"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Use JUnit test framework.
|
|
testImplementation 'junit:junit:4.13'
|
|
|
|
// This dependency is used by the application.
|
|
implementation 'com.google.guava:guava:29.0-jre'
|
|
|
|
// State machines
|
|
implementation "ca.retrylife:jstate:1.+"
|
|
implementation "ca.retrylife:jstate:1.+-sources"
|
|
implementation "ca.retrylife:jstate:1.+-javadoc"
|
|
|
|
// GameJ
|
|
implementation "dev.rsninja:gamej:1.+"
|
|
implementation "dev.rsninja:gamej:1.+-sources"
|
|
implementation "dev.rsninja:gamej:1.+-javadoc"
|
|
}
|
|
|
|
application {
|
|
// Define the main class for the application.
|
|
mainClass = 'ca.retrylife.ldjam48.App'
|
|
}
|