pom.xml~ 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>de.tudarmstadt.informatik</groupId>
  5. <artifactId>hostage</artifactId>
  6. <version>2.0.0-SNAPSHOT</version>
  7. <packaging>apk</packaging>
  8. <name>HosTaGe</name>
  9. <dependencies>
  10. <dependency>
  11. <groupId>android</groupId>
  12. <artifactId>android</artifactId>
  13. <version>4.4.2_r2</version>
  14. <scope>provided</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>android.support</groupId>
  18. <artifactId>compatibility-v4</artifactId>
  19. <version>19.0.1</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.roboguice</groupId>
  23. <artifactId>roboguice</artifactId>
  24. <version>2.0</version>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <finalName>${project.artifactId}</finalName>
  29. <sourceDirectory>src</sourceDirectory>
  30. <pluginManagement>
  31. <plugins>
  32. <plugin>
  33. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  34. <artifactId>android-maven-plugin</artifactId>
  35. <version>3.8.0</version>
  36. <extensions>true</extensions>
  37. </plugin>
  38. <plugin>
  39. <groupId>org.eclipse.m2e</groupId>
  40. <artifactId>lifecycle-mapping</artifactId>
  41. <version>1.0.0</version>
  42. <configuration>
  43. <lifecycleMappingMetadata>
  44. <pluginExecutions>
  45. <pluginExecution>
  46. <pluginExecutionFilter>
  47. <groupId>
  48. com.jayway.maven.plugins.android.generation2
  49. </groupId>
  50. <artifactId>
  51. android-maven-plugin
  52. </artifactId>
  53. <versionRange>
  54. [3.8.0,)
  55. </versionRange>
  56. <goals>
  57. <goal>consume-aar</goal>
  58. </goals>
  59. </pluginExecutionFilter>
  60. <action>
  61. <ignore></ignore>
  62. </action>
  63. </pluginExecution>
  64. </pluginExecutions>
  65. </lifecycleMappingMetadata>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </pluginManagement>
  70. <plugins>
  71. <plugin>
  72. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  73. <artifactId>android-maven-plugin</artifactId>
  74. <configuration>
  75. <sdk>
  76. <platform>19.0.1</platform>
  77. </sdk>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>