cashwu / SpringBootHelloWorld-Gradle

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

01.png

plugins {
    id 'java'
    id 'org.springframework.boot' version '3.1.2'
}

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

group = 'com.cashwu'
version = '1.0-SNAPSHOT'

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-web'
}

02.png

About