12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- buildscript {
- repositories {
- mavenLocal()
- maven {
- allowInsecureProtocol = true
- url "http://maven.aliyun.com/nexus/content/groups/public" }
- mavenCentral()
- }
- dependencies {
- classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion")
- }
- }
- apply plugin: "$bootGroup"
- apply plugin: 'io.spring.dependency-management'
- configurations {
- compile.exclude group: 'org.apache.commons', module: 'commons-pool2'
- }
- dependencies {
- implementation project(":common:utils")
- implementation project(":common:data")
- implementation project(":dao:dao-interface")
- implementation project(":dao:dao-sql")
- implementation project(":dao:dao-redis")
- //implementation ("mysql:mysql-connector-java:$mysqlConnectorVersion")
- implementation("$bootGroup:spring-boot-starter-test")
- implementation ("com.alibaba:druid:$alibabaDruidVersion")
- implementation("$bootGroup:spring-boot-starter-web")
- //compile("$bootGroup:spring-boot-starter-session")
- implementation("$bootGroup:spring-boot-starter-websocket")
- implementation("$bootGroup:spring-boot-starter-undertow")
- implementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
- implementation("org.apache.logging.log4j:log4j-jul:$log4jVersion")
- implementation("org.apache.logging.log4j:log4j-api:$log4jVersion")
- implementation("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
- implementation("$bootGroup:spring-boot-starter-data-redis-reactive")
- implementation('com.fasterxml.jackson.datatype:jackson-datatype-jdk8')
- implementation ("com.taosdata.jdbc:taos-jdbcdriver:$taosVersion"){
- exclude group: 'com.alibaba', module: 'fastjson'
- }
- //implementation 'org.apache.commons:commons-pool2'
- implementation fileTree(dir: 'src/main/lib', include: '*.jar') //// oracle连接驱动 2区使用
- 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 'org.postgresql:postgresql:42.4.0'
- //implementation 'redis.clients:jedis:4.3.1'
- }
|