pom.xml 2.6 KB

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