-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (42 loc) · 1.63 KB
/
build.gradle
File metadata and controls
56 lines (42 loc) · 1.63 KB
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
52
53
54
55
56
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.13'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.openjfx.javafxplugin' version '0.1.0'
}
group = 'bpos.adminclient'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
javafx {
version="17"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
repositories {
mavenCentral()
}
dependencies {
implementation('org.controlsfx:controlsfx:11.1.2')
implementation('com.dlsc.formsfx:formsfx-core:11.6.0') {
exclude(group: 'org.openjfx')
}
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation project(':BPositiveCommon')
implementation project(':BPositiveCommon:BPositiveModel')
implementation project(':BPositiveCommon:BPositiveOther')
implementation 'org.openjfx:javafx-controls:17.0.2' // Am actualizat aici versiunea la 17
implementation 'org.openjfx:javafx-fxml:17.0.2'
implementation 'org.java-websocket:Java-WebSocket:1.5.2'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.3'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
//implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'com.konghq:unirest-java:3.13.6' // Use the latest version available
}
tasks.named('test') {
useJUnitPlatform()
}