-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (28 loc) · 928 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
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
group 'unibo'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
javafx {
version = "14"
modules = [ 'javafx.controls' ]
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.jsoup', name: 'jsoup', version: '1.13.1'
//compile 'io.vertx:vertx-core:3.9.0'
//compile 'io.vertx:vertx-web-client:3.9.0'
implementation 'com.github.graphstream:gs-ui-javafx:2.0-alpha'
implementation 'com.github.graphstream:gs-core:2.0.0-beta'
implementation 'com.github.graphstream:gs-algo:2.0.0-beta'
implementation "io.vertx:vertx-core:3.9.0"
implementation "io.vertx:vertx-web-client:3.9.0"
implementation "io.reactivex.rxjava3:rxjava:3.0.2"
}