pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. <groupId>com.edu</groupId>
  7. <artifactId>edu-common</artifactId>
  8. <packaging>jar</packaging>
  9. <version>1.0.0-SNAPSHOT</version>
  10. <name>edu-common</name>
  11. <url>http://maven.apache.org</url>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.meitong</groupId>
  15. <artifactId>framework-core</artifactId>
  16. <version>1.0.1-SNAPSHOT</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>net.sf.jxls</groupId>
  20. <artifactId>jxls-core</artifactId>
  21. <version>1.0.5</version>
  22. </dependency>
  23. <!-- JWT -->
  24. <dependency>
  25. <groupId>io.jsonwebtoken</groupId>
  26. <artifactId>jjwt</artifactId>
  27. <version>0.7.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.poi</groupId>
  31. <artifactId>poi</artifactId>
  32. <version>3.9</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.pagehelper</groupId>
  36. <artifactId>pagehelper</artifactId>
  37. <version>4.1.4</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.belerweb</groupId>
  41. <artifactId>pinyin4j</artifactId>
  42. <version>2.5.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>net.sf.json-lib</groupId>
  46. <artifactId>json-lib</artifactId>
  47. <version>2.4</version>
  48. <classifier>jdk15</classifier>
  49. </dependency>
  50. <!-- 图片压缩 -->
  51. <dependency>
  52. <groupId>net.coobird</groupId>
  53. <artifactId>thumbnailator</artifactId>
  54. <version>0.4.8</version>
  55. </dependency>
  56. <!-- apache.....start -->
  57. <dependency>
  58. <groupId>ant</groupId>
  59. <artifactId>ant</artifactId>
  60. <version>1.6.5</version>
  61. </dependency>
  62. <!-- apache.....end -->
  63. <dependency>
  64. <groupId>com.aliyun.oss</groupId>
  65. <artifactId>aliyun-sdk-oss</artifactId>
  66. <version>2.8.3</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.fasterxml.jackson.core</groupId>
  70. <artifactId>jackson-databind</artifactId>
  71. <version>2.9.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.fasterxml.jackson.core</groupId>
  75. <artifactId>jackson-annotations</artifactId>
  76. <version>2.9.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.fasterxml.jackson.core</groupId>
  80. <artifactId>jackson-core</artifactId>
  81. <version>2.9.1</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>javax.ws.rs</groupId>
  85. <artifactId>javax.ws.rs-api</artifactId>
  86. <version>2.1</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.redisson</groupId>
  90. <artifactId>redisson</artifactId>
  91. <version>3.7.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.aliyun.odps</groupId>
  95. <artifactId>odps-sdk-core</artifactId>
  96. <version>0.24.0-public</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.wutong</groupId>
  100. <artifactId>distribution-id-generator</artifactId>
  101. <version>1.0.0</version>
  102. <!-- 剔除logback日志包 -->
  103. <exclusions>
  104. <exclusion>
  105. <groupId>ch.qos.logback</groupId>
  106. <artifactId>logback-core</artifactId>
  107. </exclusion>
  108. <exclusion>
  109. <groupId>ch.qos.logback</groupId>
  110. <artifactId>logback-classic</artifactId>
  111. </exclusion>
  112. </exclusions>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.commons</groupId>
  116. <artifactId>commons-email</artifactId>
  117. <version>1.5</version>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-compiler-plugin</artifactId>
  125. <version>2.3.2</version>
  126. <configuration>
  127. <source>1.8</source>
  128. <target>1.8</target>
  129. <encoding>UTF-8</encoding>
  130. </configuration>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-source-plugin</artifactId>
  135. <version>2.1</version>
  136. <configuration>
  137. <attach>true</attach>
  138. </configuration>
  139. <executions>
  140. <execution>
  141. <phase>compile</phase>
  142. <goals>
  143. <goal>jar</goal>
  144. </goals>
  145. </execution>
  146. </executions>
  147. </plugin>
  148. </plugins>
  149. </build>
  150. </project>