pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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-fetting</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-web</artifactId>
  20. </dependency>
  21. <!-- 模板引擎 -->
  22. <dependency>
  23. <groupId>org.apache.velocity</groupId>
  24. <artifactId>velocity-engine-core</artifactId>
  25. <version>2.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>druid-spring-boot-starter</artifactId>
  30. <version>1.2.11</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.oracle</groupId>
  34. <artifactId>ojdbc6</artifactId>
  35. <version>11.2.0.3</version>
  36. </dependency>
  37. <!--mybatis依赖-->
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.2.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>mybatis-plus-generator</artifactId>
  46. <version>3.3.2</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>fastjson</artifactId>
  51. <version>1.2.17</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.projectlombok</groupId>
  55. <artifactId>lombok</artifactId>
  56. <optional>true</optional>
  57. </dependency>
  58. <!--http请求-->
  59. <dependency>
  60. <groupId>com.netflix.feign</groupId>
  61. <artifactId>feign-core</artifactId>
  62. <version>8.18.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.netflix.feign</groupId>
  66. <artifactId>feign-jackson</artifactId>
  67. <version>8.18.0</version>
  68. </dependency>
  69. <!--http请求-->
  70. <!--常用工具类 -->
  71. <dependency>
  72. <groupId>org.apache.commons</groupId>
  73. <artifactId>commons-lang3</artifactId>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-maven-plugin</artifactId>
  81. <configuration>
  82. <includeSystemScope>true</includeSystemScope>
  83. <excludes>
  84. <exclude>
  85. <groupId>org.projectlombok</groupId>
  86. <artifactId>lombok</artifactId>
  87. </exclude>
  88. </excludes>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>