forked from CSC207-UofT/course-project-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (29 loc) · 879 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
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.10'
}
javafx {
version = '17'
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
mainClassName = 'gui.GUIDriver'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'com.sun.mail:javax.mail:1.6.2'
implementation group: 'com.calendarfx', name: 'recurrence', version: '11.6.4'
implementation group: 'com.calendarfx', name: 'view', version: '11.6.4'
implementation "de.jensd:fontawesomefx-fontawesome:4.7.0-11"
implementation 'com.jfoenix:jfoenix:9.0.10'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}