60 lines
1.3 KiB
Groovy
60 lines
1.3 KiB
Groovy
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
|
|
mainClassName = "inr.numass.trapping.Trapping"
|
|
|
|
group = 'inr.numass'
|
|
version = 'dev'
|
|
|
|
description = "Numass trapping simulation"
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = 'UTF-8'
|
|
}
|
|
|
|
tasks.withType(JavaExec) {
|
|
enableAssertions = true
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|
|
|
|
task runTrap(type: JavaExec) {
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
main = mainClassName
|
|
|
|
// arguments to pass to the application
|
|
args 'D:\\Work\\Numass\\trapping\\trap.out'
|
|
}
|
|
|
|
// native component
|
|
|
|
//model {
|
|
// components {
|
|
// scatter(NativeLibrarySpec)
|
|
// }
|
|
// toolChains {
|
|
// visualCpp(VisualCpp) {
|
|
// // Specify the installDir if Visual Studio cannot be located
|
|
// // installDir "C:/Apps/Microsoft Visual Studio 10.0"
|
|
// installDir "C:\\Program Files (x86)\\Microsoft Visual Studio 12.0"
|
|
// }
|
|
// gcc(Gcc) {
|
|
// // Uncomment to use a GCC install that is not in the PATH
|
|
// // path "/usr/bin/gcc"
|
|
// }
|
|
//
|
|
// }
|
|
//}
|