pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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>sis-background</artifactId>
  7. <groupId>com.gyee</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>power-fitting</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-websocket</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.alibaba</groupId>
  23. <artifactId>druid-spring-boot-starter</artifactId>
  24. <version>1.2.11</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>easyexcel</artifactId>
  29. <version>3.1.1</version>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-jpa</artifactId>
  35. <version>2.7.4</version>
  36. </dependency>
  37. <!-- <dependency>-->
  38. <!-- <groupId>com.oracle</groupId>-->
  39. <!-- <artifactId>ojdbc6</artifactId>-->
  40. <!-- <version>11.2.0.3</version>-->
  41. <!-- </dependency>-->
  42. <!--oracle驱动-->
  43. <!-- https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8 -->
  44. <dependency>
  45. <groupId>com.oracle.database.jdbc</groupId>
  46. <artifactId>ojdbc8</artifactId>
  47. <version>19.7.0.0</version>
  48. </dependency>
  49. <!-- oracle字符集 https://mvnrepository.com/artifact/cn.easyproject/orai18n -->
  50. <dependency>
  51. <groupId>cn.easyproject</groupId>
  52. <artifactId>orai18n</artifactId>
  53. <version>12.1.0.2.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.xerial</groupId>
  57. <artifactId>sqlite-jdbc</artifactId>
  58. <version>3.36.0.3</version>
  59. </dependency>
  60. <!--mybatis依赖-->
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>mybatis-plus-boot-starter</artifactId>
  64. <version>3.2.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.baomidou</groupId>
  68. <artifactId>mybatis-plus-generator</artifactId>
  69. <version>3.3.2</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>fastjson</artifactId>
  74. <version>1.2.17</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. <optional>true</optional>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.commons</groupId>
  83. <artifactId>commons-math3</artifactId>
  84. <version>3.6.1</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.velocity</groupId>
  88. <artifactId>velocity-engine-core</artifactId>
  89. <version>2.2</version>
  90. </dependency>
  91. <!--http请求-->
  92. <dependency>
  93. <groupId>com.netflix.feign</groupId>
  94. <artifactId>feign-core</artifactId>
  95. <version>8.18.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.netflix.feign</groupId>
  99. <artifactId>feign-jackson</artifactId>
  100. <version>8.18.0</version>
  101. </dependency>
  102. <!--http请求-->
  103. <!--常用工具类 -->
  104. <dependency>
  105. <groupId>org.apache.commons</groupId>
  106. <artifactId>commons-lang3</artifactId>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
  109. <dependency>
  110. <groupId>org.postgresql</groupId>
  111. <artifactId>postgresql</artifactId>
  112. <version>42.4.1</version>
  113. </dependency>
  114. <!--解析excel- xls-->
  115. <dependency>
  116. <groupId>org.apache.poi</groupId>
  117. <artifactId>poi</artifactId>
  118. <version>3.17</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.poi</groupId>
  122. <artifactId>poi-ooxml</artifactId>
  123. <version>3.17</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. <configuration>
  132. <includeSystemScope>true</includeSystemScope>
  133. <excludes>
  134. <exclude>
  135. <groupId>org.projectlombok</groupId>
  136. <artifactId>lombok</artifactId>
  137. </exclude>
  138. </excludes>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>