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