Advertisement
Guest User

Untitled

a guest
May 30th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <dependencies>
  2. <dependency>
  3. <groupId>com.google.android</groupId>
  4. <artifactId>android</artifactId>
  5. <version>4.1.1.4</version>
  6. <scope>provided</scope>
  7. </dependency>
  8. </dependencies>
  9.  
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  14. <artifactId>android-maven-plugin</artifactId>
  15. <version>3.9.0-rc.1</version>
  16. <configuration>
  17. <sdk>
  18. <platform>19</platform>
  19. </sdk>
  20. <deleteConflictingFiles>true</deleteConflictingFiles>
  21. <undeployBeforeDeploy>true</undeployBeforeDeploy>
  22. </configuration>
  23. <extensions>true</extensions>
  24. </plugin>
  25. <plugin>
  26. <artifactId>maven-compiler-plugin</artifactId>
  27. <version>3.1</version>
  28. <configuration>
  29. <source>1.6</source>
  30. <target>1.6</target>
  31. </configuration>
  32. </plugin>
  33. </plugins>
  34. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement