pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. <!-- 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>service-backend-api</artifactId>
  28. <version>0.0.1</version>
  29. </dependency>
  30. <!-- <dependency>-->
  31. <!-- <groupId>com.usky</groupId>-->
  32. <!-- <artifactId>usky-module-demo-api</artifactId>-->
  33. <!-- <version>0.0.1</version>-->
  34. <!-- </dependency>-->
  35. </dependencies>
  36. <build>
  37. <finalName>${project.artifactId}</finalName>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. <executions>
  43. <execution>
  44. <goals>
  45. <goal>repackage</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. <plugin>
  51. <groupId>com.github.shalousun</groupId>
  52. <artifactId>smart-doc-maven-plugin</artifactId>
  53. <version>2.1.1</version>
  54. <configuration>
  55. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  56. <configFile>./src/main/resources/smart-doc.json</configFile>
  57. <!--指定项目名称-->
  58. <projectName>test</projectName>
  59. <!-- <excludes>-->
  60. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  61. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  62. <!-- </excludes>-->
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>