PpomppuNotifier/build.gradle

70 lines
1.3 KiB
Groovy
Raw Normal View History

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'
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 {
group = 'com.myoa.engineering.crawl.ppomppu'
version = '1.1.1'
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/"
}
}
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
}