-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
80 lines (65 loc) · 2.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
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
import org.flywaydb.gradle.task.FlywayMigrateTask
buildscript {
ext {
springBootVersion = "2.0.6.RELEASE"
jaxbVersion = "2.3.0"
}
repositories {
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
}
}
plugins {
id "java"
id "org.flywaydb.flyway" version "5.2.4"
id "com.gorylenko.gradle-git-properties" version "1.5.1"
}
apply plugin: 'org.springframework.boot'
repositories {
mavenCentral()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:$springBootVersion")
testCompile("org.springframework.boot:spring-boot-starter-test:$springBootVersion")
testCompile("org.mockito:mockito-core:2.23.4")
compile("org.springframework.boot:spring-boot-starter-jdbc:$springBootVersion")
compile("mysql:mysql-connector-java:6.0.6")
compile ("org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion")
compile("org.javassist:javassist:3.23.1-GA") // Required for Java 11
// JAXB is not present in Java 11
implementation "javax.xml.bind:jaxb-api:$jaxbVersion"
implementation "com.sun.xml.bind:jaxb-core:$jaxbVersion"
implementation "com.sun.xml.bind:jaxb-impl:$jaxbVersion"
implementation "javax.activation:activation:1.1.1"
compile("org.springframework.boot:spring-boot-starter-actuator:$springBootVersion")
}
def developmentDbUrl = "jdbc:mysql://localhost:3306/tracker_dev?user=tracker&useSSL=false&useTimezone=true&serverTimezone=UTC&useLegacyDatetimeCode=false"
bootRun.environment([
"WELCOME_MESSAGE": "hello",
"SPRING_DATASOURCE_URL": developmentDbUrl,
"MANAGEMENT_ENDPOINTS_WEB_EXPOSURE_INCLUDE": "*",
"MANAGEMENT_ENDPOINT_HEALTH_SHOWDETAILS": "always",
"MANAGEMENT_INFO_GIT_MODE": "full",
])
def testDbUrl = "jdbc:mysql://localhost:3306/tracker_test?user=tracker&useSSL=false&useTimezone=true&serverTimezone=UTC&useLegacyDatetimeCode=false"
test.environment([
"WELCOME_MESSAGE": "Hello from test",
"SPRING_DATASOURCE_URL": testDbUrl,
"MANAGEMENT_ENDPOINTS_WEB_EXPOSURE_INCLUDE": "*",
"MANAGEMENT_ENDPOINT_HEALTH_SHOWDETAILS": "always",
"MANAGEMENT_INFO_GIT_MODE": "full",
])
flyway {
url = developmentDbUrl
user = "tracker"
password = ""
locations = ["filesystem:databases/tracker/migrations"]
}
task testMigrate(type: FlywayMigrateTask) {
url = testDbUrl
}
springBoot {
buildInfo()
}