gson-fire-1.8.4.pom 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>io.gsonfire</groupId>
  7. <artifactId>gson-fire</artifactId>
  8. <version>1.8.4</version>
  9. <name>Gson on Fire!</name>
  10. <description>
  11. A java library that adds some very useful features to Gson, like Date serializing to unix timestamp or RFC3339, method (getter) serialization, pre and post processors and many more. Check out the documentation to learn how to use it!
  12. </description>
  13. <url>http://gsonfire.io</url>
  14. <licenses>
  15. <license>
  16. <name>Apache-2.0</name>
  17. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <name>Julio Viera</name>
  24. <email>julio.viera@gmail.com</email>
  25. <organizationUrl>https://github.com/julman99</organizationUrl>
  26. </developer>
  27. </developers>
  28. <scm>
  29. <connection>scm:git:git@github.com:julman99/gson-fire.git</connection>
  30. <developerConnection>scm:git:git@github.com:julman99/gson-fire.git</developerConnection>
  31. <url>git@github.com:julman99/gson-fire.git</url>
  32. </scm>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>3.1</version>
  39. <configuration>
  40. <source>1.6</source>
  41. <target>1.6</target>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-jar-plugin</artifactId>
  47. <version>2.2</version>
  48. <configuration>
  49. <archive>
  50. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  51. </archive>
  52. </configuration>
  53. <executions>
  54. <execution>
  55. <goals>
  56. <goal>test-jar</goal>
  57. </goals>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-gpg-plugin</artifactId>
  64. <version>1.6</version>
  65. <configuration>
  66. <keyname>CEEEC86D352AE2382EB7B3C278D3BC71ED7A3073</keyname>
  67. </configuration>
  68. <executions>
  69. <execution>
  70. <id>sign-artifacts</id>
  71. <phase>deploy</phase>
  72. <goals>
  73. <goal>sign</goal>
  74. </goals>
  75. </execution>
  76. </executions>
  77. </plugin>
  78. <plugin>
  79. <artifactId>maven-source-plugin</artifactId>
  80. <version>2.2.1</version>
  81. <executions>
  82. <execution>
  83. <id>attach-sources</id>
  84. <goals><goal>jar-no-fork</goal></goals>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. <plugin>
  89. <artifactId>maven-javadoc-plugin</artifactId>
  90. <version>2.9.1</version>
  91. <executions>
  92. <execution>
  93. <id>attach-javadocs</id>
  94. <goals><goal>jar</goal></goals>
  95. <configuration>
  96. <additionalparam>-Xdoclint:none</additionalparam>
  97. </configuration>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.sonatype.plugins</groupId>
  103. <artifactId>nexus-staging-maven-plugin</artifactId>
  104. <version>1.6.2</version>
  105. <extensions>true</extensions>
  106. <configuration>
  107. <serverId>ossrh</serverId>
  108. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  109. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  110. </configuration>
  111. </plugin>
  112. <plugin>
  113. <groupId>biz.aQute.bnd</groupId>
  114. <artifactId>bnd-maven-plugin</artifactId>
  115. <executions>
  116. <execution>
  117. <goals>
  118. <goal>bnd-process</goal>
  119. </goals>
  120. </execution>
  121. </executions>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. <dependencies>
  126. <dependency>
  127. <groupId>com.google.code.gson</groupId>
  128. <artifactId>gson</artifactId>
  129. <version>2.8.6</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>junit</groupId>
  133. <artifactId>junit</artifactId>
  134. <version>4.10</version>
  135. <scope>test</scope>
  136. </dependency>
  137. </dependencies>
  138. <properties>
  139. <!-- github server corresponds to entry in ~/.m2/settings.xml -->
  140. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  141. </properties>
  142. <distributionManagement>
  143. <repository>
  144. <id>ossrh</id>
  145. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  146. </repository>
  147. </distributionManagement>
  148. </project>