2019-08-17 10:19:41 +00:00
|
|
|
<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>
|
|
|
|
<groupId>zz</groupId>
|
|
|
|
<artifactId>SpringBoot2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<!-- Inherit defaults from Spring Boot -->
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.1.6.RELEASE</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>SpringBootBasic</module>
|
|
|
|
<module>SpringBootJPA</module>
|
|
|
|
<module>SpringBootThymeleaf</module>
|
|
|
|
<module>SpringBootFile</module>
|
2019-08-17 13:47:11 +00:00
|
|
|
<module>SpringBootHomework</module>
|
2019-08-22 17:18:47 +00:00
|
|
|
<module>SpringBootSwagger2</module>
|
2019-08-23 14:03:02 +00:00
|
|
|
<module>SpringBootShiroRememberMe</module>
|
2019-08-24 12:59:59 +00:00
|
|
|
<module>SpringBootController</module>
|
2019-08-25 13:45:25 +00:00
|
|
|
<module>SpringBootLombok</module>
|
2019-08-31 12:02:11 +00:00
|
|
|
<module>SpringBootShiroAuthorization</module>
|
2019-09-04 13:42:15 +00:00
|
|
|
<module>SpringBootException</module>
|
|
|
|
<module>SpringBootMybatis</module>
|
2019-09-08 02:31:48 +00:00
|
|
|
<module>SpringBootShiroJWT</module>
|
2019-09-13 12:20:17 +00:00
|
|
|
<module>SpringBootAngularjs</module>
|
2019-09-15 13:28:22 +00:00
|
|
|
<module>corejava</module>
|
|
|
|
<module>SpringBootRedis</module>
|
|
|
|
<module>SpringBootMybatisRedisCache</module>
|
2019-09-26 13:33:35 +00:00
|
|
|
<module>SpringBootOrder</module>
|
2019-08-17 10:19:41 +00:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>alimaven</id>
|
|
|
|
<name>aliyun maven</name>
|
|
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|