| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ Copyright 2014 Higher Frequency Trading http://www.higherfrequencytrading.com
- ~
- ~ Licensed under the Apache License, Version 2.0 (the "License");
- ~ you may not use this file except in compliance with the License.
- ~ You may obtain a copy of the License at
- ~
- ~ http://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS,
- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ~ See the License for the specific language governing permissions and
- ~ limitations under the License.
- -->
- <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">
- <parent>
- <groupId>net.openhft</groupId>
- <artifactId>java-parent-pom</artifactId>
- <version>1.1.2</version>
- <relativePath />
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>zero-allocation-hashing</artifactId>
- <version>0.5</version>
- <name>Zero-allocation Hashing</name>
- <description>Zero-allocation, pretty fast implementations
- of non-cryptographic hash functions for byte sequences or blocks of memory</description>
- <inceptionYear>2014</inceptionYear>
- <dependencies>
- <dependency>
- <groupId>com.intellij</groupId>
- <artifactId>annotations</artifactId>
- <version>12.0</version>
- <scope>provided</scope>
- </dependency>
- <!-- test dependencies -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.11</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>18.0</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-scm-publish-plugin</artifactId>
- <configuration>
- <checkoutDirectory>${project.build.directory}/scmpublish/javadoc
- </checkoutDirectory>
- <checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}
- </checkinComment>
- <content>${project.reporting.outputDirectory}</content>
- <skipDeletedFiles>true</skipDeletedFiles>
- <pubScmUrl>scm:git:git@github.com:OpenHFT/zero-allocation-hashing</pubScmUrl>
- <scmBranch>gh-pages</scmBranch>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <scm>
- <url>scm:git:git@github.com:OpenHFT/zero-allocation-hashing.git</url>
- <connection>scm:git:git@github.com:OpenHFT/zero-allocation-hashing.git</connection>
- <developerConnection>scm:git:git@github.com:OpenHFT/zero-allocation-hashing.git
- </developerConnection>
- <tag>zero-allocation-hashing-0.5</tag>
- </scm>
- </project>
|