1 Star 0 Fork 0

凉风/foratm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
凉风 提交于 2022-08-21 15:57 . build(初始化):
// buildscript必须在顶部,注意位置
buildscript {
repositories {
// 优先使用国内源
maven { url 'https://maven.aliyun.com/repository/public' }
mavenCentral()
}
dependencies {
// 让spring-boot支持gradle
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.6.RELEASE")
}
}
plugins {
id 'java'
id 'org.springframework.boot' version '2.1.6.RELEASE'
}
apply plugin: 'java'
apply plugin: 'idea'
// 使用spring boot
apply plugin: "org.springframework.boot"
// 使用spring boot的自动依赖管理
apply plugin: 'io.spring.dependency-management'
apply plugin: 'war'
group 'com.awaimai'
version '1.0-SNAPSHOT'
// 指定java版本
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
// 使用国内的源
maven { url 'https://maven.aliyun.com/repository/public' }
mavenCentral()
}
// 依赖列表
dependencies {
compile ('org.springframework.boot:spring-boot-starter-web'){
exclude module:"jackson-databind"
}
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version: '2.1.6.RELEASE'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.freemarker', name: 'freemarker', version: '2.3.28'
providedCompile group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: '2.1.7.RELEASE'
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.59'
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/yuki0011/foratm.git
git@gitee.com:yuki0011/foratm.git
yuki0011
foratm
foratm
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385