platform-3.4.0.pom 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>net.java.dev.jna</groupId>
  7. <artifactId>platform</artifactId>
  8. <packaging>jar</packaging>
  9. <version>3.4.0</version>
  10. <name>Java Native Access Platform</name>
  11. <description>Java Native Access Platform</description>
  12. <url>https://github.com/twall/jna</url>
  13. <licenses>
  14. <license>
  15. <name>LGPL, version 2.1</name>
  16. <url>http://creativecommons.org/licenses/LGPL/2.1/</url>
  17. <distribution>repo</distribution>
  18. </license>
  19. </licenses>
  20. <distributionManagement>
  21. <repository>
  22. <uniqueVersion>false</uniqueVersion>
  23. <id>java.net-m2-repository</id>
  24. <url>java-net:/maven2-repository~svn/trunk/repository/</url>
  25. </repository>
  26. </distributionManagement>
  27. <scm>
  28. <connection>scm:git:https://github.com/twall/jna</connection>
  29. <developerConnection>scm:git:ssh://git@github.com/twall/jna.git</developerConnection>
  30. <url>https://github.com/twall/jna</url>
  31. </scm>
  32. <developers>
  33. <developer>
  34. <id>twall</id>
  35. <name>Timotyh Wall</name>
  36. <roles>
  37. <role>Owner</role>
  38. </roles>
  39. </developer>
  40. </developers>
  41. <build>
  42. <plugins>
  43. <!-- fake out maven and install the binary artifact -->
  44. <plugin>
  45. <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
  46. <artifactId>maven-antrun-extended-plugin</artifactId>
  47. <executions>
  48. <execution>
  49. <phase>package</phase>
  50. <goals>
  51. <goal>run</goal>
  52. </goals>
  53. <configuration>
  54. <tasks>
  55. <!--<ant dir="." target="dist" />-->
  56. <attachArtifact file="dist/jna.jar"/>
  57. <attachArtifact file="dist/platform.jar" classifier="platform" type="jar"/>
  58. <attachArtifact file="dist/src-mvn.zip" classifier="sources" type="jar"/>
  59. </tasks>
  60. </configuration>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. </plugins>
  65. <extensions>
  66. <extension>
  67. <groupId>org.jvnet.wagon-svn</groupId>
  68. <artifactId>wagon-svn</artifactId>
  69. <version>1.12</version>
  70. </extension>
  71. </extensions>
  72. </build>
  73. </project>