mirror of https://gitee.com/zhang_1334717033/kiftd
88 lines
2.3 KiB
XML
88 lines
2.3 KiB
XML
|
|
<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/maven-v4_0_0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<groupId>kohgylw</groupId>
|
||
|
|
<artifactId>KohgylwIFT</artifactId>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<name>KohgylwIFT Maven Webapp</name>
|
||
|
|
<url>http://maven.apache.org</url>
|
||
|
|
<dependencies>
|
||
|
|
|
||
|
|
<!-- servlet API -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.servlet</groupId>
|
||
|
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
|
<version>3.1.0</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- end servlet API -->
|
||
|
|
|
||
|
|
<!-- spring + spring MVC -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-context</artifactId>
|
||
|
|
<version>4.3.11.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-web</artifactId>
|
||
|
|
<version>4.3.11.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-webmvc</artifactId>
|
||
|
|
<version>4.3.11.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- end spring -->
|
||
|
|
|
||
|
|
<!-- h2内嵌数据库 + spring +mybatis -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis</groupId>
|
||
|
|
<artifactId>mybatis</artifactId>
|
||
|
|
<version>3.4.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis</groupId>
|
||
|
|
<artifactId>mybatis-spring</artifactId>
|
||
|
|
<version>1.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.h2database</groupId>
|
||
|
|
<artifactId>h2</artifactId>
|
||
|
|
<version>1.4.196</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-jdbc</artifactId>
|
||
|
|
<version>4.3.11.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- end hsm整合 -->
|
||
|
|
|
||
|
|
<!-- Gson json转化工具 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.code.gson</groupId>
|
||
|
|
<artifactId>gson</artifactId>
|
||
|
|
<version>2.8.0</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- end Gson -->
|
||
|
|
|
||
|
|
<!-- file 操作资源 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-fileupload</groupId>
|
||
|
|
<artifactId>commons-fileupload</artifactId>
|
||
|
|
<version>1.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
<version>2.4</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- end file -->
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
<build>
|
||
|
|
<finalName>KohgylwIFT</finalName>
|
||
|
|
</build>
|
||
|
|
</project>
|