From b5ddb40c9ebcf526184973d208312d8085248f5b Mon Sep 17 00:00:00 2001 From: Andrei Piankouski Date: Wed, 4 Sep 2024 13:47:23 +0300 Subject: [PATCH] Update build.gradle --- build.gradle | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 8c54d7d..6eb8232 100644 --- a/build.gradle +++ b/build.gradle @@ -37,13 +37,16 @@ dependencyManagement { dependencies { if (releaseMode) { - implementation 'com.epam.reportportal:commons-dao' + api 'com.epam.reportportal:commons-dao' api 'com.epam.reportportal:commons' } else { - implementation 'com.github.reportportal:commons-dao:823f284' + api 'com.github.reportportal:commons-dao:823f284' api 'com.github.reportportal:commons:24ea814' } - compile 'org.pf4j:pf4j:3.10.0' + + implementation 'org.hibernate:hibernate-core:5.6.15.Final' + api 'org.pf4j:pf4j:3.10.0' + api 'org.pf4j:pf4j-update:2.3.0' testCompile 'junit:junit' }