-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
53 lines (46 loc) · 1.74 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
48
49
50
51
52
53
plugins {
id 'org.springframework.boot' version '2.7.5'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
group = 'com.chuqiyun'
sourceCompatibility = '17'
bootJar {
archiveFileName = 'QimenIDC-Server.jar'
version = '1.0.7'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.3.1'
implementation 'javax.annotation:javax.annotation-api:1.3.2'
implementation 'javax.servlet:javax.servlet-api:4.0.1'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'com.alibaba.fastjson2:fastjson2:2.0.25'
implementation 'org.jetbrains:annotations:23.0.0'
implementation 'com.jcraft:jsch:0.1.55'
implementation 'com.auth0:java-jwt:4.4.0'
implementation 'commons-codec:commons-codec:1.15'
implementation 'org.apache.shiro:shiro-spring:1.10.0'
implementation 'org.apache.httpcomponents:httpclient'
implementation 'io.springfox:springfox-boot-starter:3.0.0'
implementation 'com.github.xiaoymin:swagger-bootstrap-ui:1.8.5'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.mysql:mysql-connector-j:8.0.33'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}