|
|
@@ -5,7 +5,7 @@
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>2.6.3</version>
|
|
|
+ <version>2.5.3</version>
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
</parent>
|
|
|
<groupId>com.chuanghai.repair</groupId>
|
|
|
@@ -26,30 +26,65 @@
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
+ <groupId>org.thymeleaf.extras</groupId>
|
|
|
+ <artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!--web -->
|
|
|
+ <dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>org.thymeleaf.extras</groupId>
|
|
|
- <artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--导入工具包-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.qcloud</groupId>
|
|
|
+ <artifactId>cos_api</artifactId>
|
|
|
+ <version>5.6.15</version>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>1.2.4</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>1.3.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-codec</groupId>
|
|
|
+ <artifactId>commons-codec</artifactId>
|
|
|
+ <version>1.15</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- spring Boot JDBC-->
|
|
|
+ <!-- MySQL版本不同需要的连接jar包的版本也不同-->
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
- <scope>runtime</scope>
|
|
|
+ <version>5.1.6</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
+ <version>2.1.2</version>
|
|
|
</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>
|
|
|
- <dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
@@ -59,6 +94,57 @@
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.xmlunit</groupId>
|
|
|
+ <artifactId>xmlunit-core</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ <artifactId>mybatis</artifactId>
|
|
|
+ <version>3.5.4</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ <artifactId>mybatis-spring</artifactId>
|
|
|
+ <version>2.0.4</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--部署热启动依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
+ <optional>true</optional>
|
|
|
+ <version>2.6.3</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.data</groupId>
|
|
|
+ <artifactId>spring-data-jpa</artifactId>
|
|
|
+ <version>2.6.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-orm</artifactId>
|
|
|
+ <version>5.3.15</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+<!-- 集成swagger-ui的依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
+ <version>2.9.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.xiaoymin</groupId>
|
|
|
+ <artifactId>swagger-bootstrap-ui</artifactId>
|
|
|
+ <version>1.9.5</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.junit.jupiter</groupId>
|
|
|
+ <artifactId>junit-jupiter</artifactId>
|
|
|
+ <version>RELEASE</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
@@ -74,7 +160,13 @@
|
|
|
<artifactId>lombok</artifactId>
|
|
|
</exclude>
|
|
|
</excludes>
|
|
|
+ <!--热启动配置-->
|
|
|
+ <fork>true</fork>
|
|
|
+ <addResources>true</addResources>
|
|
|
+
|
|
|
</configuration>
|
|
|
+
|
|
|
+
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|