pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.unis.springcloud</groupId>
  6. <artifactId>parent</artifactId>
  7. <version>0.0.4-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>common</artifactId>
  10. <version>1.0.0</version>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.hibernate</groupId>
  14. <artifactId>hibernate-validator</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>commons-beanutils</groupId>
  18. <artifactId>commons-beanutils</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-fileupload</groupId>
  22. <artifactId>commons-fileupload</artifactId>
  23. <version>1.3.3</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>commons-lang</groupId>
  28. <artifactId>commons-lang</artifactId>
  29. <version>2.6</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.tomcat.embed</groupId>
  33. <artifactId>tomcat-embed-core</artifactId>
  34. <version>8.5.31</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.springfox</groupId>
  38. <artifactId>springfox-swagger2</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.springfox</groupId>
  42. <artifactId>springfox-swagger-ui</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>javax.servlet</groupId>
  46. <artifactId>javax.servlet-api</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework</groupId>
  50. <artifactId>spring-web</artifactId>
  51. <version>5.0.8.RELEASE</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.poi</groupId>
  55. <artifactId>poi-ooxml</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>io.jsonwebtoken</groupId>
  59. <artifactId>jjwt</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.commons</groupId>
  63. <artifactId>commons-pool2</artifactId>
  64. </dependency>
  65. <dependency><!-- 缩略图生成工具 -->
  66. <groupId>net.coobird</groupId>
  67. <artifactId>thumbnailator</artifactId>
  68. <version>0.4.8</version>
  69. </dependency>
  70. <dependency><!-- 汉字拼音处理工具 -->
  71. <groupId>com.belerweb</groupId>
  72. <artifactId>pinyin4j</artifactId>
  73. <version>2.5.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>javax.persistence</groupId>
  77. <artifactId>persistence-api</artifactId>
  78. <version>1.0.2</version>
  79. <scope>provided</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. <version>1.18.8</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.github.pagehelper</groupId>
  88. <artifactId>pagehelper-spring-boot-starter</artifactId>
  89. <version>${pagehelper.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>net.sourceforge.jexcelapi</groupId>
  93. <artifactId>jxl</artifactId>
  94. <version>2.6.12</version>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>log4j</groupId>
  98. <artifactId>log4j</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-lang3</artifactId>
  105. <version>3.5</version>
  106. </dependency>
  107. </dependencies>
  108. <build>
  109. <finalName>common</finalName>
  110. </build>
  111. </project>