This is an automated email from the ASF dual-hosted git repository.

lprimak pushed a commit to branch 3.x
in repository https://gitbox.apache.org/repos/asf/shiro.git

commit ad926dc8f19e242f980bead7e8922e70f18bf274
Author: lprimak <[email protected]>
AuthorDate: Wed Feb 4 17:56:43 2026 -0600

    added spring-boot sample
---
 samples/pom.xml             |  2 +-
 samples/spring-boot/pom.xml | 28 ++--------------------------
 2 files changed, 3 insertions(+), 27 deletions(-)

diff --git a/samples/pom.xml b/samples/pom.xml
index 1ae75feda..c6310c649 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -48,13 +48,13 @@
         <module>spring</module>
         <module>spring-mvc</module>
         <module>spring-hibernate</module>
+        <module>spring-boot</module>
     </modules>
 
     <profiles>
         <profile>
             <id>deferred-for-3x</id>
             <modules>
-                <module>spring-boot</module>
                 <module>spring-boot-web</module>
                 <module>spring-boot-3-web</module>
             </modules>
diff --git a/samples/spring-boot/pom.xml b/samples/spring-boot/pom.xml
index 9849879b4..09b95182d 100644
--- a/samples/spring-boot/pom.xml
+++ b/samples/spring-boot/pom.xml
@@ -46,10 +46,12 @@
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-autoconfigure</artifactId>
+            <version>${spring-boot.version}</version>
         </dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-configuration-processor</artifactId>
+            <version>${spring-boot.version}</version>
             <optional>true</optional>
         </dependency>
         <dependency>
@@ -69,32 +71,6 @@
         </dependency>
     </dependencies>
 
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-dependencies</artifactId>
-                <version>${spring-boot.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-                <exclusions>
-                    <exclusion>
-                        <groupId>org.junit.jupiter</groupId>
-                        <artifactId>*</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>org.junit.platform</groupId>
-                        <artifactId>*</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>org.junit.vintage</groupId>
-                        <artifactId>*</artifactId>
-                    </exclusion>
-                </exclusions>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
     <build>
         <plugins>
             <plugin>

Reply via email to