You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
5 years ago
|
plugins {
|
||
|
id 'org.springframework.boot' version '2.3.0.RELEASE'
|
||
|
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
|
||
|
group = 'com.share'
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
maven {url 'https://maven.aliyun.com/repository/public'}
|
||
|
maven {url 'https://maven.aliyun.com/repository/jcenter'}
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||
|
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.2'
|
||
|
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
|
||
|
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.20'
|
||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-logging', version: '2.3.0.RELEASE'
|
||
|
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
|
||
|
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
|
||
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
||
|
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|