This is an automated email from the ASF dual-hosted git repository.
yasithdev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata.git
The following commit(s) were added to refs/heads/master by this push:
new 280b18c3ad Remove dead dependencyManagement version pins (#677)
280b18c3ad is described below
commit 280b18c3ad13f8a9842a922cbd8b9dc1f3251b10
Author: Yasith Jayawardana <[email protected]>
AuthorDate: Sat Jun 13 01:49:07 2026 -0400
Remove dead dependencyManagement version pins (#677)
Ten dependencyManagement entries and the selenium-maven-plugin
pluginManagement
entry pinned artifacts that appear nowhere in the resolved dependency tree,
so
the pins were inert: dozer-core, the four selenium-* drivers, json-simple,
commons-exec, mysql-connector-j (the DB driver is mariadb-java-client),
keycloak-authz-client (IAM uses keycloak-admin-client), and slf4j-simple.
commons-logging and jcl-over-slf4j are kept — both are live in the tree.
Verified via dependency:list; reactor resolves and compiles unchanged.
---
pom.xml | 55 -------------------------------------------------------
1 file changed, 55 deletions(-)
diff --git a/pom.xml b/pom.xml
index b0aa21f55f..436b5f7085 100644
--- a/pom.xml
+++ b/pom.xml
@@ -107,11 +107,6 @@ under the License.
<artifactId>slf4j-api</artifactId>
<version>2.0.16</version>
</dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>2.0.16</version>
- </dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
@@ -165,11 +160,6 @@ under the License.
<artifactId>commons-lang3</artifactId>
<version>3.18.0</version>
</dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-exec</artifactId>
- <version>1.1</version>
- </dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
@@ -221,11 +211,6 @@ under the License.
</dependency>
<!-- Database -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- <version>9.3.0</version>
- </dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
@@ -244,11 +229,6 @@ under the License.
<version>2.1.3</version>
</dependency>
<!-- Other Libraries -->
- <dependency>
- <groupId>com.github.dozermapper</groupId>
- <artifactId>dozer-core</artifactId>
- <version>7.0.0</version>
- </dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
@@ -285,11 +265,6 @@ under the License.
</exclusion>
</exclusions>
</dependency>
- <dependency>
- <groupId>org.keycloak</groupId>
- <artifactId>keycloak-authz-client</artifactId>
- <version>26.0.5</version>
- </dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
@@ -341,33 +316,8 @@ under the License.
</dependency>
<!-- Selenium -->
- <dependency>
- <groupId>org.seleniumhq.selenium.client-drivers</groupId>
- <artifactId>selenium-java-client-driver</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.seleniumhq.selenium</groupId>
- <artifactId>selenium-firefox-driver</artifactId>
- <version>4.34.0</version>
- </dependency>
- <dependency>
- <groupId>org.seleniumhq.selenium</groupId>
- <artifactId>selenium-remote-driver</artifactId>
- <version>4.34.0</version>
- </dependency>
- <dependency>
- <groupId>org.seleniumhq.selenium</groupId>
- <artifactId>selenium-java</artifactId>
- <version>4.34.0</version>
- </dependency>
<!-- JSON Simple -->
- <dependency>
- <groupId>com.googlecode.json-simple</groupId>
- <artifactId>json-simple</artifactId>
- <version>1.1</version>
- </dependency>
<!-- Jackson BOM — must come before Spring Boot to override its
Jackson 2.19.x -->
<dependency>
@@ -616,11 +566,6 @@ under the License.
<artifactId>spring-boot-maven-plugin</artifactId>
<version>3.5.12</version>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>selenium-maven-plugin</artifactId>
- <version>2.3</version>
- </plugin>
</plugins>
</pluginManagement>
</build>