12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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-SNAPSHOT'
- 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")
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|