kryo-serializers-0.45.pom 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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.45</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.7</source>
  59. <target>1.7</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="[5.0.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-jar-plugin</artifactId>
  86. <configuration>
  87. <archive>
  88. <manifestEntries>
  89. <Automatic-Module-Name>de.javakaffee.kryoserializers</Automatic-Module-Name>
  90. </manifestEntries>
  91. </archive>
  92. </configuration>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-javadoc-plugin</artifactId>
  97. <version>2.10.3</version>
  98. <configuration>
  99. <!-- required for java8, so that javadoc errors don't fail the build -->
  100. <additionalparam>-Xdoclint:none</additionalparam>
  101. </configuration>
  102. </plugin>
  103. <plugin>
  104. <groupId>org.codehaus.mojo</groupId>
  105. <artifactId>cobertura-maven-plugin</artifactId>
  106. <version>2.7</version>
  107. <configuration>
  108. <formats>
  109. <format>html</format>
  110. <format>xml</format>
  111. </formats>
  112. </configuration>
  113. </plugin>
  114. <plugin>
  115. <groupId>org.eluder.coveralls</groupId>
  116. <artifactId>coveralls-maven-plugin</artifactId>
  117. <version>4.1.0</version>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. <reporting>
  122. <excludeDefaults>true</excludeDefaults>
  123. <plugins>
  124. <plugin>
  125. <artifactId>maven-project-info-reports-plugin</artifactId>
  126. <version>2.4</version>
  127. <reportSets>
  128. <reportSet>
  129. <id>sunlink</id>
  130. <reports>
  131. <report>javadoc</report>
  132. </reports>
  133. <inherited>true</inherited>
  134. <configuration>
  135. <links>
  136. <link>http://download.oracle.com/javase/7/docs/api/</link>
  137. </links>
  138. </configuration>
  139. </reportSet>
  140. </reportSets>
  141. </plugin>
  142. <plugin>
  143. <groupId>org.apache.maven.plugins</groupId>
  144. <artifactId>maven-jxr-plugin</artifactId>
  145. <version>2.2</version>
  146. </plugin>
  147. <plugin>
  148. <groupId>org.codehaus.mojo</groupId>
  149. <artifactId>findbugs-maven-plugin</artifactId>
  150. <version>2.3.2</version>
  151. <configuration>
  152. <findbugsXmlOutput>true</findbugsXmlOutput>
  153. <threshold>Normal</threshold> <!-- High|Normal|Low|Exp|Ignore -->
  154. <effort>Max</effort><!-- Min|Default|Max -->
  155. <onlyAnalyze>de.javakaffee.kryoserializers.-</onlyAnalyze>
  156. <debug>false</debug>
  157. </configuration>
  158. </plugin>
  159. </plugins>
  160. </reporting>
  161. <properties>
  162. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  163. <slf4j.version>1.5.8</slf4j.version>
  164. </properties>
  165. <dependencyManagement>
  166. <dependencies>
  167. <dependency>
  168. <groupId>org.slf4j</groupId>
  169. <artifactId>slf4j-api</artifactId>
  170. <version>${slf4j.version}</version>
  171. <scope>test</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>junit</groupId>
  175. <artifactId>junit</artifactId>
  176. <version>4.7</version>
  177. <scope>test</scope>
  178. </dependency>
  179. </dependencies>
  180. </dependencyManagement>
  181. <dependencies>
  182. <!--
  183. kryo jars were uploaded as 3rd party jars following
  184. https://docs.sonatype.org/display/Repository/Uploading+3rd-party+Artifacts+to+Maven+Central
  185. this also required groupId com.googlecode (instead of com.esotericsoftware) due to project url
  186. -->
  187. <dependency>
  188. <groupId>com.esotericsoftware</groupId>
  189. <artifactId>kryo</artifactId>
  190. <version>5.0.0-RC1</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.google.protobuf</groupId>
  194. <artifactId>protobuf-java</artifactId>
  195. <version>3.6.1</version>
  196. <optional>true</optional>
  197. </dependency>
  198. <dependency>
  199. <groupId>joda-time</groupId>
  200. <artifactId>joda-time</artifactId>
  201. <version>1.6.2</version>
  202. <optional>true</optional>
  203. </dependency>
  204. <dependency>
  205. <groupId>cglib</groupId>
  206. <artifactId>cglib</artifactId>
  207. <version>3.1</version>
  208. <optional>true</optional>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.apache.wicket</groupId>
  212. <artifactId>wicket</artifactId>
  213. <version>1.4.17</version>
  214. <optional>true</optional>
  215. </dependency>
  216. <dependency>
  217. <groupId>com.google.guava</groupId>
  218. <artifactId>guava</artifactId>
  219. <version>17.0</version>
  220. <optional>true</optional>
  221. </dependency>
  222. <dependency>
  223. <groupId>com.github.andrewoma.dexx</groupId>
  224. <artifactId>collection</artifactId>
  225. <version>0.6</version>
  226. <optional>true</optional>
  227. </dependency>
  228. <!-- Testing -->
  229. <dependency>
  230. <groupId>org.testng</groupId>
  231. <artifactId>testng</artifactId>
  232. <version>6.8.21</version>
  233. <scope>test</scope>
  234. </dependency>
  235. <!-- Required for CGLibProxySerializerTest -->
  236. <dependency>
  237. <groupId>junit</groupId>
  238. <artifactId>junit</artifactId>
  239. <scope>test</scope>
  240. </dependency>
  241. <dependency>
  242. <!-- for tests with WicketTester -->
  243. <groupId>javax.servlet</groupId>
  244. <artifactId>servlet-api</artifactId>
  245. <version>2.5</version>
  246. <scope>test</scope>
  247. </dependency>
  248. <!-- by WicketTester required but not pulled in -->
  249. <dependency>
  250. <groupId>org.slf4j</groupId>
  251. <artifactId>slf4j-simple</artifactId>
  252. <version>${slf4j.version}</version>
  253. <scope>test</scope>
  254. </dependency>
  255. <dependency>
  256. <!-- test with some Integer subtype -->
  257. <groupId>commons-lang</groupId>
  258. <artifactId>commons-lang</artifactId>
  259. <version>2.4</version>
  260. <scope>test</scope>
  261. </dependency>
  262. </dependencies>
  263. <repositories>
  264. <!-- Required for TestNG -->
  265. <repository>
  266. <id>jcenter</id>
  267. <name>bintray</name>
  268. <url>http://jcenter.bintray.com</url>
  269. </repository>
  270. <!--
  271. kryo jars were uploaded as 3rd party jars following
  272. https://docs.sonatype.org/display/Repository/Uploading+3rd-party+Artifacts+to+Maven+Central
  273. and are now available in maven central
  274. -->
  275. </repositories>
  276. </project>