mirror of
https://github.com/DanilaFe/abacus
synced 2024-11-04 18:08:31 -08:00
22 lines
426 B
Groovy
22 lines
426 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
id 'org.jetbrains.kotlin.jvm' version '1.1.3'
|
|
}
|
|
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.moandjiezana.toml:toml4j:0.7.1'
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8"
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
// Define the main class for the application
|
|
mainClassName = 'org.nwapw.abacus.Abacus'
|
|
|