Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ export(C_plotXY)
export(.External.graphics)
export(par)
export(canvas)
importClass(org.jfxplot.PlotApp)
importClass(org.jfxplot.GraphicsState)
importClass(org.jfxplot.StageManager)


2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ Add the jar file, plot-0.1-SNAPSHOT.jar, to the renjin dependencies directory.

Load in library and create some test data

import(org.jfxplot.PlotApp)
import(org.jfxplot.GraphicsState)
library(org.jfxplot.plot)

x = seq(-2.0*pi,2.0*pi,4.0*pi/100)
Expand Down
15 changes: 12 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,29 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<renjin.version>0.8.2408</renjin.version>
</properties>

<distributionManagement>
<repository>
<id>jfxplot</id>
<name>Renjin Jfxplot Repository</name>
<url>https://nexus.bedatadriven.com/content/repositories/jfxplot/</url>
</repository>
</distributionManagement>

<dependencies>
<!-- the script engine is convenient even if you do not use it explicitly -->
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-script-engine</artifactId>
<version>0.7.0-RC7</version>
<version>${renjin.version}</version>
</dependency>
<!-- the hamcrest package is only required if you use it for unit tests -->
<dependency>
<groupId>org.renjin</groupId>
<artifactId>hamcrest</artifactId>
<version>0.7.0-RC7</version>
<version>${renjin.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -70,7 +79,7 @@
<plugin>
<groupId>org.renjin</groupId>
<artifactId>renjin-maven-plugin</artifactId>
<version>0.7.0-RC7</version>
<version>${renjin.version}</version>
<executions>
<execution>
<id>build</id>
Expand Down