pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <parent>
  4. <artifactId>service-backend</artifactId>
  5. <groupId>com.usky</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-backend-biz</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.usky</groupId>
  13. <artifactId>common-cloud-starter</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-test</artifactId>
  18. <scope>test</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.pagehelper</groupId>
  22. <artifactId>pagehelper-spring-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.usky</groupId>
  26. <artifactId>ruoyi-common-swagger</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.springfox</groupId>
  30. <artifactId>springfox-swagger-ui</artifactId>
  31. <version>${swagger.fox.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.usky</groupId>
  35. <artifactId>service-backend-api</artifactId>
  36. <version>0.0.1</version>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <finalName>${project.artifactId}</finalName>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. <executions>
  46. <execution>
  47. <goals>
  48. <goal>repackage</goal>
  49. </goals>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. <plugin>
  54. <groupId>com.github.shalousun</groupId>
  55. <artifactId>smart-doc-maven-plugin</artifactId>
  56. <version>2.1.1</version>
  57. <configuration>
  58. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  59. <configFile>./src/main/resources/smart-doc.json</configFile>
  60. <!--指定项目名称-->
  61. <projectName>test</projectName>
  62. <!-- <excludes>-->
  63. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  64. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  65. <!-- </excludes>-->
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>