aht-java8
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.fedorov-s-n.aht</groupId>
<artifactId>aht-java8</artifactId>
<version>1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.fedorov-s-n.aht</groupId>
<artifactId>aht-java8</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>Array Hash Tools</name>
<description>Concurrent lock-free collections with O(1) access time</description>
<url>https://github.com/fedorov-s-n/aht</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/fedorov-s-n/aht/blob/master/LICENSE</url>
<distribution>tools</distribution>
</license>
<license>
<name>GNU GPL v2</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
<distribution>tests</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/fedorov-s-n/aht</url>
<connection>scm:git:git://github.com/fedorov-s-n/aht.git</connection>
<developerConnection>scm:git:git@github.com:fedorov-s-n/aht.git</developerConnection>
</scm>
<developers>
<developer>
<email>fedorov.s.n@mail.ru</email>
<name>Sergey N. Fedorov</name>
<url>https://github.com/fedorov-s-n</url>
<id>fedorov-s-n</id>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.8</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<suiteXmlFiles>
<file>src/test/resources/testng.xml</file>
</suiteXmlFiles>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>