hipparchus-core
Used in 27 components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
The Hipparchus core module
Snippets
<dependency> <groupId>org.hipparchus</groupId> <artifactId>hipparchus-core</artifactId> <version>2.3</version> </dependency>
Maven POM File
<?xml version="1.0"?> <!-- Licensed to the Hipparchus project under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The Hipparchus project licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <parent> <groupId>org.hipparchus</groupId> <artifactId>hipparchus</artifactId> <version>2.3</version> <relativePath>../hipparchus-parent</relativePath> </parent> <artifactId>hipparchus-core</artifactId> <packaging>jar</packaging> <name>Hipparchus::Core</name> <description>The Hipparchus core module</description> <scm> <!-- override the value from the parent pom with the *same* to avoid maven adding the module name at the end of the URL --> <connection>${project.parent.scm.connection}</connection> <developerConnection>${project.parent.scm.developerConnection}</developerConnection> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <hipparchus.implementation.build>${git.revision}; ${maven.build.timestamp}</hipparchus.implementation.build> <hipparchusParentDir>${basedir}/..</hipparchusParentDir> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <dependencies> <!-- dependencies are not inherited from parent pom so we have to repeat them here --> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${hipparchus.checkstyle.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>${hipparchus.maven-jxr-plugin.version}</version> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>${hipparchus.spotbugs-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${hipparchus.maven-javadoc-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${hipparchus.maven-checkstyle-plugin.version}</version> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${hipparchus.maven-surefire-report-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>${hipparchus.apache-rat-plugin.version}</version> <configuration> <excludes> <!-- MANIFEST files cannot have any comments, so we can't put license header --> <exclude>src/test/maxima/special/RealFunctionValidation/MANIFEST.txt</exclude> <!-- the following are test data files with specific syntax that cannot include Apache header (and the contained data is public, it is not owned by Apache) --> <exclude>src/test/resources/org/hipparchus/random/testData.txt</exclude> <exclude>src/test/resources/org/hipparchus/random/emptyFile.txt</exclude> <!-- direction numbers for Sobol generation from Frances Y. Kuo and Stephen Joe, available under a BSD-style license (see LICENSE.txt) --> <exclude>src/main/resources/assets/org/hipparchus/random/new-joe-kuo-6.1000</exclude> </excludes> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>release</id> </profile> <profile> <id>eclipse</id> </profile> </profiles> </project>