pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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>realtime</artifactId>
  7. <groupId>com.gyee</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>generationXK-service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.opencsv</groupId>
  15. <artifactId>opencsv</artifactId>
  16. <version>4.4</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-actuator</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-test</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.alibaba</groupId>
  38. <artifactId>druid</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.oracle</groupId>
  42. <artifactId>ojdbc6</artifactId>
  43. <version>11.2.0.3</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-data-redis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.data</groupId>
  52. <artifactId>spring-data-redis</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus-boot-starter</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.baomidou</groupId>
  60. <artifactId>mybatis-plus-generator</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.freemarker</groupId>
  64. <artifactId>freemarker</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.gyee</groupId>
  68. <artifactId>common</artifactId>
  69. <version>1.0-SNAPSHOT</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>fastjson</artifactId>
  75. <version>1.2.17</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <!-- ********************** plugin ********************** -->
  79. <!-- groovy-all -->
  80. <dependency>
  81. <groupId>org.codehaus.groovy</groupId>
  82. <artifactId>groovy</artifactId>
  83. </dependency>
  84. <!-- xxl-job-core -->
  85. <dependency>
  86. <groupId>com.xuxueli</groupId>
  87. <artifactId>xxl-job-core</artifactId>
  88. <version>2.3.1-SNAPSHOT</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.google.code.gson</groupId>
  92. <artifactId>gson</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>io.netty</groupId>
  96. <artifactId>netty-all</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.postgresql</groupId>
  100. <artifactId>postgresql</artifactId>
  101. <version>42.6.0</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.poi</groupId>
  105. <artifactId>poi</artifactId>
  106. <version>3.17</version>
  107. <scope>compile</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>cn.hutool</groupId>
  111. <artifactId>hutool-all</artifactId>
  112. <version>5.1.1</version>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.taosdata.jdbc</groupId>
  117. <artifactId>taos-jdbcdriver</artifactId>
  118. <version>3.2.2</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.baomidou</groupId>
  122. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  123. <version>3.5.0</version>
  124. </dependency>
  125. </dependencies>
  126. <build>
  127. <plugins>
  128. <plugin>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-maven-plugin</artifactId>
  131. <version>2.7.1</version>
  132. <configuration>
  133. <!--maven编译时将本地引用的jar包一起打包-->
  134. <includeSystemScope>true</includeSystemScope>
  135. </configuration>
  136. <executions>
  137. <execution>
  138. <goals>
  139. <goal>repackage</goal>
  140. </goals>
  141. </execution>
  142. </executions>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. </project>