MVN

com.github.lucarosellini.rJava : JRIEngine

Maven & Gradle

Dec 18, 2014

JRI core · JRI is a Java/R Interface, which allows to run R inside Java applications as a single thread. Basically it loads R dynamic library into Java and provides a Java API to R functionality. It supports both simple calls to R functions and a full running REPL.

<dependency>
    <groupId>com.github.lucarosellini.rJava</groupId>
    <artifactId>JRIEngine</artifactId>
    <version>0.9-7</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.lucarosellini.rJava : JRIEngine to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.9-7

All Versions

Choose a version of com.github.lucarosellini.rJava : JRIEngine to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.9
JRIEngine-0.9-7

How to add a dependency to Maven

Add the following com.github.lucarosellini.rJava : JRIEngine maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.lucarosellini.rJava</groupId>
    <artifactId>JRIEngine</artifactId>
    <version>0.9-7</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.lucarosellini.rJava : JRIEngine gradle dependency to your build.gradle file:

implementation 'com.github.lucarosellini.rJava:JRIEngine:0.9-7'

Gradle Kotlin DSL: Add the following com.github.lucarosellini.rJava : JRIEngine gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.lucarosellini.rJava:JRIEngine:0.9-7")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.lucarosellini.rJava : JRIEngine sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.lucarosellini.rJava" % "JRIEngine" % "0.9-7"