Multi Module Settings

This commit is contained in:
roy-zz
2022-04-18 22:44:35 +09:00
parent 24f8c5b36b
commit 980838ce36
41 changed files with 1302 additions and 14 deletions

View File

@@ -1,22 +1,28 @@
plugins {
id 'org.springframework.boot' version '2.6.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.roy'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
apply plugin: 'java-library'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
repositories {
mavenCentral()
}
allprojects {
sourceCompatibility = 11.0
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
apply plugin: 'java-library'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
tasks.named('test') {
useJUnitPlatform()
}
group = 'com.roy'
version = '0.0.1-SNAPSHOT'
repositories {
mavenLocal()
mavenCentral()
}
jar {
enabled(false)
}
}