123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- plugins {
- id 'org.springframework.boot' version '2.7.0'
- id 'io.spring.dependency-management' version '1.0.11.RELEASE'
- id 'java'
- }
- group = 'com'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '1.8'
- configurations {
- compileOnly {
- extendsFrom annotationProcessor
- }
- }
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-jdbc'
- implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4'
- implementation 'com.auth0:java-jwt:3.4.0'
- implementation 'junit:junit:4.12'
- compileOnly 'org.projectlombok:lombok'
- implementation 'com.alibaba:fastjson:1.2.76'
- implementation 'cn.hutool:hutool-all:5.6.5'
- implementation 'cn.hutool:hutool-core:5.6.5'
- implementation 'com.aliyun:aliyun-java-sdk-core:4.5.13'
- implementation 'com.aliyun.oss:aliyun-sdk-oss:3.10.2'
- implementation 'com.microsoft.sqlserver:mssql-jdbc:7.4.1.jre8'
- implementation 'org.springframework.boot:spring-boot-starter-aop'
- implementation 'org.springframework.boot:spring-boot-starter-data-redis:2.5.4'
- implementation 'ws.schild:jave-core:3.1.1'
- implementation 'ws.schild:jave-nativebin-win64:3.1.1'
- implementation 'commons-fileupload:commons-fileupload:1.3.2'
- // implementation 'com.github.wechatpay-apiv3:wechatpay-apache-httpclient:0.3.0'//微信支付
- // implementation 'org.apache.httpcomponents:httpclient:4.3.2' //post get请求包
- implementation 'com.baidubce:api-explorer-sdk:1.0.3.1'//百度翻译
- implementation 'com.alipay.sdk:alipay-sdk-java:4.22.57.ALL'
- implementation fileTree(dir:'lib',includes:['*jar'])
- annotationProcessor 'org.projectlombok:lombok'
- developmentOnly 'org.springframework.boot:spring-boot-devtools'
- testImplementation('org.springframework.boot:spring-boot-starter-test') {
- exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
- }
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|