How to add a dependency to Maven
Add the following org.opensextant : opensextant-xponents maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>org.opensextant</groupId>
<artifactId>opensextant-xponents</artifactId>
<version>3.6.5</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following org.opensextant : opensextant-xponents gradle dependency to your build.gradle
file:
implementation 'org.opensextant:opensextant-xponents:3.6.5'
Gradle Kotlin DSL: Add the following org.opensextant : opensextant-xponents gradle kotlin dependency to your build.gradle.kts
file:
implementation("org.opensextant:opensextant-xponents:3.6.5")
How to add a dependency to SBT Scala
SBT Scala: Add the following org.opensextant : opensextant-xponents sbt scala dependency to your build.sbt
file:
libraryDependencies += "org.opensextant" % "opensextant-xponents" % "3.6.5"