-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (36 loc) · 1.08 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds
*/
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
mainClassName = 'organisation.OrganisationApp'
repositories {
mavenCentral()
}
jar {
baseName = 'OrganisationApp'
version = '0.1.0'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
// https://mvnrepository.com/artifact/commons-io/commons-io
implementation 'commons-io:commons-io:2.11.0'
// java-graphviz library
implementation 'guru.nidi:graphviz-java-all-j2v8:0.18.1'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-nop
implementation 'org.slf4j:slf4j-nop:1.7.32'
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
implementation 'org.apache.commons:commons-lang3:3.12.0'
// https://mvnrepository.com/artifact/junit/junit
testImplementation 'junit:junit:4.13.2'
}
run {
if (project.hasProperty("appArgs")) {
args Eval.me(appArgs)
}
}