pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.0.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>net.mooctest.www</groupId>
  12. <artifactId>android_auto_test</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>android_auto_test</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.codehaus.groovy</groupId>
  22. <artifactId>groovy</artifactId>
  23. <version>2.5.4</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.powermock</groupId>
  27. <artifactId>powermock-module-junit4</artifactId>
  28. <version>2.0.2</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.powermock</groupId>
  32. <artifactId>powermock-core</artifactId>
  33. <version>2.0.2</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.powermock</groupId>
  37. <artifactId>powermock-api-mockito2</artifactId>
  38. <version>2.0.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <!-- https://mvnrepository.com/artifact/org.jdom/jdom2 -->
  46. <dependency>
  47. <groupId>org.jdom</groupId>
  48. <artifactId>jdom2</artifactId>
  49. <version>2.0.6</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>apkUtil</groupId>
  53. <artifactId>apkUtil</artifactId>
  54. <version>1.0.0</version>
  55. <scope>system</scope>
  56. <systemPath>${project.basedir}/lib/apkUtil.jar</systemPath>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.appium</groupId>
  60. <artifactId>java-client</artifactId>
  61. <version>6.1.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-web</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-data-redis</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-devtools</artifactId>
  74. <scope>runtime</scope>
  75. <optional>true</optional>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-configuration-processor</artifactId>
  80. <optional>true</optional>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.projectlombok</groupId>
  84. <artifactId>lombok</artifactId>
  85. <optional>true</optional>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-test</artifactId>
  90. <scope>test</scope>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>org.junit.vintage</groupId>
  94. <artifactId>junit-vintage-engine</artifactId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <dependency>
  99. <groupId>commons-io</groupId>
  100. <artifactId>commons-io</artifactId>
  101. <version>2.6</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.alibaba</groupId>
  105. <artifactId>fastjson</artifactId>
  106. <version>1.2.35</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.aliyun.oss</groupId>
  110. <artifactId>aliyun-sdk-oss</artifactId>
  111. <version>2.5.0</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.poi</groupId>
  115. <artifactId>poi</artifactId>
  116. <version>3.15</version>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. <configuration>
  125. <includeSystemScope>true</includeSystemScope>
  126. </configuration>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </project>