-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
94 lines (70 loc) · 2.66 KB
/
build.gradle
File metadata and controls
94 lines (70 loc) · 2.66 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
plugins {
id 'org.springframework.boot' version '2.4.0'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10"
id 'java'
}
apply plugin: 'io.spring.dependency-management'
apply plugin: "com.ewerk.gradle.plugins.querydsl"
group = 'org.brokers'
version = '1.0.0-BUILD-SNAPSHOT'
description = 'guiders'
java.sourceCompatibility = JavaVersion.VERSION_11
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.security.oauth:spring-security-oauth2:2.5.0.RELEASE'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
implementation 'com.querydsl:querydsl-jpa'
implementation 'com.querydsl:querydsl-apt'
implementation 'org.springframework:spring-aspects:5.3.3'
implementation 'org.aspectj:aspectjrt:1.9.6'
implementation 'org.aspectj:aspectjweaver:1.9.5'
implementation 'org.springframework:spring-websocket:5.3.3'
implementation 'org.springframework:spring-messaging:5.3.3'
implementation 'com.querydsl:querydsl-jpa:4.4.0'
compile group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '2.4.1'
implementation 'org.mariadb.jdbc:mariadb-java-client:2.3.0'
implementation 'org.modelmapper:modelmapper:2.3.9'
implementation 'org.apache.commons:commons-lang3:3.11'
implementation 'org.imgscalr:imgscalr-lib:4.2'
implementation 'com.github.scribejava:scribejava-core:2.8.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.mockito:mockito-junit-jupiter:3.10.0'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
}
def querydslDir = "$buildDir/generated/querydsl"
sourceSets {
main {
java {
srcDir querydslDir
}
}
}
querydsl {
jpa = true
querydslSourcesDir = querydslDir
}
configurations {
querydsl.extendsFrom compileClasspath
}
compileQuerydsl {
options.annotationProcessorPath = configurations.querydsl
}
test {
useJUnitPlatform()
}