1 Star 0 Fork 0

lidongwei/RuoYi-Vue-Gradle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 2.39 KB
一键复制 编辑 原始数据 按行查看 历史
buildscript{
allprojects{
gradle.projectsEvaluated {
allprojects{
jar{ enabled = true}
}
}
}
}
plugins {
id 'org.springframework.boot' version '2.5.15'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group 'com.ruoyi'
version '3.8.8'
allprojects{
repositories {
mavenLocal()
mavenCentral()
maven { url "https://maven.aliyun.com/nexus/content/groups/public"}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
bootJar {
enabled = true
}
}
subprojects {
apply plugin: 'java-library'
sourceCompatibility = targetJavaVersion
targetCompatibility = targetJavaVersion
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
ext {
druidVersion = '1.2.20'
bitwalkerVersion = '1.21'
swaggerVersion = '3.0.0'
kaptchaVersion = '2.3.3'
pagehelperBootVersion = '1.4.7'
fastjsonVersion = '2.0.43'
oshiVersion = '6.4.8'
commonsIoVersion = '2.13.0'
commonsCollectionsVersion = '3.2.2'
poiVersion = '4.1.2'
velocityVersion = '2.3'
jwtVersion = '0.9.1'
}
dependencies {
implementation "com.alibaba:druid-spring-boot-starter:${druidVersion}"
implementation "eu.bitwalker:UserAgentUtils:${bitwalkerVersion}"
implementation "com.github.pagehelper:pagehelper-spring-boot-starter:${pagehelperBootVersion}"
implementation "com.github.oshi:oshi-core:${oshiVersion}"
implementation ("io.springfox:springfox-boot-starter:${swaggerVersion}"){
exclude group: 'io.swagger', module: 'swagger-models'
}
implementation "commons-io:commons-io:${commonsIoVersion}"
implementation "org.apache.poi:poi-ooxml:${poiVersion}"
implementation "org.apache.velocity:velocity-engine-core:${velocityVersion}"
implementation "commons-collections:commons-collections:${commonsCollectionsVersion}"
implementation "com.alibaba.fastjson2:fastjson2:${fastjsonVersion}"
implementation "io.jsonwebtoken:jjwt:${jwtVersion}"
implementation ("pro.fessional:kaptcha:${kaptchaVersion}") {
exclude group: 'javax.servlet', module: 'servlet-api'
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/donwei/ruoyi-vue-gradle.git
[email protected]:donwei/ruoyi-vue-gradle.git
donwei
ruoyi-vue-gradle
RuoYi-Vue-Gradle
master

搜索帮助