This is an automated email from the ASF dual-hosted git repository. madhan pushed a commit to branch atlas-2.5 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit b77decb1ba7c05ddc8026d3312714e98d97124d7 Author: Madhan Neethiraj <[email protected]> AuthorDate: Thu Feb 12 20:17:36 2026 -0800 ATLAS-5217: updated atlas-testtools dependency scope to test (#522) (cherry picked from commit ca244f6e614098e78b3b19991826a8ab4f89ee7e) --- pom.xml | 6 ------ repository/pom.xml | 1 + test-tools/pom.xml | 6 ------ webapp/pom.xml | 18 ++++++++---------- 4 files changed, 9 insertions(+), 22 deletions(-) diff --git a/pom.xml b/pom.xml index 68dea329c..72c6336a4 100644 --- a/pom.xml +++ b/pom.xml @@ -900,12 +900,6 @@ <version>${slf4j.version}</version> </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>log4j-over-slf4j</artifactId> - <version>${slf4j.version}</version> - </dependency> - <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> diff --git a/repository/pom.xml b/repository/pom.xml index 25b3b46fd..135ac4af1 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -403,6 +403,7 @@ <groupId>org.apache.atlas</groupId> <artifactId>atlas-testtools</artifactId> <version>${project.version}</version> + <scope>test</scope> <exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> diff --git a/test-tools/pom.xml b/test-tools/pom.xml index 5c278eee4..b3380db97 100644 --- a/test-tools/pom.xml +++ b/test-tools/pom.xml @@ -121,12 +121,6 @@ <version>1.13</version> <scope>test</scope> </dependency> - - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>log4j-over-slf4j</artifactId> - <scope>test</scope> - </dependency> </dependencies> <build> diff --git a/webapp/pom.xml b/webapp/pom.xml index a249ffc04..97c8a6f83 100755 --- a/webapp/pom.xml +++ b/webapp/pom.xml @@ -212,12 +212,6 @@ <artifactId>atlas-server-api</artifactId> </dependency> - <dependency> - <groupId>org.apache.atlas</groupId> - <artifactId>atlas-testtools</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> @@ -388,10 +382,6 @@ <artifactId>mockito-all</artifactId> </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>log4j-over-slf4j</artifactId> - </dependency> <!-- Required for Spring configuration processing --> <dependency> <groupId>org.springframework</groupId> @@ -480,6 +470,14 @@ <classifier>tests</classifier> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.apache.atlas</groupId> + <artifactId>atlas-testtools</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId>
