-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (41 loc) · 1.4 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
45
46
47
48
49
50
51
plugins {
id 'org.springframework.boot' version '2.4.0'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
group = 'agh'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '15'
targetCompatibility = '15'
repositories {
mavenCentral()
maven {
url "https://dl.bintray.com/speljohan/rxjavafx-mirror"
}
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
javafx {
version = '14'
modules = ['javafx.base', 'javafx.controls', 'javafx.fxml', 'javafx.graphics', 'javafx.media', 'javafx.swing', 'javafx.web']
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'org.postgresql:postgresql'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'net.rgielen:javafx-weaver-spring-boot-starter:1.3.0'
implementation "io.reactivex.rxjava3:rxjava:3.0.7"
implementation 'org.springframework.boot:spring-boot-starter-web'
compile 'com.gluonhq:charm:5.0.0-jdk9'
compile "net.synedra:validatorfx:0.1.12"
compile "org.springframework.boot:spring-boot-starter-mail"
compile "org.kordamp.ikonli:ikonli-javafx:12.1.0"
compile "org.kordamp.ikonli:ikonli-materialdesign2-pack:12.1.0"
}
test {
useJUnitPlatform()
}