You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Spring Core and Context (Needed for XML-based configuration) -->
83
+
<dependency>
84
+
<groupId>org.springframework</groupId>
85
+
<artifactId>spring-context</artifactId>
86
+
<version>6.1.14</version> <!-- Use the latest compatible version -->
87
+
</dependency>
88
+
89
+
<!-- Spring Beans (Required for bean configuration) -->
90
+
<dependency>
91
+
<groupId>org.springframework</groupId>
92
+
<artifactId>spring-beans</artifactId>
93
+
<version>6.1.14</version>
94
+
</dependency>
95
+
96
+
<!-- Spring Core (Provides core utilities) -->
97
+
<dependency>
98
+
<groupId>org.springframework</groupId>
99
+
<artifactId>spring-core</artifactId>
100
+
<version>6.1.14</version>
101
+
</dependency>
102
+
<dependency>
103
+
<groupId>org.junit.jupiter</groupId>
104
+
<artifactId>junit-jupiter-engine</artifactId>
105
+
<version>5.12.0</version>
106
+
<scope>test</scope>
107
+
</dependency>
108
+
109
+
<!-- Adding the apache-client compile-time dependency in order to exclude commons-logging.
110
+
This exclusion stops this statement emitted by Spring:
111
+
"Standard Commons Logging discovery in action with spring-jcl: please remove commons-logging.jar from classpath in order to avoid potential conflicts" -->
0 commit comments