This is an automated email from the ASF dual-hosted git repository. lahirujayathilake pushed a commit to branch cybershuttle-dev in repository https://gitbox.apache.org/repos/asf/airavata.git
commit b4046f6f9aea68b893227bff03f7ceb6f4e75b0c Author: lahiruj <[email protected]> AuthorDate: Tue Mar 18 20:41:57 2025 -0400 excluded logback from file service --- modules/file-server/pom.xml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/modules/file-server/pom.xml b/modules/file-server/pom.xml index a7065bdff3..aa58c9281d 100644 --- a/modules/file-server/pom.xml +++ b/modules/file-server/pom.xml @@ -17,8 +17,8 @@ <version>${spring.boot.version}</version> <exclusions> <exclusion> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-to-slf4j</artifactId> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency> @@ -26,6 +26,16 @@ <groupId>org.apache.airavata</groupId> <artifactId>task-core</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </exclusion> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-core</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.airavata</groupId>
