-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
78 lines (57 loc) · 2.36 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
import org.springframework.boot.gradle.plugin.SpringBootPlugin
plugins {
id 'java'
id 'application'
id 'idea'
id 'org.springframework.boot' version '2.2.6.RELEASE'
}
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom SpringBootPlugin.BOM_COORDINATES
}
}
repositories {
mavenCentral()
}
group 'com.jayfella'
version '1.0.56'
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = "com.jayfella.website.Main"
project.ext {
version_thymeleaf_dialect = "2.5.1"
version_jackson = "2.11.0"
version_mysql_connector = "8.0.20"
version_httpcomponents = "4.5.12"
version_validator = "1.6"
}
dependencies {
//compile fileTree(include: ['*.jar'], dir: 'plugins')
// SPRING
implementation "org.springframework.boot:spring-boot-starter"
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-jdbc"
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// implementation "org.springframework.boot:spring-boot-starter-security"
// implementation "org.springframework.boot:spring-boot-starter-websocket"
// implementation "org.springframework.boot:spring-boot-starter-activemq"
implementation "org.springframework.boot:spring-boot-starter-mail"
//implementation "org.springframework.boot:spring-boot-devtools"
// TEMPLATING - Thymeleaf
implementation "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:$version_thymeleaf_dialect"
// DATABASE - MySQL Driver
implementation "mysql:mysql-connector-java:$version_mysql_connector"
// JSON - jackson
implementation "com.fasterxml.jackson.core:jackson-core:$version_jackson"
implementation "com.fasterxml.jackson.core:jackson-databind:$version_jackson"
implementation "com.fasterxml.jackson.core:jackson-annotations:$version_jackson"
// HTTP - client
implementation "org.apache.httpcomponents:httpclient:$version_httpcomponents"
// Validators (email, etc)
implementation "commons-validator:commons-validator:$version_validator"
// sitemap
compile group: 'com.github.dfabulich', name: 'sitemapgen4j', version: '1.1.2'
}