![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
org.hipparchus:hipparchus
Advanced tools
The Hipparchus library is a library of mathematical components. It started as a fork of Apache Commons Math.
The Hipparchus project is a library of lightweight, self-contained mathematics and statistics components addressing the most common problems not available in the Java programming language.
More information can be found on the homepage. The JavaDoc can be browsed. Questions related to the usage of Hipparchus should be posted to the users mailing list.
You can download source and binaries from our download page.
Alternatively you can pull it from the central Maven repositories using pom.xml
settings:
<project>
<properties>
<!-- change the Hipparchus version number to the one suiting your needs -->
<myprojectname.hipparchus.version>3.1</myprojectname.hipparchus.version>
</properties>
<dependencies>
<dependency>
<groupId>org.hipparchus</groupId>
<artifactId>hipparchus-core</artifactId>
<version>${myprojectname.hipparchus.version}</version>
</dependency>
<dependency>
<groupId>org.hipparchus</groupId>
<artifactId>hipparchus-clustering</artifactId>
<version>${myprojectname.hipparchus.version}</version>
</dependency>
<dependency>
<groupId>org.hipparchus</groupId>
<artifactId>hipparchus-fft</artifactId>
<version>${myprojectname.hipparchus.version}</version>
</dependency>
<dependency>
<groupId>org.hipparchus</groupId>
<artifactId>hipparchus-fitting</artifactId>
<version>${myprojectname.hipparchus.version}</version>
</dependency>
<dependency>
<groupId>org.hipparchus</groupId>
<artifactId>hipparchus-geometry</artifactId>
<version>${myprojectname.hipparchus.version}</version>
</dependency>
<dependency>
<groupId>org.hipparchus</groupId>
<artifactId>hipparchus-ode</artifactId>
<version>${myprojectname.hipparchus.version}</version>
</dependency>
<dependency>
<groupId>org.hipparchus</groupId>
<artifactId>hipparchus-optim</artifactId>
<version>${myprojectname.hipparchus.version}</version>
</dependency>
<dependency>
<groupId>org.hipparchus</groupId>
<artifactId>hipparchus-stat</artifactId>
<version>${myprojectname.hipparchus.version}</version>
</dependency>
</dependencies>
</project>
If your project previously depended on Apache Commons Math and you want to switch to Hipparchus, you can also add the temporary migration jar
<dependency>
<groupId>org.hipparchus</groupId>
<artifactId>hipparchus-migration</artifactId>
<version>${myprojectname.hipparchus.version}</version>
</dependency>
There are some guidelines which will make applying contributions easier for us. Please read through our contributing guidelines.
To contact us, use the shared forum where several categories are dedicated to Hipparchus.
Code is under the Apache Licence v2.
FAQs
The Hipparchus library is a library of mathematical components. It started as a fork of Apache Commons Math.
We found that org.hipparchus:hipparchus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.