pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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>stmms-ms-parent</artifactId>
  7. <groupId>cn.com.qmth</groupId>
  8. <version>${project.version}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>stmms-ms-commons</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.apache.poi</groupId>
  19. <artifactId>poi-ooxml</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jpa</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>net.coobird</groupId>
  31. <artifactId>thumbnailator</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.google.code.gson</groupId>
  35. <artifactId>gson</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>druid</artifactId>
  40. <version>1.1.16</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba</groupId>
  44. <artifactId>fastjson</artifactId>
  45. <version>1.1.30</version>
  46. </dependency>
  47. <!--<dependency>-->
  48. <!--<groupId>io.springfox</groupId>-->
  49. <!--<artifactId>springfox-swagger2</artifactId>-->
  50. <!--<version>2.9.2</version>-->
  51. <!--</dependency>-->
  52. <!--<dependency>-->
  53. <!--<groupId>io.springfox</groupId>-->
  54. <!--<artifactId>springfox-swagger-ui</artifactId>-->
  55. <!--<version>2.9.2</version>-->
  56. <!--</dependency>-->
  57. <!--<dependency>-->
  58. <!--<groupId>io.swagger</groupId>-->
  59. <!--<artifactId>swagger-annotations</artifactId>-->
  60. <!--<version>1.5.21</version>-->
  61. <!--</dependency>-->
  62. <!--<dependency>-->
  63. <!--<groupId>io.swagger</groupId>-->
  64. <!--<artifactId>swagger-models</artifactId>-->
  65. <!--<version>1.5.21</version>-->
  66. <!--</dependency>-->
  67. <dependency>
  68. <groupId>com.aliyun.oss</groupId>
  69. <artifactId>aliyun-sdk-oss</artifactId>
  70. <version>3.8.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-lang</groupId>
  74. <artifactId>commons-lang</artifactId>
  75. <version>2.6</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.itextpdf</groupId>
  80. <artifactId>itextpdf</artifactId>
  81. <version>5.5.13</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.itextpdf</groupId>
  85. <artifactId>itext-asian</artifactId>
  86. <version>5.2.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>cn.hutool</groupId>
  90. <artifactId>hutool-core</artifactId>
  91. <version>5.7.22</version>
  92. </dependency>
  93. </dependencies>
  94. </project>