1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-15 23:47:07 -07:00
Abacus/build.gradle

24 lines
345 B
Groovy
Raw Normal View History

apply plugin: 'java'
apply plugin: 'application'
sourceSets {
main {
java {
srcDirs = ['src']
}
}
}
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'