pom.xml 2.4 KB

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