File tree 1 file changed +28
-26
lines changed
1 file changed +28
-26
lines changed Original file line number Diff line number Diff line change 1
- buildscript {
2
- ext {
3
- springBootVersion = ' 2.4.0.RELEASE'
4
- }
5
- repositories {
6
- mavenCentral()
7
- jcenter()
8
- }
9
- dependencies {
10
- classpath(" org.springframework.boot:spring-boot-gradle-plugin:${ springBootVersion} " )
11
- }
12
- }
13
-
14
-
15
1
plugins {
16
- id ' org.springframework.boot' version ' 2.4.0'
2
+ id ' org.springframework.boot' version ' 2.4.1' // RELEASE 삭제
3
+ id ' io.spring.dependency-management' version ' 1.0.10.RELEASE'
4
+ id ' java'
17
5
}
18
6
19
- apply plugin : ' java'
20
- apply plugin : ' eclipse'
21
- apply plugin : ' io.spring.dependency-management'
22
-
23
- group ' com.midi79'
24
- version ' 1.0-SNAPSHOT'
7
+ group ' com.jojoldu.book'
8
+ version ' 1.0.4-SNAPSHOT-' + new Date (). format(" yyyyMMddHHmmss" )
9
+ sourceCompatibility = 1.8
25
10
26
11
repositories {
27
12
mavenCentral()
28
13
jcenter()
29
14
}
30
15
31
- dependencies {
32
- compile(' org.springframework.boot:spring-boot-starter-web' )
33
- testCompile(' org.springframework.boot:spring-boot-starter-test' )
34
- }
35
-
16
+ // junit5
36
17
test {
37
18
useJUnitPlatform()
19
+ }
20
+
21
+ dependencies {
22
+ implementation(' org.springframework.boot:spring-boot-starter-web' )
23
+ implementation(' org.springframework.boot:spring-boot-starter-mustache' )
24
+
25
+ // lombok
26
+ implementation(' org.projectlombok:lombok' )
27
+ annotationProcessor(' org.projectlombok:lombok' )
28
+ testImplementation(' org.projectlombok:lombok' )
29
+ testAnnotationProcessor(' org.projectlombok:lombok' )
30
+
31
+ implementation(' org.springframework.boot:spring-boot-starter-data-jpa' )
32
+ implementation(" org.mariadb.jdbc:mariadb-java-client" )
33
+ implementation(' com.h2database:h2' )
34
+
35
+ implementation(' org.springframework.boot:spring-boot-starter-oauth2-client' )
36
+ implementation(' org.springframework.session:spring-session-jdbc' )
37
+
38
+ testImplementation(' org.springframework.boot:spring-boot-starter-test' )
39
+ testImplementation(" org.springframework.security:spring-security-test" )
38
40
}
You can’t perform that action at this time.
0 commit comments