-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (34 loc) · 846 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
34
35
36
37
38
39
40
plugins {
id 'java'
id "application"
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
jar {
from configurations.runtime
manifest {
attributes(
'Class-Path': configurations.compile.collect { it.getName() }.join(' '),
'Main-Class': 'tobi.reinforcement.Main'
)
}
}
repositories {
mavenCentral()
}
application {
mainClassName = "tobi.reinforcement.Main"
}
test {
useJUnitPlatform()
}
dependencies {
implementation project(':gym')
implementation 'org.jfree:jfreechart:1.5.0'
implementation 'org.jgrapht:jgrapht-core:1.3.1'
implementation 'org.jgrapht:jgrapht-ext:1.3.1'
implementation 'org.json:json:20190722'
implementation 'commons-cli:commons-cli:1.4'
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.0'
}