mirror of
https://github.com/hs-web/hsweb-framework.git
synced 2026-05-22 08:36:51 +08:00
48 lines
1.7 KiB
XML
48 lines
1.7 KiB
XML
<?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>
|
|
<artifactId>hsweb-framework</artifactId>
|
|
<groupId>org.hsweb</groupId>
|
|
<version>2.2.2-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>hsweb-web-core</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-web-bean</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-redis</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.session</groupId>
|
|
<artifactId>spring-session-data-redis</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-easy-orm-rdb</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-expands-script</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |