pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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>runeconmy-nx</artifactId>
  7. <groupId>org.example</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.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.alibaba</groupId>
  33. <artifactId>druid</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.oracle</groupId>
  37. <artifactId>ojdbc6</artifactId>
  38. <version>11.2.0.3</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-redis</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.data</groupId>
  47. <artifactId>spring-data-redis</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.baomidou</groupId>
  51. <artifactId>mybatis-plus-boot-starter</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-generator</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.freemarker</groupId>
  59. <artifactId>freemarker</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>fastjson</artifactId>
  64. <version>1.2.17</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <!-- ********************** plugin ********************** -->
  68. <!-- groovy-all -->
  69. <dependency>
  70. <groupId>org.codehaus.groovy</groupId>
  71. <artifactId>groovy</artifactId>
  72. </dependency>
  73. <!-- xxl-job-core -->
  74. <dependency>
  75. <groupId>com.google.code.gson</groupId>
  76. <artifactId>gson</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.netty</groupId>
  80. <artifactId>netty-all</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.postgresql</groupId>
  84. <artifactId>postgresql</artifactId>
  85. <version>42.6.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.poi</groupId>
  89. <artifactId>poi</artifactId>
  90. <version>3.17</version>
  91. <scope>compile</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>cn.hutool</groupId>
  95. <artifactId>hutool-all</artifactId>
  96. <version>5.1.1</version>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.taosdata.jdbc</groupId>
  101. <artifactId>taos-jdbcdriver</artifactId>
  102. <version>3.2.2</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.baomidou</groupId>
  106. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  107. <version>3.5.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.example</groupId>
  111. <artifactId>common</artifactId>
  112. <version>1.0-SNAPSHOT</version>
  113. </dependency>
  114. <!-- xxl-job-core -->
  115. <dependency>
  116. <groupId>com.xuxueli</groupId>
  117. <artifactId>xxl-job-core</artifactId>
  118. <version>2.3.1</version>
  119. </dependency>
  120. <!-- <dependency>-->
  121. <!-- <groupId>com.gyee</groupId>-->
  122. <!-- <artifactId>data-adapter</artifactId>-->
  123. <!-- <version>1.0.0-SNAPSHOT</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>