New continuous integration platform for Orekit

Hi,

I thought this may be useful for Gradle users.

If you want to use the latest Orekit development branch snapshots in your project, you can add this in build.gradle:

repositories {
  maven {
        url "https://packages.orekit.org/repository/maven-snapshots"
        name "Orekit"
  }
}

dependencies {
    implementation 'org.orekit:orekit:11.0-SNAPSHOT'
    implementation 'org.orekit:orekit:11.0-SNAPSHOT:javadoc'
    implementation 'org.orekit:orekit:11.0-SNAPSHOT:sources'
}

This should also work for Hipparchus, e.g.:
implementation 'org.hipparchus:hipparchus-core:2.0-SNAPSHOT'

1 Like