mirror of
https://github.com/DanilaFe/abacus
synced 2024-11-17 16:09:32 -08:00
23 lines
296 B
Groovy
23 lines
296 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs = ['src']
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
// Define the main class for the application
|
|
mainClassName = 'org.nwapw.abacus.Abacus'
|
|
|