-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (27 loc) · 842 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
plugins {
id 'application'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0'
implementation "guru.nidi:graphviz-java:0.18.0"
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.3'
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.13.3'
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
}
application {
mainClass = 'Main'
}
task run_algs(type: JavaExec) {
main = "report.FitnessAnalysis"
classpath = sourceSets.main.runtimeClasspath
if (project.hasProperty('runArgs')) { args findProperty('runArgs') }
}
task run_gui(type: JavaExec) {
main = "Main"
classpath = sourceSets.main.runtimeClasspath
}