pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. <!-- <dependency>-->
  32. <!-- <groupId>com.oracle</groupId>-->
  33. <!-- <artifactId>ojdbc6</artifactId>-->
  34. <!-- <version>11.2.0.3</version>-->
  35. <!-- </dependency>-->
  36. <!--oracle驱动-->
  37. <!-- https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8 -->
  38. <dependency>
  39. <groupId>com.oracle.database.jdbc</groupId>
  40. <artifactId>ojdbc8</artifactId>
  41. <version>19.7.0.0</version>
  42. </dependency>
  43. <!-- oracle字符集 https://mvnrepository.com/artifact/cn.easyproject/orai18n -->
  44. <dependency>
  45. <groupId>cn.easyproject</groupId>
  46. <artifactId>orai18n</artifactId>
  47. <version>12.1.0.2.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.xerial</groupId>
  51. <artifactId>sqlite-jdbc</artifactId>
  52. <version>3.36.0.3</version>
  53. </dependency>
  54. <!--mybatis依赖-->
  55. <dependency>
  56. <groupId>com.baomidou</groupId>
  57. <artifactId>mybatis-plus-boot-starter</artifactId>
  58. <version>3.2.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-generator</artifactId>
  63. <version>3.3.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>fastjson</artifactId>
  68. <version>1.2.17</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-math3</artifactId>
  78. <version>3.6.1</version>
  79. </dependency>
  80. <!--http请求-->
  81. <dependency>
  82. <groupId>com.netflix.feign</groupId>
  83. <artifactId>feign-core</artifactId>
  84. <version>8.18.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.netflix.feign</groupId>
  88. <artifactId>feign-jackson</artifactId>
  89. <version>8.18.0</version>
  90. </dependency>
  91. <!--http请求-->
  92. <!--常用工具类 -->
  93. <dependency>
  94. <groupId>org.apache.commons</groupId>
  95. <artifactId>commons-lang3</artifactId>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. <configuration>
  104. <includeSystemScope>true</includeSystemScope>
  105. <excludes>
  106. <exclude>
  107. <groupId>org.projectlombok</groupId>
  108. <artifactId>lombok</artifactId>
  109. </exclude>
  110. </excludes>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. </project>