This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
64 lines (55 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
buildscript {
ext {
springBootVersion = '1.5.8.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
jar {
baseName = 'dd'
version = '0.4.5'
}
repositories {
mavenCentral()
}
ext {
vaadinVersion = '8.4.1'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
compile('com.vaadin:vaadin-spring-boot-starter')
compile("org.springframework.boot:spring-boot-starter-data-rest")
compile("org.springframework.boot:spring-boot-starter-data-mongodb")
compile 'org.apache.httpcomponents:httpclient:4.2.6'
compile 'io.appium:java-client:4.1.2'
compile 'com.squareup.okhttp3:logging-interceptor:3.6.0'
compile 'org.json:json:20171018'
compile 'org.springframework.boot:spring-boot-starter'
compile 'ch.qos.logback:logback-classic'
compile 'org.slf4j:jul-to-slf4j'
compile 'org.slf4j:log4j-over-slf4j'
compile 'org.jetbrains:annotations:15.0'
compile 'org.apache.httpcomponents:httpclient:4.5.6'
compile 'com.vaadin:vaadin-icons:3.0.0'
}
bootRun {
systemProperties System.getProperties() as Map<String, ?>
}
dependencyManagement {
imports {
mavenBom "com.vaadin:vaadin-bom:${vaadinVersion}"
}
}
configurations {
all*.exclude group: 'org.slf4j', module: 'slf4j-simple'
}