Skip to content

Commit 94dfd7d

Browse files
authored
Merge pull request #128 from fpapon/SHIRO-683
[SHIRO-683] Upgrade to spring-boot 1.5.19.RELEASE
2 parents d173006 + ac03c74 commit 94dfd7d

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<quartz.version>1.6.1</quartz.version>
9696
<slf4j.version>1.7.21</slf4j.version>
9797
<spring.version>4.3.22.RELEASE</spring.version>
98-
<spring-boot.version>1.4.1.RELEASE</spring-boot.version>
98+
<spring-boot.version>1.5.19.RELEASE</spring-boot.version>
9999
<guice.version>3.0</guice.version>
100100

101101
<!-- Test 3rd-party dependencies: -->

samples/spring-boot-web/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@
6262
<artifactId>spring-boot-configuration-processor</artifactId>
6363
<optional>true</optional>
6464
</dependency>
65+
66+
<dependency>
67+
<groupId>commons-logging</groupId>
68+
<artifactId>commons-logging</artifactId>
69+
<version>1.2</version>
70+
</dependency>
6571
</dependencies>
6672

6773
<build>

support/spring-boot/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@
3131
<name>Apache Shiro :: Support :: Spring Boot Parent</name>
3232
<packaging>pom</packaging>
3333

34-
<properties>
35-
<!-- These spring-boot modules require spring 4 -->
36-
<spring.version>4.3.2.RELEASE</spring.version>
37-
</properties>
38-
3934
<modules>
4035
<module>spring-boot-starter</module>
4136
<module>spring-boot-web-starter</module>

support/spring-boot/spring-boot-starter/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@
6767
<scope>test</scope>
6868
</dependency>
6969

70+
<dependency>
71+
<groupId>commons-logging</groupId>
72+
<artifactId>commons-logging</artifactId>
73+
<version>1.2</version>
74+
<scope>test</scope>
75+
</dependency>
76+
7077
</dependencies>
7178

7279
</project>

support/spring-boot/spring-boot-starter/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"groups": [
33
{
44
"name": "shiro"
5-
},
5+
}
66
],
77
"properties": [
88

@@ -11,6 +11,6 @@
1111
"type": "java.lang.Boolean",
1212
"description": "A boolean flag that can disable all Shiro Spring Boot starters. This is mostly useful during testing or debugging, or if you want to compare behavior when Shiro is enabled or disabled.",
1313
"defaultValue": true
14-
},
14+
}
1515
]
1616
}

support/spring-boot/spring-boot-web-starter/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"groups": [
33
{
44
"name": "shiro"
5-
},
5+
}
66
],
77
"properties": [
88

0 commit comments

Comments
 (0)