2019-09-13 12:20:17 +00:00
|
|
|
|
<?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>SpringBoot2</artifactId>
|
|
|
|
|
<groupId>zz</groupId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>SpringBootAngularjs</artifactId>
|
2019-12-27 14:02:55 +00:00
|
|
|
|
<packaging>jar</packaging>
|
2019-09-13 12:20:17 +00:00
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
2019-12-27 14:02:55 +00:00
|
|
|
|
|
|
|
|
|
<!--目的:《可选》引入springboot 热启动,每次修改以后,会自动把改动加载,不需要重启服务了-->
|
|
|
|
|
<dependency> <groupId>org.springframework.boot</groupId>
|
2019-09-13 12:20:17 +00:00
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2019-12-27 14:02:55 +00:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
|
2019-09-13 12:20:17 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>8.0.15</version>
|
|
|
|
|
</dependency>
|
2019-12-27 14:02:55 +00:00
|
|
|
|
|
|
|
|
|
<!-- shiro-spring -->
|
2019-09-13 12:20:17 +00:00
|
|
|
|
<dependency>
|
2019-12-27 14:02:55 +00:00
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-spring</artifactId>
|
|
|
|
|
<version>1.4.0</version>
|
2019-09-13 12:20:17 +00:00
|
|
|
|
</dependency>
|
2019-12-27 14:02:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 添加JPA的支持 -->
|
2019-09-13 12:20:17 +00:00
|
|
|
|
<dependency>
|
2019-12-27 14:02:55 +00:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
2019-09-13 12:20:17 +00:00
|
|
|
|
</dependency>
|
2019-12-27 14:02:55 +00:00
|
|
|
|
|
2019-09-13 12:20:17 +00:00
|
|
|
|
<dependency>
|
2019-12-27 14:02:55 +00:00
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.6</version>
|
|
|
|
|
<scope>provided</scope>
|
2019-09-13 12:20:17 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>alimaven</id>
|
|
|
|
|
<name>aliyun maven</name>
|
|
|
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
<build>
|
2019-12-27 14:02:55 +00:00
|
|
|
|
<finalName>questionsys</finalName>
|
2019-09-13 12:20:17 +00:00
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|