pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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-parent</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-core</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0.1</version>
  14. <properties>
  15. <poi.version>3.17</poi.version>
  16. <swaggerold.version>1.5.21</swaggerold.version>
  17. <zxing.version>3.3.0</zxing.version>
  18. <itextpdf.version>5.5.13.1</itextpdf.version>
  19. </properties>
  20. <dependencies>
  21. <!-- excel工具 -->
  22. <dependency>
  23. <groupId>org.apache.poi</groupId>
  24. <artifactId>poi-ooxml</artifactId>
  25. <version>${poi.version}</version>
  26. </dependency>
  27. <!--mybatis plus extension,包含了mybatis plus core-->
  28. <!--<dependency>-->
  29. <!--<groupId>com.baomidou</groupId>-->
  30. <!--<artifactId>mybatis-plus-extension</artifactId>-->
  31. <!--<version>3.1.2</version>-->
  32. <!--</dependency>-->
  33. <dependency>
  34. <groupId>javax.servlet</groupId>
  35. <artifactId>javax.servlet-api</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-pool2</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>commons-net</groupId>
  43. <artifactId>commons-net</artifactId>
  44. <version>3.6</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>commons-beanutils</groupId>
  48. <artifactId>commons-beanutils</artifactId>
  49. <version>1.9.3</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-webmvc</artifactId>
  54. <scope>provided</scope>
  55. </dependency>
  56. <!--<dependency>-->
  57. <!--<groupId>io.swagger</groupId>-->
  58. <!--<artifactId>swagger-models</artifactId>-->
  59. <!--<version>${swaggerold.version}</version>-->
  60. <!--</dependency>-->
  61. <!--二维码 -->
  62. <dependency>
  63. <groupId>com.google.zxing</groupId>
  64. <artifactId>core</artifactId>
  65. <version>${zxing.version}</version>
  66. </dependency>
  67. <!--PDF-->
  68. <dependency>
  69. <groupId>com.itextpdf</groupId>
  70. <artifactId>itextpdf</artifactId>
  71. <version>${itextpdf.version}</version>
  72. </dependency>
  73. </dependencies>
  74. </project>