1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.randelshofer</groupId>
<artifactId>fastdoubleparser</artifactId>
<version>2.0.1</version>
<packaging>jar</packaging>
<name>ch.randelshofer:fastdoubleparser</name>
<description>A Java port of Daniel Lemire's fast_float project.</description>
<url>https://github.com/wrandelshofer/FastDoubleParser</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/wrandelshofer/FastDoubleParser/blob/9a3ccae38254c9bf84b5e6a218a47675bf80ed9f/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Werner Randelshofer</name>
<email>werner.randelshofer@bluewin.ch</email>
<organization>ch.randelshofer</organization>
<organizationUrl>http://www.randelshofer.ch</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/wrandelshofer/FastDoubleParser.git</connection>
<developerConnection>scm:git:ssh://github.com/wrandelshofer/FastDoubleParser.git</developerConnection>
<url>https://github.com/wrandelshofer/FastDoubleParser/tree/master</url>
</scm>
<dependencies/>
</project>
|