pom.xml 2.4 KB

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