fst-2.57.pom 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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. <parent>
  4. <groupId>org.sonatype.oss</groupId>
  5. <artifactId>oss-parent</artifactId>
  6. <version>7</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>de.ruedigermoeller</groupId>
  10. <artifactId>fst</artifactId>
  11. <version>2.57</version>
  12. <packaging>bundle</packaging>
  13. <description>A fast java serialization drop in-replacement and some serialization based utils such as Structs and OffHeap Memory.</description>
  14. <url>http://ruedigermoeller.github.io/fast-serialization/</url>
  15. <licenses>
  16. <license>
  17. <name>Apache License 2.0</name>
  18. <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
  19. <distribution>repo</distribution>
  20. </license>
  21. </licenses>
  22. <scm>
  23. <url>https://github.com/RuedigerMoeller/fast-serialization/</url>
  24. <connection>scm:git:git://github.com/RuedigerMoeller/fast-serialization.git</connection>
  25. <developerConnection>scm:git:git@github.com:RuedigerMoeller/fast-serialization.git</developerConnection>
  26. </scm>
  27. <!--
  28. https://docs.sonatype.org/display/Repository/Central+Sync+Requirements
  29. https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide
  30. https://docs.sonatype.org/display/Repository/How+To+Generate+PGP+Signatures+With+Maven
  31. -->
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-compiler-plugin</artifactId>
  37. <version>2.3.2</version>
  38. <configuration>
  39. <source>1.7</source>
  40. <target>1.7</target>
  41. <!--<encoding>UTF-8</encoding>-->
  42. <debug>true</debug>
  43. <debuglevel>lines,vars,source</debuglevel> <!-- required to make structs work -->
  44. <optimize>false</optimize>
  45. <verbose>true</verbose>
  46. </configuration>
  47. <executions>
  48. <execution>
  49. <id>default-testCompile</id>
  50. <phase>test-compile</phase>
  51. <goals>
  52. <goal>testCompile</goal>
  53. </goals>
  54. <configuration>
  55. <skip>true</skip>
  56. </configuration>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-resources-plugin</artifactId>
  63. <version>2.5</version>
  64. <configuration>
  65. <encoding>UTF-8</encoding>
  66. </configuration>
  67. </plugin>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-javadoc-plugin</artifactId>
  71. <configuration>
  72. <additionalparam>-Xdoclint:none</additionalparam>
  73. </configuration>
  74. <executions>
  75. <execution>
  76. <id>attach-javadocs</id>
  77. <goals>
  78. <goal>jar</goal>
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-source-plugin</artifactId>
  86. <executions>
  87. <execution>
  88. <id>attach-sources</id>
  89. <goals>
  90. <goal>jar</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. <plugin>
  96. <groupId>org.apache.felix</groupId>
  97. <artifactId>maven-bundle-plugin</artifactId>
  98. <version>3.0.1</version>
  99. <extensions>true</extensions>
  100. <configuration>
  101. <instructions>
  102. <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
  103. <Bundle-Version>${project.version}</Bundle-Version>
  104. <Import-Package>*</Import-Package>
  105. <Export-Package>org.nustaq.*;-noimport:=true</Export-Package>
  106. <DynamicImport-Package>*</DynamicImport-Package>
  107. </instructions>
  108. </configuration>
  109. </plugin>
  110. </plugins>
  111. </build>
  112. <dependencies>
  113. <!-- required for createJSONConfiguration -->
  114. <dependency>
  115. <groupId>com.fasterxml.jackson.core</groupId>
  116. <artifactId>jackson-core</artifactId>
  117. <version>2.8.8</version>
  118. </dependency>
  119. <!-- only required if structs are used -->
  120. <dependency>
  121. <groupId>org.javassist</groupId>
  122. <artifactId>javassist</artifactId>
  123. <version>3.21.0-GA</version>
  124. </dependency>
  125. <!-- only required for android -->
  126. <dependency>
  127. <groupId>org.objenesis</groupId>
  128. <artifactId>objenesis</artifactId>
  129. <version>2.5.1</version>
  130. </dependency>
  131. <!-- test dependencies -->
  132. <!--<dependency>-->
  133. <!--<groupId>org.hamcrest</groupId>-->
  134. <!--<artifactId>hamcrest-junit</artifactId>-->
  135. <!--<version>2.0.0.0</version>-->
  136. <!--<scope>test</scope>-->
  137. <!--</dependency>-->
  138. <dependency>
  139. <groupId>org.bouncycastle</groupId>
  140. <artifactId>bcprov-jdk15on</artifactId>
  141. <version>1.51</version>
  142. <scope>test</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.cedarsoftware</groupId>
  146. <artifactId>java-util</artifactId>
  147. <version>1.4.0</version>
  148. <scope>test</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>junit</groupId>
  152. <artifactId>junit</artifactId>
  153. <version>4.8.1</version>
  154. <scope>test</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.openjdk.jmh</groupId>
  158. <artifactId>jmh-core</artifactId>
  159. <version>1.8</version>
  160. <scope>test</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.hdrhistogram</groupId>
  164. <artifactId>HdrHistogram</artifactId>
  165. <version>2.1.4</version>
  166. <scope>test</scope>
  167. </dependency>
  168. <dependency>
  169. <groupId>javax.json</groupId>
  170. <artifactId>javax.json-api</artifactId>
  171. <version>1.0</version>
  172. <scope>test</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.glassfish</groupId>
  176. <artifactId>javax.json</artifactId>
  177. <version>1.0.4</version>
  178. <scope>test</scope>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.cedarsoftware</groupId>
  182. <artifactId>java-util</artifactId>
  183. <version>1.9.0</version>
  184. <scope>test</scope>
  185. </dependency>
  186. </dependencies>
  187. </project>