fst-2.29.pom 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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.29</version>
  12. <description>a fast java serialization drop in-replacement + some serialization based utils (Structs, OffHeap Memory)</description>
  13. <url>https://code.google.com/p/fast-serialization/</url>
  14. <licenses>
  15. <license>
  16. <name>LGPL 2.1</name>
  17. <url>http://www.gnu.org/licenses/lgpl.html</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <scm>
  22. <connection>scm:svn:https://fast-serialization.googlecode.com/svn/trunk/fast-serialization-read-only</connection>
  23. <developerConnection>scm:svn:https://fast-serialization.googlecode.com/svn/trunk/</developerConnection>
  24. <url>https://fast-serialization.googlecode.com/svn/trunk/</url>
  25. </scm>
  26. <!--
  27. https://docs.sonatype.org/display/Repository/Central+Sync+Requirements
  28. https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide
  29. https://docs.sonatype.org/display/Repository/How+To+Generate+PGP+Signatures+With+Maven
  30. -->
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <version>2.3.2</version>
  37. <configuration>
  38. <source>1.7</source>
  39. <target>1.7</target>
  40. <!--<encoding>UTF-8</encoding>-->
  41. <debug>true</debug>
  42. <debuglevel>lines,vars,source</debuglevel> <!-- required to make structs work -->
  43. <optimize>false</optimize>
  44. <verbose>true</verbose>
  45. </configuration>
  46. <executions>
  47. <execution>
  48. <id>default-testCompile</id>
  49. <phase>test-compile</phase>
  50. <goals>
  51. <goal>testCompile</goal>
  52. </goals>
  53. <configuration>
  54. <skip>true</skip>
  55. </configuration>
  56. </execution>
  57. </executions>
  58. </plugin>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-resources-plugin</artifactId>
  62. <version>2.5</version>
  63. <configuration>
  64. <encoding>UTF-8</encoding>
  65. </configuration>
  66. </plugin>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-javadoc-plugin</artifactId>
  70. <configuration>
  71. <additionalparam>-Xdoclint:none</additionalparam>
  72. </configuration>
  73. <executions>
  74. <execution>
  75. <id>attach-javadocs</id>
  76. <goals>
  77. <goal>jar</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-source-plugin</artifactId>
  85. <executions>
  86. <execution>
  87. <id>attach-sources</id>
  88. <goals>
  89. <goal>jar</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. <dependencies>
  97. <!-- required for createJSONConfiguration -->
  98. <dependency>
  99. <groupId>com.fasterxml.jackson.core</groupId>
  100. <artifactId>jackson-core</artifactId>
  101. <version>2.5.3</version>
  102. </dependency>
  103. <!-- only required if structs are used -->
  104. <dependency>
  105. <groupId>org.javassist</groupId>
  106. <artifactId>javassist</artifactId>
  107. <version>3.19.0-GA</version>
  108. </dependency>
  109. <!-- only required for android -->
  110. <dependency>
  111. <groupId>org.objenesis</groupId>
  112. <artifactId>objenesis</artifactId>
  113. <version>2.1</version>
  114. </dependency>
  115. <!-- test dependencies -->
  116. <dependency>
  117. <groupId>org.bouncycastle</groupId>
  118. <artifactId>bcprov-jdk15on</artifactId>
  119. <version>1.51</version>
  120. <scope>test</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.cedarsoftware</groupId>
  124. <artifactId>java-util</artifactId>
  125. <version>1.4.0</version>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>junit</groupId>
  130. <artifactId>junit</artifactId>
  131. <version>4.8.1</version>
  132. <scope>test</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.openjdk.jmh</groupId>
  136. <artifactId>jmh-core</artifactId>
  137. <version>1.8</version>
  138. <scope>test</scope>
  139. </dependency>
  140. </dependencies>
  141. </project>