4ec706f474
* Changes of version 2.3.2 + Added Automatic-Module-Name attribute to the manifest, for Java Platform Module System (request from AndreasWBartels). + Build: corrected an issue in JfmJavacHelper, which was always using ';' as classpath separator, instead of ':' by default and ';' only on Windows. + Little code cleanups. + Removed AllTests class (instead just launch tests from the IDE project). + Changed README to use Markdown. - Reproducible builds: use SOURCE_DATE_EPOCH for timestamp - JPMS: Add the Automatic-Module-Name attribute to the manifest. OBS-URL: https://build.opensuse.org/package/show/Java:packages/jafama?expand=0&rev=3
34 lines
1002 B
XML
34 lines
1002 B
XML
<?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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>net.jafama</groupId>
|
|
<artifactId>jafama</artifactId>
|
|
<version>2.3.2</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Java Fast Math</name>
|
|
<description>A (Strict)FastMath class with 1e-15ish accuracy.</description>
|
|
<url>http://sourceforge.net/projects/jafama/</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Jeff Hain</name>
|
|
<email>jeffhain@rocketmail.com</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<url>http://sourceforge.net/p/jafama/code/ci/master/tree/</url>
|
|
</scm>
|
|
|
|
</project>
|