2021-08-20 08:32:44 +00:00
|
|
|
plugins {
|
2021-08-20 09:04:06 +00:00
|
|
|
id 'org.springframework.boot' version '2.5.4'
|
|
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
|
|
id 'java'
|
|
|
|
id 'idea'
|
2021-08-20 08:32:44 +00:00
|
|
|
}
|
|
|
|
|
2021-09-05 08:13:27 +00:00
|
|
|
group = 'com.myoa.engineering.crawl.ppomppu'
|
2022-01-02 03:48:10 +00:00
|
|
|
version = '1.1.1'
|
2021-08-20 08:32:44 +00:00
|
|
|
sourceCompatibility = '11'
|
|
|
|
|
|
|
|
configurations {
|
2021-08-20 09:04:06 +00:00
|
|
|
compileOnly {
|
|
|
|
extendsFrom annotationProcessor
|
|
|
|
}
|
2021-08-20 08:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-08-20 09:04:06 +00:00
|
|
|
mavenCentral()
|
2021-08-20 08:32:44 +00:00
|
|
|
}
|
|
|
|
|
2021-08-20 09:04:06 +00:00
|
|
|
allprojects {
|
2021-11-21 17:02:46 +00:00
|
|
|
group = 'com.myoa.engineering.crawl.ppomppu'
|
2022-01-02 03:48:10 +00:00
|
|
|
version = '1.1.1'
|
2021-11-21 17:02:46 +00:00
|
|
|
|
2021-08-20 09:04:06 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
apply plugin: 'org.springframework.boot'
|
|
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-17 00:39:49 +00:00
|
|
|
ext {
|
|
|
|
set('springCloudVersion', "2020.0.4")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyManagement {
|
|
|
|
imports {
|
|
|
|
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-20 09:04:06 +00:00
|
|
|
/* task initSourceFolders {
|
|
|
|
sourceSets*.java.srcDirs*.each {
|
|
|
|
if( !it.exists() ) {
|
|
|
|
it.mkdirs()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets*.resources.srcDirs*.each {
|
|
|
|
if( !it.exists() ) {
|
|
|
|
it.mkdirs()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}*/
|
2021-08-20 08:32:44 +00:00
|
|
|
}
|
|
|
|
|
2021-08-20 09:04:06 +00:00
|
|
|
jar {
|
|
|
|
enabled = false
|
2021-08-20 08:32:44 +00:00
|
|
|
}
|
2021-08-20 09:04:06 +00:00
|
|
|
|
|
|
|
bootJar {
|
|
|
|
enabled = false
|
|
|
|
}
|