25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
550 B
21 lines
550 B
5 년 전
|
plugins {
|
||
|
id 'org.springframework.boot' version '2.1.7.RELEASE'
|
||
|
id 'io.spring.dependency-management' version '1.0.7.RELEASE'
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'com.example'
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
sourceCompatibility = '1.8'
|
||
|
|
||
|
repositories {
|
||
|
maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
|
||
|
maven { url "http://maven.aiprose.com/repository/maven-public/" }
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||
|
}
|