pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>topro-public</artifactId>
  7. <groupId>com.xinxin.topro</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>topro-common</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>commons-httpclient</groupId>
  15. <artifactId>commons-httpclient</artifactId>
  16. <version>3.1</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>net.sf.json-lib</groupId>
  20. <artifactId>json-lib</artifactId>
  21. <version>2.4</version>
  22. <classifier>jdk15</classifier>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.httpcomponents</groupId>
  26. <artifactId>httpclient</artifactId>
  27. <version>4.5.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>commons-httpclient</groupId>
  31. <artifactId>commons-httpclient</artifactId>
  32. <version>3.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.commons</groupId>
  36. <artifactId>commons-lang3</artifactId>
  37. <version>3.0.1</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>commons-codec</groupId>
  41. <artifactId>commons-codec</artifactId>
  42. <version>1.9</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.belerweb</groupId>
  46. <artifactId>pinyin4j</artifactId>
  47. <version>2.5.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.github.pagehelper</groupId>
  51. <artifactId>pagehelper-spring-boot-starter</artifactId>
  52. <version>1.2.5</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.poi</groupId>
  56. <artifactId>poi</artifactId>
  57. <version>3.9</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.yaml</groupId>
  61. <artifactId>snakeyaml</artifactId>
  62. <version>1.17</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>javax.mail</groupId>
  66. <artifactId>mail</artifactId>
  67. <version>1.4</version>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.1</version>
  76. <configuration>
  77. <source>1.8</source>
  78. <target>1.8</target>
  79. <encoding>utf-8</encoding>
  80. </configuration>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>