2017-08-07 17:33:56 -07:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'application'
|
|
|
|
id 'org.jetbrains.kotlin.jvm' version '1.1.3'
|
|
|
|
}
|
2017-07-28 17:22:03 -07:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'application'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-08-08 14:53:34 -07:00
|
|
|
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
|
2017-07-28 20:03:50 -07:00
|
|
|
compile 'com.moandjiezana.toml:toml4j:0.7.1'
|
2017-08-07 17:33:56 -07:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8"
|
2017-07-28 17:22:03 -07:00
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
}
|
|
|
|
|
|
|
|
// Define the main class for the application
|
|
|
|
mainClassName = 'org.nwapw.abacus.Abacus'
|
|
|
|
|