-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (35 loc) · 1.78 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
plugins {
id 'org.springframework.boot' version '2.5.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'hello'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jdbc', version: '2.5.2'
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.25'
implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.3'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.20'
annotationProcessor('org.projectlombok:lombok')
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: '2.5.2'
implementation group: 'org.hibernate', name: 'hibernate-core', version: '5.5.3.Final'
implementation group: 'org.hibernate', name: 'hibernate-entitymanager', version: '5.5.3.Final'
implementation group: 'com.querydsl', name: 'querydsl-jpa', version: '4.4.0'
implementation group: 'com.querydsl', name: 'querydsl-apt', version: '4.4.0'
implementation group: 'eu.michael-simons', name: 'java-oembed', version: '0.8.1'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.4'
implementation group: 'org.json', name: 'json', version: '20210307'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
implementation('nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect')
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
}
test {
useJUnitPlatform()
}