pom.xml 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <jwt-version>3.8.2</jwt-version>
  31. <quartz-version>2.3.2</quartz-version>
  32. <pool2-version>2.8.1</pool2-version>
  33. <bdparsii-version>1.0.0</bdparsii-version>
  34. <truelicense-version>1.33</truelicense-version>
  35. </properties>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.mybatis.spring.boot</groupId>
  40. <artifactId>mybatis-spring-boot-starter</artifactId>
  41. <version>${mybatis-version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-data-redis</artifactId>
  46. <version>${redis-version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-websocket</artifactId>
  51. <version>${websocket-version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>fastjson</artifactId>
  56. <version>${fastjson-version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>cn.hutool</groupId>
  60. <artifactId>hutool-all</artifactId>
  61. <version>${hutool-version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.auth0</groupId>
  65. <artifactId>java-jwt</artifactId>
  66. <version>${jwt-version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.quartz-scheduler</groupId>
  70. <artifactId>quartz</artifactId>
  71. <version>${quartz-version}</version>
  72. </dependency>
  73. <!--对象池化组件-->
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-pool2</artifactId>
  77. <version>${pool2-version}</version>
  78. </dependency>
  79. <!--数学四则运算依赖 -->
  80. <dependency>
  81. <groupId>com.mpobjects</groupId>
  82. <artifactId>bdparsii</artifactId>
  83. <version>${bdparsii-version}</version>
  84. </dependency>
  85. <!--证书认证-->
  86. <dependency>
  87. <groupId>de.schlichtherle.truelicense</groupId>
  88. <artifactId>truelicense-core</artifactId>
  89. <version>${truelicense-version}</version>
  90. </dependency>
  91. </dependencies>
  92. </dependencyManagement>
  93. </project>