Abacus/build.gradle

16 lines
275 B
Groovy
Raw Normal View History

apply plugin: 'java'
apply plugin: 'application'
repositories {
mavenCentral()
}
dependencies {
2017-07-28 20:03:50 -07:00
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'