pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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_r1</version>
  14. <scope>provided</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>android.support</groupId>
  18. <artifactId>compatibility-v4</artifactId>
  19. <version>19</version>
  20. <scope>system</scope>
  21. <systemPath>${basedir}/libs/compatibility-v4-19.jar</systemPath>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.roboguice</groupId>
  25. <artifactId>roboguice</artifactId>
  26. <version>2.0</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <finalName>${project.artifactId}</finalName>
  31. <sourceDirectory>src</sourceDirectory>
  32. <pluginManagement>
  33. <plugins>
  34. <plugin>
  35. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  36. <artifactId>android-maven-plugin</artifactId>
  37. <version>3.8.0</version>
  38. <extensions>true</extensions>
  39. </plugin>
  40. <plugin>
  41. <groupId>org.eclipse.m2e</groupId>
  42. <artifactId>lifecycle-mapping</artifactId>
  43. <version>1.0.0</version>
  44. <configuration>
  45. <lifecycleMappingMetadata>
  46. <pluginExecutions>
  47. <pluginExecution>
  48. <pluginExecutionFilter>
  49. <groupId>
  50. com.jayway.maven.plugins.android.generation2
  51. </groupId>
  52. <artifactId>
  53. android-maven-plugin
  54. </artifactId>
  55. <versionRange>
  56. [3.8.0,)
  57. </versionRange>
  58. <goals>
  59. <goal>consume-aar</goal>
  60. </goals>
  61. </pluginExecutionFilter>
  62. <action>
  63. <ignore></ignore>
  64. </action>
  65. </pluginExecution>
  66. </pluginExecutions>
  67. </lifecycleMappingMetadata>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </pluginManagement>
  72. <plugins>
  73. <plugin>
  74. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  75. <artifactId>android-maven-plugin</artifactId>
  76. <configuration>
  77. <sdk>
  78. <platform>19</platform>
  79. </sdk>
  80. </configuration>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>