mirror of
https://github.com/hs-web/hsweb-framework.git
synced 2026-07-01 05:24:36 +08:00
63 lines
2.0 KiB
XML
63 lines
2.0 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.3-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>hsweb-web-starter</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.oracle</groupId>
|
|
<artifactId>ojdbc14</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-web-service-simple</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-web-controller</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-web-dao-mybatis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-web-oauth2-simple</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsweb</groupId>
|
|
<artifactId>hsweb-web-websocket</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project> |