pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-iot</artifactId>
  5. <groupId>com.usky</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-iot-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. <dependency>
  26. <groupId>cn.afterturn</groupId>
  27. <artifactId>easypoi-spring-boot-starter</artifactId>
  28. <version>4.1.0</version>
  29. </dependency>
  30. <!-- excel工具 -->
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-openfeign</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.poi</groupId>
  37. <artifactId>poi-ooxml</artifactId>
  38. <version>4.1.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.usky</groupId>
  42. <artifactId>ruoyi-common-core</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.usky</groupId>
  46. <artifactId>service-backend-api</artifactId>
  47. <version>0.0.1</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <finalName>${project.artifactId}</finalName>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. <executions>
  57. <execution>
  58. <goals>
  59. <goal>repackage</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. <plugin>
  65. <groupId>com.github.shalousun</groupId>
  66. <artifactId>smart-doc-maven-plugin</artifactId>
  67. <version>2.1.1</version>
  68. <configuration>
  69. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  70. <configFile>./src/main/resources/smart-doc.json</configFile>
  71. <!--指定项目名称-->
  72. <projectName>test</projectName>
  73. <!-- <excludes>-->
  74. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  75. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  76. <!-- </excludes>-->
  77. </configuration>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>