You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
2.6 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
2 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>xm-core</artifactId>
  6. <packaging>jar</packaging>
  7. <name>xm-core 唛盟云-项目管理系统服务端核心</name>
  8. <description>唛盟云-项目管理系统服务端核心</description>
  9. <parent>
  10. <groupId>com.xm</groupId>
  11. <artifactId>xm-backend</artifactId>
  12. <version>2.0.0-RELEASE</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.mdp</groupId>
  17. <artifactId>mdp-boot-starter</artifactId>
  18. <version>${mdp.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.mdp</groupId>
  22. <artifactId>mdp-tpa-client</artifactId>
  23. <version>${mdp.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.mdp</groupId>
  27. <artifactId>mdp-ds</artifactId>
  28. <version>${mdp.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.mdp</groupId>
  32. <artifactId>mdp-oauth2-client</artifactId>
  33. <version>${mdp.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>net.coobird</groupId>
  37. <artifactId>thumbnailator</artifactId>
  38. <version>0.4.8</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.poi</groupId>
  42. <artifactId>poi</artifactId>
  43. <version>3.17</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.poi</groupId>
  47. <artifactId>poi-ooxml</artifactId>
  48. <version>3.17</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.poi</groupId>
  52. <artifactId>poi-ooxml-schemas</artifactId>
  53. <version>3.17</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>easyexcel</artifactId>
  58. <version>2.1.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.jsoup</groupId>
  62. <artifactId>jsoup</artifactId>
  63. <version>1.11.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>fastjson</artifactId>
  68. <version>1.2.59</version>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
  71. <dependency>
  72. <groupId>io.springfox</groupId>
  73. <artifactId>springfox-swagger2</artifactId>
  74. <version>2.9.2</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-swagger-ui</artifactId>
  79. <version>2.9.2</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.javassist</groupId>
  83. <artifactId>javassist</artifactId>
  84. <version>3.20.0-GA</version>
  85. </dependency>
  86. </dependencies>
  87. </project>