diff --git a/.gitignore b/.gitignore index 63177e3..aec32bf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ HELP.md .gradle -/build/ +build/ !gradle/wrapper/gradle-wrapper.jar ### STS ### @@ -17,7 +17,7 @@ HELP.md *.iws *.iml *.ipr -/out/ +out/ ### NetBeans ### /nbproject/private/ diff --git a/adapters/buckpal-persistence/build.gradle b/adapters/buckpal-persistence/build.gradle index 9ddd346..4981182 100644 --- a/adapters/buckpal-persistence/build.gradle +++ b/adapters/buckpal-persistence/build.gradle @@ -1,12 +1,13 @@ dependencies { implementation project(':common') implementation project(':buckpal-application') - api 'org.springframework.boot:spring-boot-starter-data-jpa' - + compileOnly 'org.projectlombok:lombok' - runtimeOnly 'com.h2database:h2' annotationProcessor 'org.projectlombok:lombok' + implementation 'org.springframework.boot:spring-boot-starter-validation' + implementation 'org.springframework.boot:spring-boot-starter-data-jpa' + testImplementation('org.springframework.boot:spring-boot-starter-test') { exclude group: 'junit' // excluding junit 4 } @@ -15,6 +16,7 @@ dependencies { testImplementation 'com.tngtech.archunit:archunit:0.9.3' testImplementation 'de.adesso:junit-insights:1.1.0' testImplementation 'org.junit.platform:junit-platform-launcher:1.4.2' + testImplementation 'com.h2database:h2' testImplementation project(':buckpal-testdata') } diff --git a/buckpal-application/build.gradle b/buckpal-application/build.gradle index bcf6ad7..5050ce4 100644 --- a/buckpal-application/build.gradle +++ b/buckpal-application/build.gradle @@ -6,7 +6,6 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-validation' - implementation 'javax.validation:validation-api' implementation 'javax.transaction:javax.transaction-api' testImplementation('org.springframework.boot:spring-boot-starter-test') { diff --git a/buckpal-configuration/build.gradle b/buckpal-configuration/build.gradle index d8be432..c66d5c1 100644 --- a/buckpal-configuration/build.gradle +++ b/buckpal-configuration/build.gradle @@ -1,5 +1,5 @@ plugins { - id "org.springframework.boot" version "2.1.5.RELEASE" + id "org.springframework.boot" version "2.1.7.RELEASE" } dependencies { @@ -18,6 +18,8 @@ dependencies { testImplementation 'com.tngtech.archunit:archunit:0.9.3' testImplementation 'de.adesso:junit-insights:1.1.0' testImplementation 'org.junit.platform:junit-platform-launcher:1.4.2' + testImplementation 'com.h2database:h2' + } test { diff --git a/buckpal-testdata/build.gradle b/buckpal-testdata/build.gradle index 583a0d6..45e3554 100644 --- a/buckpal-testdata/build.gradle +++ b/buckpal-testdata/build.gradle @@ -1,4 +1,3 @@ dependencies { implementation project(':buckpal-application') } - diff --git a/build.gradle b/build.gradle index 77dc63b..ae08e1d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,8 @@ plugins { - id "io.spring.dependency-management" version "1.0.6.RELEASE" + id "io.spring.dependency-management" version "1.0.8.RELEASE" } -allprojects { +subprojects { group = 'io.reflectoring.reviewapp' version = '0.0.1-SNAPSHOT' @@ -17,7 +17,7 @@ allprojects { dependencyManagement { imports { - mavenBom("org.springframework.boot:spring-boot-dependencies:2.1.5.RELEASE") + mavenBom("org.springframework.boot:spring-boot-dependencies:2.1.7.RELEASE") } } diff --git a/common/build.gradle b/common/build.gradle index 8b639fc..9955f46 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -1,6 +1,5 @@ dependencies { implementation 'org.springframework:spring-context' - implementation 'org.springframework:spring-core' implementation 'javax.validation:validation-api' } diff --git a/gradlew b/gradlew old mode 100644 new mode 100755