pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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>tofly-common</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-core</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0.0</version>
  14. <properties>
  15. <poi.version>3.17</poi.version>
  16. <swaggerold.version>1.5.21</swaggerold.version>
  17. </properties>
  18. <dependencies>
  19. <!-- excel工具 -->
  20. <dependency>
  21. <groupId>org.apache.poi</groupId>
  22. <artifactId>poi-ooxml</artifactId>
  23. <version>${poi.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>javax.servlet</groupId>
  27. <artifactId>javax.servlet-api</artifactId>
  28. </dependency>
  29. <!--mybatis plus extension,包含了mybatis plus core-->
  30. <dependency>
  31. <groupId>com.baomidou</groupId>
  32. <artifactId>mybatis-plus-extension</artifactId>
  33. <version>${mybatis-plus.version}</version>
  34. </dependency>
  35. <!--<dependency>-->
  36. <!--<groupId>org.springframework.boot</groupId>-->
  37. <!--<artifactId>spring-boot-starter-data-redis</artifactId>-->
  38. <!--</dependency>-->
  39. <!--feign 依赖-->
  40. <dependency>
  41. <groupId>io.github.openfeign</groupId>
  42. <artifactId>feign-okhttp</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-starter-openfeign</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework</groupId>
  50. <artifactId>spring-webmvc</artifactId>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-pool2</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-net</groupId>
  59. <artifactId>commons-net</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-beanutils</groupId>
  63. <artifactId>commons-beanutils</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.springfox</groupId>
  67. <artifactId>springfox-swagger2</artifactId>
  68. <exclusions>
  69. <exclusion>
  70. <groupId>io.swagger</groupId>
  71. <artifactId>swagger-models</artifactId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>
  75. <dependency>
  76. <groupId>io.swagger</groupId>
  77. <artifactId>swagger-models</artifactId>
  78. <version>${swaggerold.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>io.springfox</groupId>
  82. <artifactId>springfox-swagger-ui</artifactId>
  83. </dependency>
  84. <!--二维码 -->
  85. <dependency>
  86. <groupId>com.google.zxing</groupId>
  87. <artifactId>core</artifactId>
  88. <version>3.3.0</version>
  89. </dependency>
  90. <!--PDF-->
  91. <dependency>
  92. <groupId>com.itextpdf</groupId>
  93. <artifactId>itextpdf</artifactId>
  94. <version>5.5.13.1</version>
  95. </dependency>
  96. </dependencies>
  97. <distributionManagement>
  98. <repository>
  99. <id>nexus-releases</id>
  100. <name>Nexus Release Repository</name>
  101. <url>http://192.168.2.231:8081/nexus/content/repositories/thirdparty</url>
  102. </repository>
  103. </distributionManagement>
  104. </project>