build: 升级shiro版本

This commit is contained in:
CaptainB 2022-10-19 10:26:04 +08:00 committed by 刘瑞斌
parent d2d5611da9
commit 26df392913
5 changed files with 11 additions and 3 deletions

View File

@ -20,7 +20,7 @@
<!-- 第三方不包统一版本如果不指定Spring 会为我们选择匹配的版本 --> <!-- 第三方不包统一版本如果不指定Spring 会为我们选择匹配的版本 -->
<dubbo.version>2.7.15</dubbo.version> <dubbo.version>2.7.15</dubbo.version>
<flyway.version>7.15.0</flyway.version> <flyway.version>7.15.0</flyway.version>
<shiro.version>1.9.1</shiro.version> <shiro.version>1.10.0</shiro.version>
<mssql-jdbc.version>7.4.1.jre8</mssql-jdbc.version> <mssql-jdbc.version>7.4.1.jre8</mssql-jdbc.version>
<postgresql.version>42.3.2</postgresql.version> <postgresql.version>42.3.2</postgresql.version>
<java-websocket.version>1.5.3</java-websocket.version> <java-websocket.version>1.5.3</java-websocket.version>
@ -114,7 +114,7 @@
<dependency> <dependency>
<groupId>org.apache.shiro</groupId> <groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring-boot-starter</artifactId> <artifactId>shiro-spring-boot-web-starter</artifactId>
<version>${shiro.version}</version> <version>${shiro.version}</version>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -18,6 +18,7 @@ public class ShiroUtils {
filterChainDefinitionMap.put("/resource/md/get/**", "anon"); filterChainDefinitionMap.put("/resource/md/get/**", "anon");
filterChainDefinitionMap.put("/resource/ui/get/**", "anon"); filterChainDefinitionMap.put("/resource/ui/get/**", "anon");
filterChainDefinitionMap.put("/*.worker.js", "anon"); filterChainDefinitionMap.put("/*.worker.js", "anon");
filterChainDefinitionMap.put("/*.html", "anon");
filterChainDefinitionMap.put("/login", "anon"); filterChainDefinitionMap.put("/login", "anon");
filterChainDefinitionMap.put("/signin", "anon"); filterChainDefinitionMap.put("/signin", "anon");
filterChainDefinitionMap.put("/ldap/signin", "anon"); filterChainDefinitionMap.put("/ldap/signin", "anon");

View File

@ -10,6 +10,8 @@
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>frontend</artifactId> <artifactId>frontend</artifactId>

View File

@ -73,6 +73,11 @@ module.exports = {
} }
}, },
}, },
css: {
extract: {
ignoreOrder: true,
}
},
chainWebpack: config => { chainWebpack: config => {
// 报告模板打包成一个html // 报告模板打包成一个html
config.plugin('html-planReport') config.plugin('html-planReport')

View File

@ -10,7 +10,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.0</version> <version>2.7.4</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>