pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. </plugins>
  23. </pluginManagement>
  24. </build>
  25. <dependencies>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <version>4.11</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.seleniumhq.selenium</groupId>
  33. <artifactId>selenium-java</artifactId>
  34. <version>2.45.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.selendroid</groupId>
  38. <version>0.9.0</version>
  39. <artifactId>selendroid-standalone</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.selendroid</groupId>
  43. <version>0.9.0</version>
  44. <artifactId>selendroid-client</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.appium</groupId>
  48. <artifactId>java-client</artifactId>
  49. <version>2.1.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-lang</groupId>
  53. <artifactId>commons-lang</artifactId>
  54. <version>2.6</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.httpcomponents</groupId>
  58. <artifactId>httpclient</artifactId>
  59. <version>4.3.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.google.android</groupId>
  63. <artifactId>android</artifactId>
  64. <version>4.1.1.4</version>
  65. <scope>provided</scope>
  66. </dependency>
  67. </dependencies>
  68. </project>