pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>service-eg</artifactId>
  7. <groupId>com.usky</groupId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-eg-biz</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.usky</groupId>
  15. <artifactId>common-cloud-starter</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-configuration-processor</artifactId>
  20. <optional>true</optional>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <!-- Pagehelper -->
  28. <dependency>
  29. <groupId>com.github.pagehelper</groupId>
  30. <artifactId>pagehelper-spring-boot-starter</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.usky</groupId>
  34. <artifactId>ruoyi-common-swagger</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.alibaba</groupId>
  38. <artifactId>fastjson</artifactId>
  39. <version>1.2.28</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.usky</groupId>
  43. <artifactId>service-eg-api</artifactId>
  44. <version>0.0.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.usky</groupId>
  48. <artifactId>data-transfer-api</artifactId>
  49. <version>0.0.1</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.usky</groupId>
  53. <artifactId>service-iot-api</artifactId>
  54. <version>0.0.1</version>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <finalName>${project.artifactId}</finalName>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <version>2.2.6.RELEASE</version>
  64. <executions>
  65. <execution>
  66. <goals>
  67. <goal>repackage</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. <plugin>
  73. <groupId>com.github.shalousun</groupId>
  74. <artifactId>smart-doc-maven-plugin</artifactId>
  75. <version>2.1.1</version>
  76. <configuration>
  77. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  78. <configFile>./src/main/resources/smart-doc.json</configFile>
  79. <!--指定项目名称-->
  80. <projectName>test</projectName>
  81. <!-- <excludes>-->
  82. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  83. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  84. <!-- </excludes>-->
  85. </configuration>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>