|
@@ -0,0 +1,80 @@
|
|
|
|
+<?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>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
+ <version>2.1.6.RELEASE</version>
|
|
|
|
+ <relativePath/> <!-- lookup parent from repository -->
|
|
|
|
+ </parent>
|
|
|
|
+ <groupId>com.hssx</groupId>
|
|
|
|
+ <artifactId>model</artifactId>
|
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
|
+ <name>model</name>
|
|
|
|
+ <modules>
|
|
|
|
+ <module>cloud-model</module>
|
|
|
|
+ </modules>
|
|
|
|
+ <packaging>pom</packaging>
|
|
|
|
+ <description>Demo project for Spring Boot</description>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <java.version>1.8</java.version>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
+ <optional>true</optional>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
|
+ <optional>true</optional>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
+ <scope>test</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/io.swagger/swagger-annotations -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
|
+ <artifactId>swagger-annotations</artifactId>
|
|
|
|
+ <version>1.5.15</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!--<!– https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter –>-->
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
+ <!--<groupId>com.github.pagehelper</groupId>-->
|
|
|
|
+ <!--<artifactId>pagehelper-spring-boot-starter</artifactId>-->
|
|
|
|
+ <!--<version>1.2.10</version>-->
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
+ </dependencies>
|
|
|
|
+
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
|
|
+</project>
|