Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <fest-android.version>1.0.7</fest-android.version>
  2. <robolectric.version>2.2</robolectric.version>
  3. <junit.version>4.8.2</junit.version>
  4. <android.test.version>4.2.2_r2</android.test.version>
  5.  
  6. <!-- Test Dependencies -->
  7. <dependency>
  8. <groupId>com.squareup</groupId>
  9. <artifactId>fest-android</artifactId>
  10. <version>${fest-android.version}</version>
  11. <scope>test</scope>
  12. </dependency>
  13. <dependency>
  14. <groupId>org.robolectric</groupId>
  15. <artifactId>robolectric</artifactId>
  16. <version>${robolectric.version}</version>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>${junit.version}</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>android</groupId>
  27. <artifactId>android</artifactId>
  28. <version>${android.test.version}</version>
  29. <scope>provided</scope>
  30. </dependency>
  31.  
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-surefire-plugin</artifactId>
  35. <version>2.6</version>
  36. <configuration>
  37. <argLine>-Xmx1024m</argLine>
  38. </configuration>
  39. </plugin>
  40.  
  41. <testSourceDirectory>test</testSourceDirectory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement