forked from flowset/flowset-control-community
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
116 lines (94 loc) · 3.67 KB
/
build.gradle
File metadata and controls
116 lines (94 loc) · 3.67 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
* Copyright (c) Haulmont 2024. All Rights Reserved.
* Use is subject to license terms.
*/
plugins {
id 'io.jmix' version '2.4.1'
id 'java'
id 'org.jetbrains.gradle.plugin.idea-ext' version '1.1.9'
}
apply plugin: 'org.springframework.boot'
apply plugin: 'com.vaadin'
jmix {
bomVersion = '2.4.1'
}
group = 'io.openbpm'
version = '1.1.999-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'https://global.repo.jmix.io/repository/public'
}
maven {
url 'https://maven.vaadin.com/vaadin-addons'
}
}
dependencies {
def camundaVersion = '7.21.0'
def springCloudVersion = '2023.0.1'
def openFeignVersion = '4.1.1'
def mapstructVersion = '1.5.5.Final'
def lombokVersion = '1.18.32'
def vaadinSpinnerVersion = '24.1.0'
def jacksonModuleKotlinVersion = '2.13.3'
// Jmix
implementation 'io.jmix.core:jmix-core-starter'
implementation 'io.jmix.gridexport:jmix-gridexport-flowui-starter'
implementation 'io.jmix.data:jmix-eclipselink-starter'
implementation 'io.jmix.security:jmix-security-starter'
implementation 'io.jmix.security:jmix-security-flowui-starter'
implementation 'io.jmix.security:jmix-security-data-starter'
implementation 'io.jmix.localfs:jmix-localfs-starter'
implementation 'io.jmix.flowui:jmix-flowui-starter'
implementation 'io.jmix.flowui:jmix-flowui-data-starter'
implementation 'io.jmix.flowui:jmix-flowui-themes'
implementation 'io.jmix.datatools:jmix-datatools-starter'
implementation 'io.jmix.datatools:jmix-datatools-flowui-starter'
implementation 'io.jmix.charts:jmix-charts-flowui-starter'
implementation 'io.jmix.translations:jmix-translations-ru'
//Vaadin add-ons
implementation "org.vaadin.addons.componentfactory:spinner:${vaadinSpinnerVersion}"
// Spring
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
implementation "org.springframework.cloud:spring-cloud-starter-openfeign:${openFeignVersion}"
//Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// Camunda
implementation "org.camunda.community.rest:camunda-platform-7-rest-client-spring-boot:${camundaVersion}"
implementation "org.camunda.bpm:camunda-bom:${camundaVersion}"
implementation "io.holunda.camunda-api:camunda-bpm-engine-api:${camundaVersion}"
// Camunda util dependencies
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:${jacksonModuleKotlinVersion}"
// Preprocessors
implementation "org.mapstruct:mapstruct:${mapstructVersion}"
implementation "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}"
// Database drivers
runtimeOnly 'org.postgresql:postgresql'
// test: Spring
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
// test: Jmix
testImplementation 'io.jmix.flowui:jmix-flowui-test-assist'
// test: processors
testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
}
configurations.implementation {
exclude group: 'com.vaadin', module: 'hilla'
exclude group: 'com.vaadin', module: 'hilla-dev'
}
test {
useJUnitPlatform()
}
idea {
module {
excludeDirs.addAll(files '.jmix', 'node_modules', 'src/main/frontend/generated/', 'src/main/bundles')
}
}
vaadin {
optimizeBundle = false
}