Merge pull request #1 from mdeinum/master
Added missing build files and dependencies
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -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/
|
||||
|
||||
@@ -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')
|
||||
}
|
||||
|
||||
|
||||
@@ -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') {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
dependencies {
|
||||
implementation project(':buckpal-application')
|
||||
}
|
||||
|
||||
|
||||
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
dependencies {
|
||||
implementation 'org.springframework:spring-context'
|
||||
implementation 'org.springframework:spring-core'
|
||||
implementation 'javax.validation:validation-api'
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user