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.
61 lines
2.2 KiB
61 lines
2.2 KiB
<?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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>com.hisense.urbantraffic</groupId> |
|
<artifactId>hiatmp-parent</artifactId> |
|
<version>0.1.0-SNAPSHOT</version> |
|
<relativePath>../hiatmp-parent/pom.xml</relativePath> |
|
</parent> |
|
<artifactId>hiatmp-model</artifactId> |
|
<version>0.1.0-SNAPSHOT</version> |
|
<packaging>jar</packaging> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger2</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-annotations</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.persistence</groupId> |
|
<artifactId>javax.persistence-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>cn.afterturn</groupId> |
|
<artifactId>easypoi-annotation</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>commons-fileupload</groupId> |
|
<artifactId>commons-fileupload</artifactId> |
|
<version>1.3</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
|
<dependency> |
|
<groupId>commons-io</groupId> |
|
<artifactId>commons-io</artifactId> |
|
<version>1.2</version> |
|
</dependency> |
|
</dependencies> |
|
</project> |