pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.6.7</version>
  10. </parent>
  11. <groupId>com.nh.farm.cloud</groupId>
  12. <artifactId>nh-mcro-sale</artifactId>
  13. <version>1.0.0</version>
  14. <packaging>jar</packaging>
  15. <!--设置jdk版本变量-->
  16. <properties>
  17. <java.version>11</java.version>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.nh.fk</groupId>
  23. <artifactId>nh-common</artifactId>
  24. <version>2.0.0</version>
  25. </dependency>
  26. <!-- Web undertow -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <!-- DB 相关 -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-jdbc</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.oracle.ojdbc</groupId>
  38. <artifactId>ojdbc8</artifactId>
  39. <version>19.3.0.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.easyproject</groupId>
  43. <artifactId>orai18n</artifactId>
  44. <version>12.1.0.2.0</version>
  45. </dependency>
  46. <!-- mybatisPlus集成 -->
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. <version>3.4.3.4</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-data-redis</artifactId>
  55. </dependency>
  56. <!-- jjwt -->
  57. <dependency>
  58. <groupId>io.jsonwebtoken</groupId>
  59. <artifactId>jjwt</artifactId>
  60. <version>0.9.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.projectlombok</groupId>
  64. <artifactId>lombok</artifactId>
  65. <version>1.18.22</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>cn.hutool</groupId>
  69. <artifactId>hutool-all</artifactId>
  70. <version>5.5.7</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>fastjson</artifactId>
  75. <version>1.2.56</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <!-- excel实用导入 -->
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>easyexcel</artifactId>
  82. <version>3.1.1</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-fileupload</groupId>
  86. <artifactId>commons-fileupload</artifactId>
  87. <version>1.4</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-io</groupId>
  91. <artifactId>commons-io</artifactId>
  92. <version>2.8.0</version>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. <version>2.6.0</version>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>