pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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-fire</artifactId>
  5. <groupId>com.usky</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-fire-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. <!-- Pagehelper -->
  21. <!-- <dependency>-->
  22. <!-- <groupId>com.github.pagehelper</groupId>-->
  23. <!-- <artifactId>pagehelper-spring-boot-starter</artifactId>-->
  24. <!-- </dependency>-->
  25. <dependency>
  26. <groupId>com.usky</groupId>
  27. <artifactId>ruoyi-common-core</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.usky</groupId>
  31. <artifactId>service-system-api</artifactId>
  32. <version>0.0.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.usky</groupId>
  36. <artifactId>usky-common-tenant</artifactId>
  37. <version>0.0.1</version>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <finalName>${project.artifactId}</finalName>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. <executions>
  47. <execution>
  48. <goals>
  49. <goal>repackage</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. <plugin>
  55. <groupId>com.github.shalousun</groupId>
  56. <artifactId>smart-doc-maven-plugin</artifactId>
  57. <version>2.1.1</version>
  58. <configuration>
  59. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  60. <configFile>./src/main/resources/smart-doc.json</configFile>
  61. <!--指定项目名称-->
  62. <projectName>test</projectName>
  63. <!-- <excludes>-->
  64. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  65. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  66. <!-- </excludes>-->
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>