123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- plugins {
- id 'java'
- id 'org.springframework.boot' version '2.7.9'
- id 'io.spring.dependency-management' version '1.0.15.RELEASE'
- }
- group = 'com.gyee'
- version = '0.0.1'
- sourceCompatibility = '1.8'
- configurations {
- compileOnly {
- extendsFrom annotationProcessor
- }
- }
- repositories {
- mavenLocal()
- maven {
- url 'https://maven.aliyun.com/repository/public/'
- }
- maven {
- url 'https://maven.aliyun.com/repository/gradle-plugin/'
- }
- mavenCentral()
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-web'
- compileOnly 'org.projectlombok:lombok'
- runtimeOnly 'com.oracle.database.jdbc:ojdbc8'
- runtimeOnly 'org.postgresql:postgresql'
- annotationProcessor 'org.projectlombok:lombok'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- implementation 'redis.clients:jedis:4.3.1'
- implementation 'xerces:xercesImpl:2.12.2'
- implementation 'org.apache.poi:poi-ooxml:5.2.3'
- implementation 'cn.hutool:hutool-poi:5.8.12'
- implementation 'cn.hutool:hutool-core:5.8.13'
- implementation 'com.taosdata.jdbc:taos-jdbcdriver:3.1.0'
- implementation 'com.alibaba:druid:1.2.16'
- implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.3.1'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|