mirror of
https://github.com/DanilaFe/abacus
synced 2024-11-04 18:08:31 -08:00
16 lines
275 B
Groovy
16 lines
275 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
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'
|
|
|