This is an automated email from the ASF dual-hosted git repository. madhan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ranger.git
commit 1fa02389ec99085c3ab644bc85c39dd04f54e461 Author: szymonorz <[email protected]> AuthorDate: Wed Jul 26 00:10:36 2023 +0200 RANGER-4329: fix for tagsync failure during startup - included guava and commons-logging libraries Signed-off-by: Madhan Neethiraj <[email protected]> --- tagsync/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tagsync/pom.xml b/tagsync/pom.xml index ede5e838a..1df1ccb64 100644 --- a/tagsync/pom.xml +++ b/tagsync/pom.xml @@ -90,6 +90,11 @@ <artifactId>commons-lang</artifactId> <version>${commons.lang.version}</version> </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>${commons.logging.version}</version> + </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> @@ -303,5 +308,10 @@ <artifactId>ranger-common-ha</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>${google.guava.version}</version> + </dependency> </dependencies> </project>
