mirror of
https://github.com/hs-web/hsweb-framework.git
synced 2026-06-21 05:26:05 +08:00
49 lines
1.7 KiB
XML
49 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>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>hsweb-web-controller</artifactId>
|
|
|
|
<properties>
|
|
<commons.fileupload.version>1.3.1</commons.fileupload.version>
|
|
<commons.codec.version>1.9</commons.codec.version>
|
|
<commons.net.version>3.3</commons.net.version>
|
|
<commons.logging.version>1.1.3</commons.logging.version>
|
|
<commons.collections.version>3.2.1</commons.collections.version>
|
|
</properties>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-web-service-interface</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-web-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>${commons.fileupload.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |