base.R-2.0.0.pom
Some convenient wrappers for R routines invocation
Checksums
| MD5 | 10a29d8ce0d4bccff232921722e0685a |
| SHA1 | d206eb856f3a5200c9e1cef57addd62ada31a397 |
| SHA256 | 41c8a990a309e6c8b8ce869f4007387819b6a0ffe73980c6a1c373a6b7a183d1 |
| SHA512 | eac5568a38efdcdb6e68086a009863a48158c1fba7b269612e298008e247e16967a7f3315c631db434b357878d0ab69bb079911776f605d3ae3b6d0c54546ad7 |
POM
<!--
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.anrruf</groupId>
<artifactId>base.platform.parent</artifactId>
<version>2.0.0-SNAPSHOT-991587b</version>
</parent>
<artifactId>base.R</artifactId>
<version>2.0.0</version>
<name>Base R services</name>
<description>Some convenient wrappers for R routines invocation</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://@github.com/anr-ru/base.R.git</connection>
<url>https://github.com/anr-ru/base.R/</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>alex</id>
<name>Alexey Romanchuk</name>
<email>alexey.p.romanchuk@gmail.com</email>
<timezone>5</timezone>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>once</forkMode>
<!--suppress UnresolvedMavenProperty -->
<argLine>-Djava.library.path=${R_HOME}/site-library/rJava/jri/</argLine>
<!--argLine>-Djava.library.path=~/R/x86_64-redhat-linux-gnu-library/3.5/rJava/jri/</argLine-->
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.anrruf</groupId>
<artifactId>base.services</artifactId>
<version>2.0.0-SNAPSHOT-812506f</version>
</dependency>
<dependency>
<groupId>org.nuiton.thirdparty</groupId>
<artifactId>JRI</artifactId>
<version>${rjava.version}</version>
</dependency>
<dependency>
<groupId>org.anrruf</groupId>
<artifactId>base.tests</artifactId>
<version>2.0.0-SNAPSHOT-dc74922</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<rjava.version>0.9-9</rjava.version>
</properties>
</project>