You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <version>1.2.0</version> <groupId>com.iteaj</groupId> <artifactId>iboot</artifactId> </parent>
<name>iboot:framework</name> <modelVersion>4.0.0</modelVersion> <artifactId>framework</artifactId> <description>此系统架构核心库</description>
<dependencies> <!--shiro 权限认证--> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <exclusions> <exclusion> <groupId>org.apache.shiro</groupId> <artifactId>shiro-config-ogdl</artifactId> </exclusion> </exclusions> </dependency>
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> </dependency>
<dependency> <artifactId>spring-jdbc</artifactId> <groupId>org.springframework</groupId> </dependency>
<dependency> <artifactId>kaptcha</artifactId> <version>${kaptcha.version}</version> <groupId>com.github.penggle</groupId> </dependency> <dependency> <version>1.21</version> <groupId>eu.bitwalker</groupId> <artifactId>UserAgentUtils</artifactId> </dependency>
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency>
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> </dependency>
<dependency> <artifactId>okhttp</artifactId> <groupId>com.squareup.okhttp3</groupId> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>${fastjson.version}</version> </dependency>
<!-- 缓存相关 --> <dependency> <optional>true</optional> <artifactId>spring-data-redis</artifactId> <groupId>org.springframework.data</groupId> </dependency>
<!--ehcache3.x版本--> <dependency> <optional>true</optional> <groupId>org.ehcache</groupId> <artifactId>ehcache</artifactId> </dependency>
<!--使用ehcache3.x版本必须的依赖--> <dependency> <groupId>javax.cache</groupId> <artifactId>cache-api</artifactId> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> </dependency> <dependency> <optional>true</optional> <groupId>cn.afterturn</groupId> <artifactId>easypoi-base</artifactId> <version>${excelpoi.version}</version> </dependency> </dependencies></project>
|