Skip to content

Commit 06b341a

Browse files
committed
deploy 1.4.10
1 parent 3bcca74 commit 06b341a

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>com.codingapi.springboot</groupId>
1414
<artifactId>springboot-parent</artifactId>
15-
<version>1.4.9</version>
15+
<version>1.4.10</version>
1616

1717
<url>https://github.com/codingapi/springboot-framewrok</url>
1818
<name>springboot-parent</name>

springboot-starter-data-fast/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-parent</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>1.4.9</version>
8+
<version>1.4.10</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

springboot-starter-id-generator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-parent</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>1.4.9</version>
8+
<version>1.4.10</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

springboot-starter-security-jwt/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-parent</artifactId>
88
<groupId>com.codingapi.springboot</groupId>
9-
<version>1.4.9</version>
9+
<version>1.4.10</version>
1010
</parent>
1111

1212
<artifactId>springboot-starter-security-jwt</artifactId>

springboot-starter-security-jwt/src/main/java/com/codingapi/springboot/security/AutoConfiguration.java

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.codingapi.springboot.security;
22

33
import com.codingapi.springboot.security.configurer.HttpSecurityConfigurer;
4+
import com.codingapi.springboot.security.controller.VersionController;
45
import com.codingapi.springboot.security.filter.*;
56
import com.codingapi.springboot.security.handler.ServletExceptionHandler;
67
import com.codingapi.springboot.security.jwt.Jwt;
@@ -9,6 +10,7 @@
910
import org.springframework.boot.context.properties.ConfigurationProperties;
1011
import org.springframework.context.annotation.Bean;
1112
import org.springframework.context.annotation.Configuration;
13+
import org.springframework.core.env.Environment;
1214
import org.springframework.security.authentication.AuthenticationProvider;
1315
import org.springframework.security.authentication.dao.DaoAuthenticationProvider;
1416
import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity;
@@ -146,4 +148,10 @@ public SecurityJwtProperties securityJwtProperties() {
146148
}
147149

148150

151+
@Bean
152+
@ConditionalOnMissingBean
153+
public VersionController versionController(Environment environment){
154+
return new VersionController(environment);
155+
}
156+
149157
}

springboot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.codingapi.springboot</groupId>
77
<artifactId>springboot-parent</artifactId>
8-
<version>1.4.9</version>
8+
<version>1.4.10</version>
99
</parent>
1010
<artifactId>springboot-starter</artifactId>
1111

0 commit comments

Comments
 (0)