mirror of https://github.com/DanilaFe/abacus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
296 B
23 lines
296 B
5 years ago
|
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'
|
||
|
|