pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. <parent>
  5. <groupId>org.sonatype.oss</groupId>
  6. <artifactId>oss-parent</artifactId>
  7. <version>5</version>
  8. </parent>
  9. <groupId>com.esotericsoftware.spine</groupId>
  10. <artifactId>spine-libgdx</artifactId>
  11. <packaging>jar</packaging>
  12. <version>3.7.94.2-SNAPSHOT</version>
  13. <name>spine-libgdx</name>
  14. <description>Spine Runtime for libGDX</description>
  15. <url>http://github.com/esotericsoftware/spine-runtimes</url>
  16. <issueManagement>
  17. <url>http://github.com/esotericsoftware/spine-runtimes/issues</url>
  18. </issueManagement>
  19. <licenses>
  20. <license>
  21. <name>Spine Runtime License v2.5</name>
  22. <url>https://github.com/EsotericSoftware/spine-runtimes/blob/master/LICENSE</url>
  23. <distribution>repo</distribution>
  24. </license>
  25. </licenses>
  26. <developers>
  27. <developer>
  28. <id>Developers</id>
  29. <url>https://github.com/EsotericSoftware/spine-runtimes/graphs/contributors</url>
  30. </developer>
  31. </developers>
  32. <scm>
  33. <connection>scm:git:https://github.com/EsotericSoftware/spine-runtimes.git</connection>
  34. <developerConnection>scm:git:https://github.com/EsotericSoftware/spine-runtimes.git</developerConnection>
  35. <url>https://github.com/EsotericSoftware/spine-runtimes/</url>
  36. <tag>HEAD</tag>
  37. </scm>
  38. <repositories>
  39. <repository>
  40. <id>nightlies</id>
  41. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  42. </repository>
  43. </repositories>
  44. <properties>
  45. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  46. <gdx.version>1.9.9</gdx.version>
  47. </properties>
  48. <build>
  49. <sourceDirectory>src</sourceDirectory>
  50. <testSourceDirectory>test</testSourceDirectory>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-source-plugin</artifactId>
  55. <executions>
  56. <execution>
  57. <id>attach-sources</id>
  58. <phase>generate-resources</phase>
  59. <goals>
  60. <goal>jar-no-fork</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <version>3.1</version>
  69. <configuration>
  70. <source>1.6</source>
  71. <target>1.6</target>
  72. <fork>true</fork>
  73. <showWarnings>true</showWarnings>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-javadoc-plugin</artifactId>
  79. <configuration>
  80. <additionalparam>-Xdoclint:none</additionalparam>
  81. <failOnError>false</failOnError>
  82. </configuration>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-release-plugin</artifactId>
  87. <version>2.5.3</version>
  88. <executions>
  89. <execution>
  90. <id>default</id>
  91. <goals>
  92. <goal>perform</goal>
  93. </goals>
  94. <configuration>
  95. <pomFile>spine-libgdx/spine-libgdx/pom.xml</pomFile>
  96. </configuration>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. <dependencies>
  103. <dependency>
  104. <groupId>com.badlogicgames.gdx</groupId>
  105. <artifactId>gdx</artifactId>
  106. <version>${gdx.version}</version>
  107. <scope>compile</scope>
  108. <optional>true</optional>
  109. </dependency>
  110. </dependencies>
  111. </project>