Fork me on GitHub

Maven Central

Maven integration

The current stable release is nom-tam-fits 1.19.1 for Java 8 and higher.

To include nom-tam-fits into an existing project use the library published on Maven Central.

For Maven projects add the following to your dependencies:

<dependency>
  <groupId>gov.nasa.gsfc.heasarc</groupId>
  <artifactId>nom-tam-fits</artifactId>
  <version>1.19.1</version>
</dependency>

If you want to use the bleeding edge version of nom-tam-fits, you can get it from sonatype. Add the the into your pom.xml, and modify xxxxx- to indicate the current SNAPSHOT version of nom-tam-fits (as it is defined in the nom-tam-fits' pom.xml).

<dependencies>
  <dependency>
    <groupId>gov.nasa.gsfc.heasarc</groupId>
    <artifactId>nom-tam-fits</artifactId>
    <version>xxxxx-SNAPSHOT</version>
  </dependency>
</dependencies>
...
<repositories>
  <repository>
    <id>sonatype-snapshots</id>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>