-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (41 loc) · 1.37 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 'java'
id 'org.springframework.boot' version '3.1.0'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.takanshi'
version = '0.0.2-fix'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
jar {
manifest {
attributes(
'Main-Class': 'com.takanashi.final_server.FinalServerApplication'
)
}
}
dependencies {
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'com.github.yulichang:mybatis-plus-join:1.4.5'
implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.3.1'
implementation 'org.projectlombok:lombok:1.18.20'
implementation 'com.mysql:mysql-connector-j:8.0.32'
implementation 'com.baomidou:mybatis-plus-core:3.5.3'
implementation 'com.auth0:java-jwt:4.3.0'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation "javax.xml.bind:jaxb-api:2.3.1"
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.0'
implementation 'com.sun.xml.bind:jaxb-core:3.0.2'
implementation 'org.mindrot:jbcrypt:0.4'
implementation 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}