forked from jamiefolson/rJava-maven
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJRIEngine-0.9-7.pom
More file actions
41 lines (41 loc) · 1.34 KB
/
Copy pathJRIEngine-0.9-7.pom
File metadata and controls
41 lines (41 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.lucarosellini.rJava</groupId>
<artifactId>JRIEngine</artifactId>
<packaging>jar</packaging>
<name>JRI core</name>
<version>0.9-7</version>
<description>
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.
</description>
<url>http://www.rforge.net/Rserve/index.html</url>
<licenses>
<license>
<name>Lesser General Public License, Version 2.0</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>svn://svn.rforge.net/Rserve/trunk</url>
</scm>
<developers>
<developer>
<id>Author</id>
<name>Simon Urbanek</name>
<email>simon.urbanek@r-project.org</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.github.lucarosellini.rJava</groupId>
<artifactId>JRI</artifactId>
<version>0.9-7</version>
</dependency>
<dependency>
<groupId>com.github.lucarosellini.rJava</groupId>
<artifactId>REngine</artifactId>
<version>0.9-7</version>
</dependency>
</dependencies>
</project>