kryo-serializers-0.42.pom 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <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/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <!-- To be able to deploy snapshots/releases to sonatype / maven central: https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide -->
  4. <parent>
  5. <groupId>org.sonatype.oss</groupId>
  6. <artifactId>oss-parent</artifactId>
  7. <version>7</version>
  8. </parent>
  9. <groupId>de.javakaffee</groupId>
  10. <artifactId>kryo-serializers</artifactId>
  11. <version>0.42</version>
  12. <packaging>bundle</packaging>
  13. <name>kryo serializers</name>
  14. <description>
  15. Additional kryo (http://kryo.googlecode.com) serializers for standard jdk types (e.g. currency, jdk proxies) and some for external libs (e.g. joda time, cglib proxies, wicket).
  16. </description>
  17. <url>https://github.com/magro/kryo-serializers</url>
  18. <issueManagement>
  19. <system>github.com</system>
  20. <url>https://github.com/magro/kryo-serializers/issues</url>
  21. </issueManagement>
  22. <inceptionYear>2010</inceptionYear>
  23. <prerequisites>
  24. <maven>2.0.9</maven>
  25. </prerequisites>
  26. <licenses>
  27. <license>
  28. <name>The Apache Software License, Version 2.0</name>
  29. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  30. <distribution>repo</distribution>
  31. </license>
  32. </licenses>
  33. <scm>
  34. <connection>scm:git:git@github.com:magro/kryo-serializers.git</connection>
  35. <developerConnection>scm:git:git@github.com:magro/kryo-serializers.git</developerConnection>
  36. <url>git@github.com:magro/kryo-serializers.git</url>
  37. </scm>
  38. <developers>
  39. <developer>
  40. <id>martin.grotzke</id>
  41. <name>Martin Grotzke</name>
  42. <email>martin.grotzke@googlecode.com</email>
  43. <roles>
  44. <role>owner</role>
  45. <role>developer</role>
  46. </roles>
  47. <timezone>+1</timezone>
  48. </developer>
  49. </developers>
  50. <build>
  51. <pluginManagement>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-compiler-plugin</artifactId>
  56. <inherited>true</inherited>
  57. <configuration>
  58. <source>1.6</source>
  59. <target>1.6</target>
  60. <encoding>utf-8</encoding>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </pluginManagement>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.apache.felix</groupId>
  68. <artifactId>maven-bundle-plugin</artifactId>
  69. <version>2.4.0</version>
  70. <extensions>true</extensions>
  71. <configuration>
  72. <instructions>
  73. <Import-Package><![CDATA[
  74. com.esotericsoftware.kryo*;version="[3.0.3,4.0)",
  75. com.esotericsoftware.minlog*;version="[1.2,2.0)",
  76. sun.reflect;resolution:=optional,
  77. *
  78. ]]>
  79. </Import-Package>
  80. </instructions>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-javadoc-plugin</artifactId>
  86. <version>2.10.3</version>
  87. <configuration>
  88. <!-- required for java8, so that javadoc errors don't fail the build -->
  89. <additionalparam>-Xdoclint:none</additionalparam>
  90. </configuration>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.codehaus.mojo</groupId>
  94. <artifactId>cobertura-maven-plugin</artifactId>
  95. <version>2.7</version>
  96. <configuration>
  97. <formats>
  98. <format>html</format>
  99. <format>xml</format>
  100. </formats>
  101. </configuration>
  102. </plugin>
  103. <plugin>
  104. <groupId>org.eluder.coveralls</groupId>
  105. <artifactId>coveralls-maven-plugin</artifactId>
  106. <version>4.1.0</version>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. <reporting>
  111. <excludeDefaults>true</excludeDefaults>
  112. <plugins>
  113. <plugin>
  114. <artifactId>maven-project-info-reports-plugin</artifactId>
  115. <version>2.3.1</version>
  116. <reportSets>
  117. <reportSet>
  118. <id>sunlink</id>
  119. <reports>
  120. <report>javadoc</report>
  121. </reports>
  122. <inherited>true</inherited>
  123. <configuration>
  124. <links>
  125. <link>http://download.oracle.com/javase/6/docs/api/</link>
  126. </links>
  127. </configuration>
  128. </reportSet>
  129. </reportSets>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-jxr-plugin</artifactId>
  134. <version>2.2</version>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.codehaus.mojo</groupId>
  138. <artifactId>findbugs-maven-plugin</artifactId>
  139. <version>2.3.2</version>
  140. <configuration>
  141. <findbugsXmlOutput>true</findbugsXmlOutput>
  142. <threshold>Normal</threshold> <!-- High|Normal|Low|Exp|Ignore -->
  143. <effort>Max</effort><!-- Min|Default|Max -->
  144. <onlyAnalyze>de.javakaffee.kryoserializers.-</onlyAnalyze>
  145. <debug>false</debug>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </reporting>
  150. <properties>
  151. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  152. <slf4j.version>1.5.8</slf4j.version>
  153. </properties>
  154. <dependencyManagement>
  155. <dependencies>
  156. <dependency>
  157. <groupId>org.slf4j</groupId>
  158. <artifactId>slf4j-api</artifactId>
  159. <version>${slf4j.version}</version>
  160. <scope>test</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>junit</groupId>
  164. <artifactId>junit</artifactId>
  165. <version>4.7</version>
  166. <scope>test</scope>
  167. </dependency>
  168. </dependencies>
  169. </dependencyManagement>
  170. <dependencies>
  171. <!--
  172. kryo jars were uploaded as 3rd party jars following
  173. https://docs.sonatype.org/display/Repository/Uploading+3rd-party+Artifacts+to+Maven+Central
  174. this also required groupId com.googlecode (instead of com.esotericsoftware) due to project url
  175. -->
  176. <dependency>
  177. <groupId>com.esotericsoftware</groupId>
  178. <artifactId>kryo</artifactId>
  179. <version>4.0.0</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.google.protobuf</groupId>
  183. <artifactId>protobuf-java</artifactId>
  184. <version>2.6.1</version>
  185. <optional>true</optional>
  186. </dependency>
  187. <dependency>
  188. <groupId>joda-time</groupId>
  189. <artifactId>joda-time</artifactId>
  190. <version>1.6.2</version>
  191. <optional>true</optional>
  192. </dependency>
  193. <dependency>
  194. <groupId>cglib</groupId>
  195. <artifactId>cglib</artifactId>
  196. <version>3.1</version>
  197. <optional>true</optional>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.apache.wicket</groupId>
  201. <artifactId>wicket</artifactId>
  202. <version>1.4.17</version>
  203. <optional>true</optional>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.google.guava</groupId>
  207. <artifactId>guava</artifactId>
  208. <version>17.0</version>
  209. <optional>true</optional>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.github.andrewoma.dexx</groupId>
  213. <artifactId>collection</artifactId>
  214. <version>0.6</version>
  215. <optional>true</optional>
  216. </dependency>
  217. <!-- Testing -->
  218. <dependency>
  219. <groupId>org.testng</groupId>
  220. <artifactId>testng</artifactId>
  221. <version>6.8.21</version>
  222. <scope>test</scope>
  223. </dependency>
  224. <!-- Required for CGLibProxySerializerTest -->
  225. <dependency>
  226. <groupId>junit</groupId>
  227. <artifactId>junit</artifactId>
  228. <scope>test</scope>
  229. </dependency>
  230. <dependency>
  231. <!-- for tests with WicketTester -->
  232. <groupId>javax.servlet</groupId>
  233. <artifactId>servlet-api</artifactId>
  234. <version>2.5</version>
  235. <scope>test</scope>
  236. </dependency>
  237. <!-- by WicketTester required but not pulled in -->
  238. <dependency>
  239. <groupId>org.slf4j</groupId>
  240. <artifactId>slf4j-simple</artifactId>
  241. <version>${slf4j.version}</version>
  242. <scope>test</scope>
  243. </dependency>
  244. <dependency>
  245. <!-- test with some Integer subtype -->
  246. <groupId>commons-lang</groupId>
  247. <artifactId>commons-lang</artifactId>
  248. <version>2.4</version>
  249. <scope>test</scope>
  250. </dependency>
  251. </dependencies>
  252. <repositories>
  253. <!-- Required for TestNG -->
  254. <repository>
  255. <id>jcenter</id>
  256. <name>bintray</name>
  257. <url>http://jcenter.bintray.com</url>
  258. </repository>
  259. <!--
  260. kryo jars were uploaded as 3rd party jars following
  261. https://docs.sonatype.org/display/Repository/Uploading+3rd-party+Artifacts+to+Maven+Central
  262. and are now available in maven central
  263. -->
  264. </repositories>
  265. </project>