PAN-48 Added dependency on utilities to the persistence project

This commit is contained in:
2019-02-24 20:31:24 -07:00
parent 030e66f516
commit 0734f6ff10
6 changed files with 73 additions and 66 deletions
+7
View File
@@ -45,6 +45,7 @@ allprojects {
}
subprojects {
apply plugin: 'java'
repositories {
mavenCentral()
}
@@ -108,6 +109,12 @@ dependencies {
apt 'org.projectlombok:lombok:1.18.4'
}
project(':persistence') {
dependencies {
compile project(':utilities')
}
}
test {
if (System.properties['test.profile'] != 'integrationTest') {
exclude '**/*integrationTest*'