pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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-oa</artifactId>
  5. <groupId>com.usky</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-oa-biz</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.usky</groupId>
  13. <artifactId>common-cloud-starter</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>com.usky</groupId>
  17. <artifactId>service-oa-api</artifactId>
  18. <version>0.0.1</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. <!-- Pagehelper -->
  26. <dependency>
  27. <groupId>com.github.pagehelper</groupId>
  28. <artifactId>pagehelper-spring-boot-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.usky</groupId>
  32. <artifactId>ruoyi-common-core</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.usky</groupId>
  36. <artifactId>service-system-api</artifactId>
  37. <version>0.0.1</version>
  38. </dependency>
  39. <!-- Excel & Word 工具 -->
  40. <dependency>
  41. <groupId>cn.afterturn</groupId>
  42. <artifactId>easypoi-spring-boot-starter</artifactId>
  43. <version>4.1.0</version>
  44. </dependency>
  45. <!-- 流程XML解析 -->
  46. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  47. <!-- <dependency>
  48. <groupId>org.dom4j</groupId>
  49. <artifactId>dom4j</artifactId>
  50. <version>2.1.4</version>
  51. </dependency>-->
  52. <dependency>
  53. <groupId>com.usky</groupId>
  54. <artifactId>ruoyi-common-swagger</artifactId>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <finalName>${project.artifactId}</finalName>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <version>2.2.6.RELEASE</version>
  64. <executions>
  65. <execution>
  66. <goals>
  67. <goal>repackage</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. <plugin>
  73. <groupId>com.github.shalousun</groupId>
  74. <artifactId>smart-doc-maven-plugin</artifactId>
  75. <version>2.1.1</version>
  76. <configuration>
  77. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  78. <configFile>./src/main/resources/smart-doc.json</configFile>
  79. <!--指定项目名称-->
  80. <projectName>test</projectName>
  81. <!-- <excludes>-->
  82. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  83. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  84. <!-- </excludes>-->
  85. </configuration>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>