安装配置:Gradle的安装与配置 - 苍凉温暖 - 博客园 (cnblogs.com)


buildscript {
repositories {
maven {
url "http://maven.aliyun.com/nexus/content/groups/public/"
}
}
}
plugins {
id 'org.springframework.boot' version '2.1.5.RELEASE'
id 'java'
id 'idea'
}

apply plugin: 'io.spring.dependency-management'

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
maven {
url "http://maven.aliyun.com/nexus/content/groups/public/"
}
mavenCentral()
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

相关文章:

  • 2021-10-27
  • 2021-05-25
  • 2021-11-10
  • 2021-07-31
  • 2021-10-26
  • 2021-08-15
  • 2022-01-12
  • 2022-02-28
猜你喜欢
  • 2021-08-07
  • 2021-04-26
  • 2021-11-27
  • 2021-04-21
  • 2021-09-06
相关资源
相似解决方案