added build.gradle files
This commit is contained in:
24
adapters/buckpal-persistence/build.gradle
Normal file
24
adapters/buckpal-persistence/build.gradle
Normal file
@@ -0,0 +1,24 @@
|
||||
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'
|
||||
|
||||
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
||||
exclude group: 'junit' // excluding junit 4
|
||||
}
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.0.1'
|
||||
testImplementation 'org.mockito:mockito-junit-jupiter:2.23.0'
|
||||
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 project(':buckpal-testdata')
|
||||
}
|
||||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
systemProperty 'de.adesso.junitinsights.enabled', 'true'
|
||||
}
|
||||
4
buckpal-testdata/build.gradle
Normal file
4
buckpal-testdata/build.gradle
Normal file
@@ -0,0 +1,4 @@
|
||||
dependencies {
|
||||
implementation project(':buckpal-application')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user