pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <groupId>cn.com.qmth.sdk</groupId>
  5. <artifactId>examcloud-java-sdk</artifactId>
  6. <version>v4.0.1-RELEASE</version>
  7. <packaging>jar</packaging>
  8. <parent>
  9. <groupId>cn.com.qmth.examcloud</groupId>
  10. <artifactId>examcloud-parent</artifactId>
  11. <version>v4.0.1-RELEASE</version>
  12. </parent>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-log4j2</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.squareup.okhttp3</groupId>
  25. <artifactId>okhttp</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.httpcomponents</groupId>
  29. <artifactId>httpclient</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.httpcomponents</groupId>
  33. <artifactId>httpmime</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.google.guava</groupId>
  37. <artifactId>guava</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.commons</groupId>
  41. <artifactId>commons-lang3</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>commons-lang</groupId>
  45. <artifactId>commons-lang</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-io</groupId>
  49. <artifactId>commons-io</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-collections</groupId>
  53. <artifactId>commons-collections</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.code.gson</groupId>
  57. <artifactId>gson</artifactId>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-surefire-plugin</artifactId>
  65. <configuration>
  66. <skip>true</skip>
  67. <skipTests>true</skipTests>
  68. </configuration>
  69. </plugin>
  70. <!--<plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-dependency-plugin</artifactId>
  73. <version>3.1.2</version>
  74. <configuration>
  75. <outputDirectory>D:\home\lib</outputDirectory>
  76. <excludeTransitive>false</excludeTransitive>
  77. <stripVersion>false</stripVersion>
  78. </configuration>
  79. </plugin>-->
  80. </plugins>
  81. </build>
  82. </project>