zero-allocation-hashing-0.5.pom 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2014 Higher Frequency Trading http://www.higherfrequencytrading.com
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <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">
  18. <parent>
  19. <groupId>net.openhft</groupId>
  20. <artifactId>java-parent-pom</artifactId>
  21. <version>1.1.2</version>
  22. <relativePath />
  23. </parent>
  24. <modelVersion>4.0.0</modelVersion>
  25. <artifactId>zero-allocation-hashing</artifactId>
  26. <version>0.5</version>
  27. <name>Zero-allocation Hashing</name>
  28. <description>Zero-allocation, pretty fast implementations
  29. of non-cryptographic hash functions for byte sequences or blocks of memory</description>
  30. <inceptionYear>2014</inceptionYear>
  31. <dependencies>
  32. <dependency>
  33. <groupId>com.intellij</groupId>
  34. <artifactId>annotations</artifactId>
  35. <version>12.0</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <!-- test dependencies -->
  39. <dependency>
  40. <groupId>junit</groupId>
  41. <artifactId>junit</artifactId>
  42. <version>4.11</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.google.guava</groupId>
  47. <artifactId>guava</artifactId>
  48. <version>18.0</version>
  49. <scope>test</scope>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. <configuration>
  58. <source>1.6</source>
  59. <target>1.6</target>
  60. </configuration>
  61. </plugin>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-scm-publish-plugin</artifactId>
  65. <configuration>
  66. <checkoutDirectory>${project.build.directory}/scmpublish/javadoc
  67. </checkoutDirectory>
  68. <checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}
  69. </checkinComment>
  70. <content>${project.reporting.outputDirectory}</content>
  71. <skipDeletedFiles>true</skipDeletedFiles>
  72. <pubScmUrl>scm:git:git@github.com:OpenHFT/zero-allocation-hashing</pubScmUrl>
  73. <scmBranch>gh-pages</scmBranch>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. <scm>
  79. <url>scm:git:git@github.com:OpenHFT/zero-allocation-hashing.git</url>
  80. <connection>scm:git:git@github.com:OpenHFT/zero-allocation-hashing.git</connection>
  81. <developerConnection>scm:git:git@github.com:OpenHFT/zero-allocation-hashing.git
  82. </developerConnection>
  83. <tag>zero-allocation-hashing-0.5</tag>
  84. </scm>
  85. </project>