123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- buildscript {
- repositories {
- mavenLocal()
- maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
- mavenCentral()
- }
- dependencies {
- classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion")
- }
- }
- version = '1.0.3'
- apply plugin: "$bootGroup"
- apply plugin: 'io.spring.dependency-management'
- dependencies {
- compile project(":common:utils")
- //compile fileTree(dir: 'src/main/lib', include: '*.jar')
- compile("$bootGroup:spring-boot-starter-web")
- compile("$bootGroup:spring-boot-starter-undertow")
- compile("$bootGroup:spring-boot-starter-websocket")
- compile('org.apache.logging.log4j:log4j-core:2.15.0')
- compile('org.apache.logging.log4j:log4j-jul:2.15.0')
- compile('org.apache.logging.log4j:log4j-api:2.15.0')
- compile('org.apache.logging.log4j:log4j-slf4j-impl:2.15.0')
- //compile 'mysql:mysql-connector-java:5.1.28'
- compile 'com.alibaba:druid:1.0.25'
- compile 'com.alibaba:fastjson:1.2.17'
- compile 'com.baomidou:mybatis-plus-boot-starter:3.1.1'
- compile 'com.baomidou:mybatis-plus-generator:3.1.1'
- testCompile("$bootGroup:spring-boot-starter-test")
- // https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt
- compile group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.0'
- implementation 'org.postgresql:postgresql:42.4.0'
- }
|