1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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'
- dependencies {
- implementation project(":common:utils")
- implementation project(":common:data")
- implementation project(":dao:dao-interface")
- implementation project(":dao:dao-sql")
- //compile project(":dao:dao-redis")
- // compile project(":dao:dao-simulator")
- //implementation project(":dao:dao-golden")
- //compile project(":dao:dao-taos")
- implementation project(":dao:dao-taoscz")
- //compile project(":dao:dao-hive")
- //compile project(":dao:dao-hadoop")
- implementation fileTree(dir: 'src/main/lib', include: '*.jar') //// oracle连接驱动 2区使用
- // implementation ("mysql:mysql-connector-java:$mysqlConnectorVersion")
- implementation ("com.alibaba:druid:$alibabaDruidVersion")
- testImplementation("$bootGroup:spring-boot-starter-test")
- 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")
- //compile('org.springframework.boot:spring-boot-starter-data-redis')
- //implementation "org.springframework.boot:spring-boot-starter-redis:1.3.5.RELEASE"
- //compile('io.moquette:moquette-broker:0.10')
- implementation('com.fasterxml.jackson.datatype:jackson-datatype-jdk8')
- implementation ("com.taosdata.jdbc:taos-jdbcdriver:$taosVersion")
- implementation 'org.postgresql:postgresql:42.4.0'
- }
|