pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>aidex</artifactId>
  7. <groupId>com.aidex</groupId>
  8. <version>3.4.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>aidex-system</artifactId>
  12. <properties>
  13. <org.mapstruct.version>1.4.1.Final</org.mapstruct.version>
  14. <commons-beanutils.version>1.9.4</commons-beanutils.version>
  15. </properties>
  16. <description>
  17. system系统模块
  18. </description>
  19. <dependencies>
  20. <!-- 通用工具-->
  21. <dependency>
  22. <groupId>com.aidex</groupId>
  23. <artifactId>aidex-common</artifactId>
  24. </dependency>
  25. <!-- 引入mapstruct 2020-01-28 -->
  26. <dependency>
  27. <groupId>org.mapstruct</groupId>
  28. <artifactId>mapstruct</artifactId>
  29. <version>${org.mapstruct.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mapstruct</groupId>
  33. <artifactId>mapstruct-processor</artifactId>
  34. <version>${org.mapstruct.version}</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-beanutils</groupId>
  39. <artifactId>commons-beanutils</artifactId>
  40. <version>${commons-beanutils.version}</version>
  41. </dependency>
  42. <!--引入hutool工具类 -->
  43. <dependency>
  44. <groupId>cn.hutool</groupId>
  45. <artifactId>hutool-all</artifactId>
  46. <version>5.8.26</version>
  47. </dependency>
  48. <!--阿里短信服务 -->
  49. <dependency>
  50. <groupId>com.aliyun</groupId>
  51. <artifactId>aliyun-java-sdk-core</artifactId>
  52. <version>4.5.16</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.thoughtworks.xstream</groupId>
  56. <artifactId>xstream</artifactId>
  57. <version>1.3.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.google.guava</groupId>
  61. <artifactId>guava</artifactId>
  62. <version>25.0-jre</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.junit.jupiter</groupId>
  66. <artifactId>junit-jupiter</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.swagger</groupId>
  71. <artifactId>swagger-annotations</artifactId>
  72. <version>1.6.2</version>
  73. <scope>compile</scope>
  74. </dependency>
  75. </dependencies>
  76. </project>