1
+ plugins {
2
+ id ' java'
3
+ id ' org.springframework.boot' version ' 3.4.1'
4
+ id ' io.spring.dependency-management' version ' 1.1.7'
5
+ }
6
+
7
+ group = ' com.seveneleven'
8
+ version = ' 0.0.1-SNAPSHOT'
9
+
10
+ repositories {
11
+ mavenCentral()
12
+ }
13
+
14
+ java {
15
+ toolchain {
16
+ languageVersion = JavaLanguageVersion . of(17 )
17
+ }
18
+ }
19
+
20
+ configurations {
21
+ compileOnly {
22
+ extendsFrom annotationProcessor
23
+ }
24
+ }
25
+
26
+ repositories {
27
+ mavenCentral()
28
+ }
29
+
30
+ dependencies {
31
+ implementation project(" :Common" )
32
+
33
+ implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
34
+ implementation ' org.springframework.boot:spring-boot-starter-thymeleaf'
35
+ implementation ' org.springframework.boot:spring-boot-starter-web'
36
+ implementation ' org.springframework.boot:spring-boot-starter-security'
37
+ // implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
38
+ // https://mvnrepository.com/artifact/io.github.cdimascio/dotenv-java
39
+ implementation group : ' io.github.cdimascio' , name : ' dotenv-java' , version : ' 3.0.0'
40
+ // https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-starter-webmvc-ui
41
+ implementation group : ' org.springdoc' , name : ' springdoc-openapi-starter-webmvc-ui' , version : ' 2.7.0'
42
+ // https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-aws
43
+ implementation group : ' org.springframework.cloud' , name : ' spring-cloud-starter-aws' , version : ' 2.2.6.RELEASE'
44
+ implementation ' org.modelmapper:modelmapper:2.4.4'
45
+ implementation ' javax.xml.bind:jaxb-api:2.3.1'
46
+ implementation ' com.sun.xml.bind:jaxb-core:2.3.0.1'
47
+ implementation ' com.sun.xml.bind:jaxb-impl:2.3.3'
48
+
49
+ // JSON Web Token (JWT) Core API
50
+ implementation ' io.jsonwebtoken:jjwt-api:0.11.5'
51
+
52
+ // Implementation and JSON support (runtime dependencies)
53
+ runtimeOnly ' io.jsonwebtoken:jjwt-impl:0.11.5'
54
+ runtimeOnly ' io.jsonwebtoken:jjwt-jackson:0.11.5'
55
+
56
+ compileOnly ' org.projectlombok:lombok'
57
+ developmentOnly ' org.springframework.boot:spring-boot-devtools'
58
+ testCompileOnly ' org.projectlombok:lombok'
59
+ testAnnotationProcessor ' org.projectlombok:lombok'
60
+ runtimeOnly ' com.mysql:mysql-connector-j'
61
+ annotationProcessor ' org.projectlombok:lombok'
62
+
63
+ implementation ' com.h2database:h2'
64
+ testImplementation ' org.springframework.boot:spring-boot-starter-test'
65
+ // testImplementation 'org.springframework.security:spring-security-test'
66
+ testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
67
+ }
68
+
69
+ test {
70
+ useJUnitPlatform()
71
+ }
0 commit comments