pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <!--预警公共模块-->
  8. <module>yujing-common</module>
  9. <!--算法模块-->
  10. <module>yujing-warning-calculation</module>
  11. <!--工况和重新计算模块-->
  12. <module>yujing-condition-identification</module>
  13. <!--数据诊断某开-->
  14. <module>yujing-hook-load-warning</module>
  15. <module>yujing-total-pool-volume</module>
  16. <module>yujing-pumping-pressure</module>
  17. <module>yujing-torque</module>
  18. <!--数据发送模块-->
  19. <module>yujing-send-message</module>
  20. <!--数据采集模块-->
  21. <module>yujing-pull</module>
  22. </modules>
  23. <parent>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-parent</artifactId>
  26. <version>2.6.1</version>
  27. <relativePath/> <!-- lookup parent from repository -->
  28. </parent>
  29. <groupId>com.cn.tianji</groupId>
  30. <artifactId>yujing-calculate</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. <name>yujing-calculate</name>
  33. <description>yujing-calculate</description>
  34. <properties>
  35. <java.version>1.8</java.version>
  36. <redisson.version>3.16.1</redisson.version>
  37. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  38. </properties>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-web</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.freemarker</groupId>
  50. <artifactId>freemarker</artifactId>
  51. <version>2.3.28</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>fastjson</artifactId>
  56. <version>1.2.73</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.redisson</groupId>
  60. <artifactId>redisson</artifactId>
  61. <version>${redisson.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>redis.clients</groupId>
  65. <artifactId>jedis</artifactId>
  66. <version>2.9.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-data-redis</artifactId>
  71. </dependency>
  72. <!-- mybatis-plus相关-->
  73. <dependency>
  74. <groupId>com.baomidou</groupId>
  75. <artifactId>mybatis-plus-boot-starter</artifactId>
  76. <version>3.5.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.baomidou</groupId>
  80. <artifactId>mybatis-plus-generator</artifactId>
  81. <version>3.5.2</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.velocity</groupId>
  85. <artifactId>velocity-engine-core</artifactId>
  86. <version>2.3</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.oracle</groupId>
  90. <artifactId>ojdbc6</artifactId>
  91. <version>12.1.0.2</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.slf4j</groupId>
  95. <artifactId>slf4j-api</artifactId>
  96. <version>1.7.25</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.baomidou</groupId>
  100. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  101. <version>3.2.0</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.quartz-scheduler</groupId>
  105. <artifactId>quartz</artifactId>
  106. <version>2.3.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.rocketmq</groupId>
  110. <artifactId>rocketmq-spring-boot-starter</artifactId>
  111. <version>2.1.1</version>
  112. </dependency>
  113. <!-- <dependency>-->
  114. <!-- <groupId>com.aliyun.openservices</groupId>-->
  115. <!-- <artifactId>ons-client</artifactId>-->
  116. <!-- <version>1.8.4.Final</version>-->
  117. <!-- </dependency>-->
  118. <!-- hutool工具类-->
  119. <dependency>
  120. <groupId>cn.hutool</groupId>
  121. <artifactId>hutool-all</artifactId>
  122. <version>5.8.12</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.projectlombok</groupId>
  126. <artifactId>lombok</artifactId>
  127. <optional>true</optional>
  128. </dependency>
  129. </dependencies>
  130. <build>
  131. <!-- <plugins>-->
  132. <!-- <plugin>-->
  133. <!-- <groupId>org.springframework.boot</groupId>-->
  134. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  135. <!-- </plugin>-->
  136. <!-- </plugins>-->
  137. </build>
  138. </project>