pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>autodop</artifactId>
  7. <groupId>cn.reghao.autodop</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.netty</groupId>
  15. <artifactId>netty-all</artifactId>
  16. <version>4.1.36.Final</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.google.code.gson</groupId>
  20. <artifactId>gson</artifactId>
  21. <version>2.8.5</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.commons</groupId>
  25. <artifactId>commons-lang3</artifactId>
  26. <version>3.7</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-compress</artifactId>
  31. <version>1.19</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>commons-io</groupId>
  35. <artifactId>commons-io</artifactId>
  36. <version>2.6</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.httpcomponents</groupId>
  40. <artifactId>httpclient</artifactId>
  41. <version>4.5.8</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.httpcomponents</groupId>
  45. <artifactId>httpmime</artifactId>
  46. <version>4.5.8</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.sun.mail</groupId>
  50. <artifactId>javax.mail</artifactId>
  51. <version>RELEASE</version>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <extensions>
  56. <extension>
  57. <groupId>kr.motd.maven</groupId>
  58. <artifactId>os-maven-plugin</artifactId>
  59. <version>1.5.0.Final</version>
  60. </extension>
  61. </extensions>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <configuration>
  67. <source>1.8</source>
  68. <target>1.8</target>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>