forked from CodingNomads/Advanced-Java-Spring-Labs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
81 lines (64 loc) · 2.54 KB
/
build.gradle
File metadata and controls
81 lines (64 loc) · 2.54 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
plugins {
id 'org.springframework.boot' version '2.2.7.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'java-library'
id 'idea'
}
group = 'platform.codingnomads.co'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation group: 'org.mybatis.spring.boot', name: 'mybatis-spring-boot-starter', version: '2.1.0'
implementation group: 'org.webjars', name: 'jquery', version: '3.2.1'
implementation group: 'org.webjars', name: 'bootstrap', version: '3.3.7'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:2.0.5'
implementation group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-springsecurity5'
implementation 'org.springframework.security:spring-security-oauth2-client'
// implementation 'org.springframework.security:spring-security-oauth2-jose'
// implementation group: 'org.hibernate', name: 'hibernate-core', version: '5.4.28.Final'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
runtimeOnly 'mysql:mysql-connector-java'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// compile group: 'commons-io', name: 'commons-io', version: '2.6'
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
//QueryDSL
annotationProcessor("org.springframework.boot:spring-boot-starter-data-jpa")
annotationProcessor("com.querydsl:querydsl-apt:4.2.1:jpa")
implementation("com.querydsl:querydsl-jpa:4.2.1")
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
wrapper {
gradleVersion = '6.3'
distributionType = Wrapper.DistributionType.ALL
}
idea {
module {
downloadSources = true
}
}
test {
useJUnitPlatform()
}