You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 jaren geleden
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <artifactId>slidingmenu</artifactId>
  5. <name>SlidingMenu</name>
  6. <packaging>apklib</packaging>
  7. <parent>
  8. <groupId>com.jeremyfeinstein.slidingmenu</groupId>
  9. <artifactId>parent</artifactId>
  10. <version>1.3-SNAPSHOT</version>
  11. <relativePath>../pom.xml</relativePath>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.google.android</groupId>
  16. <artifactId>android</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.google.android</groupId>
  20. <artifactId>support-v4</artifactId>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <sourceDirectory>src</sourceDirectory>
  25. <plugins>
  26. <plugin>
  27. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  28. <artifactId>android-maven-plugin</artifactId>
  29. <extensions>true</extensions>
  30. <configuration>
  31. <nativeLibrariesDirectory>ignored</nativeLibrariesDirectory>
  32. </configuration>
  33. </plugin>
  34. <plugin>
  35. <groupId>org.codehaus.mojo</groupId>
  36. <artifactId>build-helper-maven-plugin</artifactId>
  37. <version>1.7</version>
  38. <executions>
  39. <execution>
  40. <phase>package</phase>
  41. <goals>
  42. <goal>attach-artifact</goal>
  43. </goals>
  44. <configuration>
  45. <artifacts>
  46. <artifact>
  47. <type>jar</type>
  48. <file>${project.build.directory}/${project.build.finalName}.jar</file>
  49. </artifact>
  50. </artifacts>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>