Files
litemall/litemall-admin-api/pom.xml
enilu 82a20dc5ad 设置默认的编译级别(为1.8),配置swagger自动生成在线接口文档 (#196)
* issue 设置默认的编译级别为1.8,否则使用Intellij IDEA打开的时候总是默认为1.7导致编译不通过

* add 添加swagger配置自动生成在线api接口文档
2019-06-08 22:43:51 +08:00

43 lines
1.4 KiB
XML

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<artifactId>litemall-admin-api</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>org.linlinjava</groupId>
<artifactId>litemall</artifactId>
<version>0.1.0</version>
</parent>
<dependencies>
<dependency>
<groupId>org.linlinjava</groupId>
<artifactId>litemall-core</artifactId>
</dependency>
<dependency>
<groupId>org.linlinjava</groupId>
<artifactId>litemall-db</artifactId>
</dependency>
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-miniapp</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring-boot-web-starter</artifactId>
</dependency>
</dependencies>
</project>