pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <!-- 使父工程继承springboot工程 -->
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.3.4.RELEASE</version>
  8. <relativePath/> <!-- lookup parent from repository -->
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.example</groupId>
  12. <artifactId>cqcy-ei</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <!-- 修改父工程的打包方式为pom,子类可继承 -->
  15. <packaging>pom</packaging>
  16. <name>cqcy-ei</name>
  17. <modules>
  18. <module>cqcy-ei-common</module>
  19. <module>cqcy-ei-da</module>
  20. <module>cqcy-ei-ua</module>
  21. </modules>
  22. <properties>
  23. <java-version>1.8</java-version>
  24. <mybatis-version>2.2.2</mybatis-version>
  25. <mysql-connector-version>8.0.21</mysql-connector-version>
  26. <redis-version>2.3.4.RELEASE</redis-version>
  27. <websocket-version>2.3.4.RELEASE</websocket-version>
  28. <fastjson-version>1.2.83</fastjson-version>
  29. <hutool-version>5.5.2</hutool-version>
  30. <cron-version>9.2.0</cron-version>
  31. <jwt-version>3.8.2</jwt-version>
  32. <quartz-version>2.3.2</quartz-version>
  33. <pool2-version>2.8.1</pool2-version>
  34. <validation-version>2.0.1.Final</validation-version>
  35. <bdparsii-version>1.0.0</bdparsii-version>
  36. <truelicense-version>1.33</truelicense-version>
  37. </properties>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.mybatis.spring.boot</groupId>
  42. <artifactId>mybatis-spring-boot-starter</artifactId>
  43. <version>${mybatis-version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-data-redis</artifactId>
  48. <version>${redis-version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-websocket</artifactId>
  53. <version>${websocket-version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>fastjson</artifactId>
  58. <version>${fastjson-version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>cn.hutool</groupId>
  62. <artifactId>hutool-all</artifactId>
  63. <version>${hutool-version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.cronutils</groupId>
  67. <artifactId>cron-utils</artifactId>
  68. <version>${cron-version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.auth0</groupId>
  72. <artifactId>java-jwt</artifactId>
  73. <version>${jwt-version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.quartz-scheduler</groupId>
  77. <artifactId>quartz</artifactId>
  78. <version>${quartz-version}</version>
  79. </dependency>
  80. <!--对象池化组件-->
  81. <dependency>
  82. <groupId>org.apache.commons</groupId>
  83. <artifactId>commons-pool2</artifactId>
  84. <version>${pool2-version}</version>
  85. </dependency>
  86. <!--spring接口接受参数对象,添加校验功能-->
  87. <dependency>
  88. <groupId>javax.validation</groupId>
  89. <artifactId>validation-api</artifactId>
  90. <version>${validation-version}</version>
  91. </dependency>
  92. <!--数学四则运算依赖 -->
  93. <dependency>
  94. <groupId>com.mpobjects</groupId>
  95. <artifactId>bdparsii</artifactId>
  96. <version>${bdparsii-version}</version>
  97. </dependency>
  98. <!--证书认证-->
  99. <dependency>
  100. <groupId>de.schlichtherle.truelicense</groupId>
  101. <artifactId>truelicense-core</artifactId>
  102. <version>${truelicense-version}</version>
  103. </dependency>
  104. </dependencies>
  105. </dependencyManagement>
  106. </project>