Abacus/build.gradle

24 lines
345 B
Groovy

apply plugin: 'java'
apply plugin: 'application'
sourceSets {
main {
java {
srcDirs = ['src']
}
}
}
repositories {
mavenCentral()
}
dependencies {
compile 'com.moandjiezana.toml:toml4j:0.7.1'
testCompile 'junit:junit:4.12'
}
// Define the main class for the application
mainClassName = 'org.nwapw.abacus.Abacus'