1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/eairlv-eairlv-cli

В этом репозитории не указан файл с открытой лицензией (LICENSE). При использовании обратитесь к конкретному описанию проекта и его зависимостям в коде.
Клонировать/Скачать
build.gradle 2.2 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
lb Отправлено 22.08.2019 07:40 4b1f4a2
buildscript {
ext {
springBootVersion = '2.1.7.RELEASE'
}
repositories {
maven {
url 'http://maven.aliyun.com/nexus/content/groups/public/'
}
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
group = 'com.eairlv.cli'
version = '0.2.2'
sourceCompatibility = 1.8
repositories {
maven {
url 'http://maven.aliyun.com/nexus/content/groups/public/'
}
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
dependencies {
// 个人第三方jar包
compile fileTree(dir:'libs',include:['*.jar'])
// spring boot框架
compile 'org.springframework.boot:spring-boot-starter-web:2.1.7.RELEASE'
testCompile 'org.springframework.boot:spring-boot-starter-test:2.1.7.RELEASE'
// mysql数据库
compile 'mysql:mysql-connector-java:5.1.47'
compile 'com.alibaba:druid:1.1.10'
compile 'com.baomidou:mybatis-plus-boot-starter:3.1.2'
// swagger文档
compile 'io.springfox:springfox-swagger2:2.9.2'
compile 'io.swagger:swagger-models:1.5.21'
compile 'com.github.xiaoymin:swagger-bootstrap-ui:1.9.4'
// lomok快速开发
compileOnly 'org.projectlombok:lombok:1.18.4'
// undertow运行容器
compile 'org.springframework.boot:spring-boot-starter-undertow:2.1.7.RELEASE'
// log4j2日志
compile 'org.springframework.boot:spring-boot-starter-log4j2:2.1.7.RELEASE'
compile 'com.lmax:disruptor:3.4.2'
// hutool工具包
compile 'cn.hutool:hutool-all:4.5.17'
// fastjson序列化工具
compile 'com.alibaba:fastjson:1.2.56'
}
configurations {
// 排除默认容器
all*.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
// 排除默认日志工具
all*.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/eairlv-eairlv-cli.git
git@api.gitlife.ru:oschina-mirror/eairlv-eairlv-cli.git
oschina-mirror
eairlv-eairlv-cli
eairlv-eairlv-cli
master