Merge pull request #1 from mdeinum/master

Added missing build files and dependencies
This commit is contained in:
Tom Hombergs
2019-08-28 17:48:32 +02:00
committed by GitHub
8 changed files with 13 additions and 12 deletions

4
.gitignore vendored
View File

@@ -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/

View File

@@ -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')
}

View File

@@ -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') {

View File

@@ -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 {

View File

@@ -1,4 +1,3 @@
dependencies {
implementation project(':buckpal-application')
}

View File

@@ -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")
}
}

View File

@@ -1,6 +1,5 @@
dependencies {
implementation 'org.springframework:spring-context'
implementation 'org.springframework:spring-core'
implementation 'javax.validation:validation-api'
}

0
gradlew vendored Normal file → Executable file
View File