代码拉取完成,页面将自动刷新
// 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'
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。