pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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.owncloud</groupId>
  7. <artifactId>androidtest</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <build>
  10. <pluginManagement>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-surefire-plugin</artifactId>
  15. <version>2.18.1</version>
  16. <configuration>
  17. <includes>
  18. <include>**/*Test**.java</include>
  19. </includes>
  20. </configuration>
  21. </plugin>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <version>3.3</version>
  26. <configuration>
  27. <source>1.7</source>
  28. <target>1.7</target>
  29. </configuration>
  30. </plugin>
  31. </plugins>
  32. </pluginManagement>
  33. </build>
  34. <dependencies>
  35. <dependency>
  36. <groupId>junit</groupId>
  37. <artifactId>junit</artifactId>
  38. <version>4.13.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.seleniumhq.selenium</groupId>
  42. <artifactId>selenium-java</artifactId>
  43. <version>2.45.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.selendroid</groupId>
  47. <version>0.9.0</version>
  48. <artifactId>selendroid-standalone</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.selendroid</groupId>
  52. <version>0.9.0</version>
  53. <artifactId>selendroid-client</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.appium</groupId>
  57. <artifactId>java-client</artifactId>
  58. <version>2.2.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-lang</groupId>
  62. <artifactId>commons-lang</artifactId>
  63. <version>2.6</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.httpcomponents</groupId>
  67. <artifactId>httpclient</artifactId>
  68. <version>4.3.6</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.google.android</groupId>
  72. <artifactId>android</artifactId>
  73. <version>4.1.1.4</version>
  74. <scope>provided</scope>
  75. </dependency>
  76. </dependencies>
  77. </project>