-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
47 lines (42 loc) · 1.47 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
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
id 'org.liquibase.gradle' version '2.0.4'
id "io.freefair.lombok" version '5.1.0'
}
mainClassName = 'com.chriserus.Main'
run.dependsOn update
liquibase {
activities {
changelog {
changeLogFile 'src/main/resources/db/changelog-master.xml'
url 'jdbc:mysql://localhost:3306/restaurant?useLegacyDatetimeCode=false?useSSL=false&serverTimezone=Europe/Warsaw'
username 'root'
password 'root'
}
runList = 'changelog'
}
}
javafx {
version = "14"
modules = ['javafx.controls']
}
repositories {
mavenCentral()
}
dependencies {
implementation 'antlr:antlr:2.7.7'
implementation 'com.fasterxml:classmate:1.3.0'
implementation 'dom4j:dom4j:1.6.1'
implementation 'org.hibernate.orm:hibernate-core:6.0.0.Alpha5'
implementation 'mysql:mysql-connector-java:8.0.21'
implementation 'org.jboss:jandex:2.0.3.Final'
implementation 'org.javassist:javassist:3.22.0-GA'
implementation 'org.jboss.logging:jboss-logging:3.3.1.Final'
implementation 'org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.0.1.Final'
implementation 'org.liquibase:liquibase-core:4.0.0'
liquibaseRuntime 'javax.xml.bind:jaxb-api:2.3.1'
liquibaseRuntime 'org.liquibase:liquibase-core:3.8.1'
liquibaseRuntime 'org.liquibase:liquibase-groovy-dsl:2.1.1'
liquibaseRuntime 'mysql:mysql-connector-java:8.0.21'
}