Download Rserve-1.8.1.jar file

Introduction

You can download Rserve-1.8.1.jar in this page.

License

GNU Lesser General Public License 2.1

Type List

Rserve-1.8.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.rosuda.REngine/Rserve/pom.properties
META-INF/maven/org.rosuda.REngine/Rserve/pom.xml
org.rosuda.REngine.Rserve.RConnection.class
org.rosuda.REngine.Rserve.RFileInputStream.class
org.rosuda.REngine.Rserve.RFileOutputStream.class
org.rosuda.REngine.Rserve.RSession.class
org.rosuda.REngine.Rserve.RserveException.class
org.rosuda.REngine.Rserve.protocol.REXPFactory.class
org.rosuda.REngine.Rserve.protocol.RPacket.class
org.rosuda.REngine.Rserve.protocol.RTalk.class
org.rosuda.REngine.Rserve.protocol.jcrypt.class

Pom

Rserve-1.8.1.pom file content.

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  
  <groupId>org.rosuda.REngine</groupId>
  <artifactId>Rserve</artifactId>
  <name>Rserve client back-end for REngine</name>
  <description>Rserve client back-end implementation for REngine to access R from Java via Rserve.</description>
  <version>1.8.1</version>

  <url>http://github.com/s-u/REngine</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <licenses>
    <license>
      <name>LGPL v2.1</name>
      <url>https://www.gnu.org/licenses/lgpl-2.1.txt</url>
    </license>
  </licenses>

  <developers>
    <developer>
      <name>Simon Urbanek</name>
      <email>simon.urbanek@R-project.org</email>
    </developer>
  </developers>

  <scm>
    <connection>scm:git:https://github.com/s-u/REngine.git</connection>
    <developerConnection>scm:git:git@github.com:s-u/REngine.git</developerConnection>
    <url>https://github.com/s-u/REngine/tree/master/Rserve</url>
  </scm>

  <dependencies>
    <dependency>
      <groupId>org.rosuda.REngine</groupId>
      <artifactId>REngine</artifactId>
      <version>2.1.0</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
	<artifactId>exec-maven-plugin</artifactId>
	<groupId>org.codehaus.mojo</groupId>
	<version>1.3.2</version>
	<executions>
	  <execution>
	    <id>create mvn structure</id>
	    <phase>generate-sources</phase>
	    <goals>
              <goal>exec</goal>
	    </goals>
	    <configuration>
              <executable>${basedir}/mkmvn.sh</executable>
	    </configuration>
	  </execution>
	</executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.2</version>
        <configuration>
          <source>1.4</source>
          <target>1.4</target>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>release</id>
      <build>
        <plugins>
	  <plugin>
	    <groupId>org.apache.maven.plugins</groupId>
	    <artifactId>maven-gpg-plugin</artifactId>
	    <version>1.6</version>
	    <executions>
              <execution>
		<id>sign-artifacts</id>
		<phase>verify</phase>
		<goals>
		  <goal>sign</goal>
		</goals>
              </execution>
	    </executions>
	  </plugin>
	  <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.10.2</version>
	    <executions>
	      <execution>
		<id>attach-javadocs</id>
		<goals>
		  <goal>jar</goal>
		</goals>
	      </execution>
	    </executions>
	  </plugin>
	  <plugin>
	    <groupId>org.apache.maven.plugins</groupId>
	    <artifactId>maven-source-plugin</artifactId>
	    <version>2.4</version>
	    <executions>
	      <execution>
		<id>attach-sources</id>
		<goals>
		  <goal>jar-no-fork</goal>
		</goals>
	      </execution>
	    </executions>
	  </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  
  <distributionManagement>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
  </distributionManagement>
</project>

POM Entry

<dependency>
   <groupId>org.rosuda.REngine</groupId>
   <artifactId>Rserve</artifactId>
   <version>1.8.1</version>
</dependency>

Download

If you think the following Rserve-1.8.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download Rserve-1.8.1.jar file




PreviousNext

Related