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.
40 lines
1.2 KiB
40 lines
1.2 KiB
plugins {
|
|
id 'org.springframework.boot' version '2.3.4.RELEASE'
|
|
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.example'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '8'
|
|
|
|
repositories {
|
|
maven { url "https://maven.aliyun.com/repository/public" }
|
|
maven { url "http://maven.aiprose.com/nexus/content/groups/public/" }
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'com.aiprose:jpa-common-utils:2.3.4'
|
|
|
|
implementation 'org.activiti:activiti-spring-boot-starter:7.1.0.M4'
|
|
implementation 'org.activiti:activiti-image-generator:7.1.0.M4'
|
|
|
|
|
|
runtimeOnly 'mysql:mysql-connector-java'
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
compile group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0'
|
|
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
|
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|