fastutil/pom-core-model.xml
Sebastiano Vigna 9b62a5a1b6 Tweaking
2022-02-10 14:45:44 +01:00

40 lines
1.6 KiB
XML

<project>
<modelVersion>4.0.0</modelVersion>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil-core</artifactId>
<packaging>jar</packaging>
<name>fastutil</name>
<version>@VERSION@</version>
<description>fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists, and queues with a small memory footprint and fast operations; it provides also big (64-bit) arrays, sets, and lists, sorting algorithms, fast, practical I/O classes for binary and text files, and facilities for memory mapping large files. This jar (fastutil-core.jar) contains data structures based on integers, longs, doubles, and objects, only; fastutil.jar contains all classes. If you have both jars in your dependencies, this jar should be excluded.</description>
<url>http://fastutil.di.unimi.it/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git://github.com/vigna/fastutil.git</connection>
<url>https://github.com/vigna/fastutil</url>
</scm>
<developers>
<developer>
<id>vigna</id>
<name>Sebastiano Vigna</name>
<email>sebastiano.vigna@unimi.it</email>
</developer>
</developers>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>