|
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
}
|
|
|
|
java {
|
|
modularity.inferModulePath = true
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs "${project.'library.junit5.dir'}"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.platform:junit-platform-console-standalone:1.6.2'
|
|
}
|
|
|
|
application {
|
|
mainModule = 'com.torutk.spectrum'
|
|
mainClass = 'com.torutk.spectrum.view.SpectrumFileViewApp'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|