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