-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (32 loc) · 758 Bytes
/
build.gradle
File metadata and controls
39 lines (32 loc) · 758 Bytes
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
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.1.0'
}
javafx {
version = '17.0.9'
modules = ['javafx.controls', 'javafx.fxml']
}
repositories {
mavenCentral()
}
application {
mainClass = 'edu.virginia.sde.reviews.CourseReviewsApplication'
}
sourceSets {
main {
resources {
srcDirs = ['src/main/resources']
}
}
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.43.2.1'
implementation 'org.slf4j:slf4j-api:2.0.9'
implementation 'org.slf4j:slf4j-simple:2.0.9'
}
test {
useJUnitPlatform()
}