isolated all modules
This commit is contained in:
@@ -24,8 +24,8 @@ repositories {
|
||||
|
||||
dependencies {
|
||||
compile('org.springframework.boot:spring-boot-starter-web')
|
||||
compile project(':spring-boot:modular:security-module')
|
||||
compile project(':spring-boot:modular:booking-module')
|
||||
compile project(':security-module')
|
||||
compile project(':booking-module')
|
||||
testCompile('org.springframework.boot:spring-boot-starter-test')
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
tasks.withType(JavaCompile) {
|
||||
options.fork = true;
|
||||
}
|
||||
3
spring-boot/modular/settings.gradle
Normal file
3
spring-boot/modular/settings.gradle
Normal file
@@ -0,0 +1,3 @@
|
||||
include "application"
|
||||
include "booking-module"
|
||||
include "security-module"
|
||||
@@ -1,6 +1,6 @@
|
||||
buildscript {
|
||||
ext {
|
||||
springBootVersion = '2.0.4.RELEASE'
|
||||
springBootVersion = '2.2.1.RELEASE'
|
||||
}
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
|
||||
|
||||
Reference in New Issue
Block a user