Browse Source

initial

master
boB Rudis 4 years ago
commit
30b9ff37da
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. BIN
      .DS_Store
  2. 14
      .Rbuildignore
  3. 4
      .gitignore
  4. 24
      DESCRIPTION
  5. 3
      NAMESPACE
  6. 2
      NEWS.md
  7. 12
      R/graphstreamjars-package.R
  8. 21
      R/logging.r
  9. 5
      R/zzz.r
  10. 76
      README.Rmd
  11. 142
      README.md
  12. 21
      graphstreamjars.Rproj
  13. BIN
      inst/.DS_Store
  14. BIN
      inst/java/bcmail-jdk14-138.jar
  15. BIN
      inst/java/bcprov-jdk14-138.jar
  16. BIN
      inst/java/commons-math-2.1.jar
  17. BIN
      inst/java/commons-math3-3.4.1.jar
  18. BIN
      inst/java/graphstreamjars-1.0-SNAPSHOT.jar
  19. BIN
      inst/java/gs-algo-1.3.jar
  20. BIN
      inst/java/gs-core-1.3.jar
  21. BIN
      inst/java/gs-ui-1.3.jar
  22. BIN
      inst/java/hamcrest-core-1.3.jar
  23. BIN
      inst/java/itext-2.1.5.jar
  24. BIN
      inst/java/jcommon-1.0.17.jar
  25. BIN
      inst/java/jfreechart-1.0.14.jar
  26. BIN
      inst/java/junit-4.12.jar
  27. BIN
      inst/java/mbox2-1.0.jar
  28. BIN
      inst/java/pherd-1.0.jar
  29. BIN
      inst/java/scala-library-2.10.1.jar
  30. BIN
      inst/java/xml-apis-1.3.04.jar
  31. 17
      java/graphstreamjars/Makefile
  32. BIN
      java/graphstreamjars/deps/bcmail-jdk14-138.jar
  33. BIN
      java/graphstreamjars/deps/bcprov-jdk14-138.jar
  34. BIN
      java/graphstreamjars/deps/commons-math-2.1.jar
  35. BIN
      java/graphstreamjars/deps/commons-math3-3.4.1.jar
  36. BIN
      java/graphstreamjars/deps/gs-algo-1.3.jar
  37. BIN
      java/graphstreamjars/deps/gs-core-1.3.jar
  38. BIN
      java/graphstreamjars/deps/gs-ui-1.3.jar
  39. BIN
      java/graphstreamjars/deps/hamcrest-core-1.3.jar
  40. BIN
      java/graphstreamjars/deps/itext-2.1.5.jar
  41. BIN
      java/graphstreamjars/deps/jcommon-1.0.17.jar
  42. BIN
      java/graphstreamjars/deps/jfreechart-1.0.14.jar
  43. BIN
      java/graphstreamjars/deps/junit-4.12.jar
  44. BIN
      java/graphstreamjars/deps/mbox2-1.0.jar
  45. BIN
      java/graphstreamjars/deps/pherd-1.0.jar
  46. BIN
      java/graphstreamjars/deps/scala-library-2.10.1.jar
  47. BIN
      java/graphstreamjars/deps/xml-apis-1.3.04.jar
  48. 39
      java/graphstreamjars/pom.xml
  49. 13
      java/graphstreamjars/src/main/java/is/rud/graphstreamjars/App.java
  50. 38
      java/graphstreamjars/src/test/java/is/rud/graphstreamjars/AppTest.java
  51. BIN
      java/graphstreamjars/target/classes/is/rud/graphstreamjars/App.class
  52. BIN
      java/graphstreamjars/target/graphstreamjars-1.0-SNAPSHOT.jar
  53. 5
      java/graphstreamjars/target/maven-archiver/pom.properties
  54. 1
      java/graphstreamjars/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
  55. 1
      java/graphstreamjars/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
  56. 1
      java/graphstreamjars/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
  57. 1
      java/graphstreamjars/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
  58. 66
      java/graphstreamjars/target/surefire-reports/TEST-is.rud.graphstreamjars.AppTest.xml
  59. 4
      java/graphstreamjars/target/surefire-reports/is.rud.graphstreamjars.AppTest.txt
  60. BIN
      java/graphstreamjars/target/test-classes/is/rud/graphstreamjars/AppTest.class
  61. 34
      java/pom.xml
  62. BIN
      man/.DS_Store
  63. 14
      man/graphstreamjars.Rd
  64. BIN
      tests/.DS_Store
  65. 2
      tests/test-all.R
  66. 4
      tests/testthat/test-graphstreamjars.R

BIN
.DS_Store

Binary file not shown.

14
.Rbuildignore

@ -0,0 +1,14 @@
^LICENSE\.md$
^.*\.Rproj$
^\.Rproj\.user$
^\.travis\.yml$
^README\.*Rmd$
^README\.*html$
^NOTES\.*Rmd$
^NOTES\.*html$
^\.codecov\.yml$
^README_files$
^docs$
^CONDUCT\.md$
^\.bash_profile$
^java$

4
.gitignore

@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata

24
DESCRIPTION

@ -0,0 +1,24 @@
Package: graphstreamjars
Type: Package
Title: Java Archive Wrapper Supporting the 'graphstream' Package
Version: 1.3.0
Date: 2019-12-30
Authors@R: c(
person("Bob", "Rudis", role = c("aut", "cre"), email = "bob@rud.is")
)
Maintainer: Bob Rudis <bob@rud.is>
SystemRequirements: Java
Description: Contains all supporting JARs for working with the GraphStream Java APIs.
(<http://graphstream-project.org/>) Version number matches version number of included
'graphstreamjars' libraries.
URL: https://gitlab.com/hrbrmstr/graphstreamjars
BugReports: https://gitlab.com/hrbrmstr/graphstreamjars/issues
License: LGPL
Encoding: UTF-8
Suggests:
testthat,
covr
Depends:
R (>= 3.2.0),
rJava
RoxygenNote: 7.0.2

3
NAMESPACE

@ -0,0 +1,3 @@
# Generated by roxygen2: do not edit by hand
import(rJava)

2
NEWS.md

@ -0,0 +1,2 @@
1.3.0
* Initial release

12
R/graphstreamjars-package.R

@ -0,0 +1,12 @@
#' Java Archive Wrapper Supporting the 'graphstream' Package
#'
#' Contains all supporting JARs for working with the GraphStream Java APIs.
#' (<http://graphstream-project.org/>)Version number matches version number of included
#' 'graphstreamjars' libraries.
#'
#' @md
#' @name graphstreamjars
#' @docType package
#' @author Bob Rudis (bob@@rud.is)
#' @import rJava
NULL

21
R/logging.r

@ -0,0 +1,21 @@
#' @title rJava logging
#' @description Toggle verbose rJava logging
#' @details This function turns off the somewhat verbose rJava logging, most of which is
#' uninformative. It is called automatically when tabulizer is attached via
#' \code{library()}, \code{require}, etc. To keep logging on, load the package
#' namespace using \code{requireNamespace("tabulizer")} and reference functions
#' in using fully qualified references (e.g., \code{tabulizer::extract_tables()}.
#' @note This resets a global Java setting and may affect logging of other rJava operations,
#' requiring a restart of R.
#' @return `NULL`, invisibly.
#' @author Thomas J. Leeper <thosjleeper@@gmail.com>
#' @noRd
#' @md
#' @examples
#' \dontrun{
#' stop_logging()
#' }
stop_logging <- function() {
rJava::J("java.util.logging.LogManager")$getLogManager()$reset()
invisible(NULL)
}

5
R/zzz.r

@ -0,0 +1,5 @@
.onLoad <- function(libname, pkgname) {
rJava::.jpackage(pkgname, jars = "*", lib.loc = libname)
rJava::.jaddClassPath(dir(file.path(getwd(), "inst/java"), full.names = TRUE))
stop_logging()
}

76
README.Rmd

@ -0,0 +1,76 @@
---
output: rmarkdown::github_document
editor_options:
chunk_output_type: console
---
```{r pkg-knitr-opts, include=FALSE}
hrbrpkghelpr::global_opts()
```
```{r badges, results='asis', echo=FALSE, cache=FALSE}
hrbrpkghelpr::stinking_badges(repo_status = "WIP")
```
```{r description, results='asis', echo=FALSE, cache=FALSE}
hrbrpkghelpr::yank_title_and_description()
```
## What's Inside The Tin
The following functions are implemented:
```{r ingredients, results='asis', echo=FALSE, cache=FALSE}
hrbrpkghelpr::describe_ingredients()
```
## Installation
```{r install-ex, results='asis', echo=FALSE, cache=FALSE}
hrbrpkghelpr::install_block()
```
## Usage
```{r use-1}
library(rJava)
library(graphstreamjars)
packageVersion("graphstreamjars")
```
```{r use-2}
library(graphstreamjars)
SingleGraph <- J("org.graphstream.graph.implementations.SingleGraph")
(graph <- .jnew(SingleGraph, "Tutorial 1"))
graph$addNode("A")
graph$addNode("B")
graph$addNode("C")
graph$addEdge("AB", "A", "B")
graph$addEdge("BC", "B", "C")
graph$addEdge("CA", "C", "A")
graph$setStrict(FALSE)
graph$setAutoCreate(TRUE)
graph$addEdge("AB", "A", "B")
graph$addEdge("BC", "B", "C")
graph$addEdge("CA", "C", "A")
(A <- graph$getNode("A"))
(AB <- graph$getEdge("AB"))
ni <- graph$getNodeIterator()
while(ni$hasNext()) {
print(.jrcall(ni, "next"))
}
```
## `graphstreamjars` Metrics
```{r cloc, echo=FALSE}
cloc::cloc_pkg_md()
```

142
README.md

@ -0,0 +1,142 @@
# graphstreamjars
Java Archive Wrapper Supporting the ‘awsathena’ Package
## Description
Contains all supporting JARs for working with the GraphStream Java APIs.
(<http://graphstream-project.org/>). Version number matches version
number of included ‘graphstreamjars’ libraries.
## Installation
``` r
devtools::install_git("git@git.sr.ht:~hrbrmstr/graphstreamjars")
# OR
devtools::install_gitlab("hrbrmstr/graphstreamjars")
# OR
devtools::install_github("hrbrmstr/graphstreamjars")
```
## Usage
``` r
library(rJava)
```
##
## Attaching package: 'rJava'
## The following object is masked from 'package:bit':
##
## clone
``` r
library(graphstreamjars)
packageVersion("graphstreamjars")
```
## [1] '1.3.0'
``` r
library(graphstreamjars)
SingleGraph <- J("org.graphstream.graph.implementations.SingleGraph")
(graph <- .jnew(SingleGraph, "Tutorial 1"))
```
## [1] "Java-Object{Tutorial 1}"
``` r
graph$addNode("A")
```
## [1] "Java-Object{A}"
``` r
graph$addNode("B")
```
## [1] "Java-Object{B}"
``` r
graph$addNode("C")
```
## [1] "Java-Object{C}"
``` r
graph$addEdge("AB", "A", "B")
```
## [1] "Java-Object{AB[A--B]}"
``` r
graph$addEdge("BC", "B", "C")
```
## [1] "Java-Object{BC[B--C]}"
``` r
graph$addEdge("CA", "C", "A")
```
## [1] "Java-Object{CA[C--A]}"
``` r
graph$setStrict(FALSE)
graph$setAutoCreate(TRUE)
graph$addEdge("AB", "A", "B")
```
## [1] "Java-Object{AB[A--B]}"
``` r
graph$addEdge("BC", "B", "C")
```
## [1] "Java-Object{BC[B--C]}"
``` r
graph$addEdge("CA", "C", "A")
```
## [1] "Java-Object{CA[C--A]}"
``` r
(A <- graph$getNode("A"))
```
## [1] "Java-Object{A}"
``` r
(AB <- graph$getEdge("AB"))
```
## [1] "Java-Object{AB[A--B]}"
``` r
ni <- graph$getNodeIterator()
while(ni$hasNext()) {
print(.jrcall(ni, "next"))
}
```
## [1] "Java-Object{A}"
## [1] "Java-Object{B}"
## [1] "Java-Object{C}"
## `graphstreamjars` Metrics
| Lang | \# Files | (%) | LoC | (%) | Blank lines | (%) | \# Lines | (%) |
| :---- | -------: | ---: | --: | ---: | ----------: | ---: | -------: | ---: |
| XML | 1 | 0.08 | 66 | 0.32 | 0 | 0.00 | 0 | 0.00 |
| Maven | 2 | 0.17 | 58 | 0.28 | 9 | 0.23 | 6 | 0.08 |
| Java | 2 | 0.17 | 28 | 0.14 | 5 | 0.13 | 18 | 0.24 |
| Rmd | 1 | 0.08 | 27 | 0.13 | 20 | 0.51 | 24 | 0.32 |
| R | 5 | 0.42 | 15 | 0.07 | 1 | 0.03 | 28 | 0.37 |
| make | 1 | 0.08 | 13 | 0.06 | 4 | 0.10 | 0 | 0.00 |

21
graphstreamjars.Rproj

@ -0,0 +1,21 @@
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: Sweave
LaTeX: pdfLaTeX
StripTrailingWhitespace: Yes
BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageBuildArgs: --resave-data
PackageRoxygenize: rd,collate,namespace

BIN
inst/.DS_Store

Binary file not shown.

BIN
inst/java/bcmail-jdk14-138.jar

Binary file not shown.

BIN
inst/java/bcprov-jdk14-138.jar

Binary file not shown.

BIN
inst/java/commons-math-2.1.jar

Binary file not shown.

BIN
inst/java/commons-math3-3.4.1.jar

Binary file not shown.

BIN
inst/java/graphstreamjars-1.0-SNAPSHOT.jar

Binary file not shown.

BIN
inst/java/gs-algo-1.3.jar

Binary file not shown.

BIN
inst/java/gs-core-1.3.jar

Binary file not shown.

BIN
inst/java/gs-ui-1.3.jar

Binary file not shown.

BIN
inst/java/hamcrest-core-1.3.jar

Binary file not shown.

BIN
inst/java/itext-2.1.5.jar

Binary file not shown.

BIN
inst/java/jcommon-1.0.17.jar

Binary file not shown.

BIN
inst/java/jfreechart-1.0.14.jar

Binary file not shown.

BIN
inst/java/junit-4.12.jar

Binary file not shown.

BIN
inst/java/mbox2-1.0.jar

Binary file not shown.

BIN
inst/java/pherd-1.0.jar

Binary file not shown.

BIN
inst/java/scala-library-2.10.1.jar

Binary file not shown.

BIN
inst/java/xml-apis-1.3.04.jar

Binary file not shown.

17
java/graphstreamjars/Makefile

@ -0,0 +1,17 @@
.PHONY: clean pkg deps run
pkg:
mvn --quiet package
cp target/graphstreamjars-1.0-SNAPSHOT.jar ../../inst/java
cp deps/*.jar ../../inst/java
clean:
mvn clean
deps:
mvn dependency:copy-dependencies -DoutputDirectory=deps
new:
mv pom.xml /tmp
mvn archetype:generate -DgroupId=is.rud.graphstreamjars -DartifactId=graphstreamjars -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
mv /tmp/pom.xml .

BIN
java/graphstreamjars/deps/bcmail-jdk14-138.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/bcprov-jdk14-138.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/commons-math-2.1.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/commons-math3-3.4.1.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/gs-algo-1.3.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/gs-core-1.3.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/gs-ui-1.3.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/hamcrest-core-1.3.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/itext-2.1.5.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/jcommon-1.0.17.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/jfreechart-1.0.14.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/junit-4.12.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/mbox2-1.0.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/pherd-1.0.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/scala-library-2.10.1.jar

Binary file not shown.

BIN
java/graphstreamjars/deps/xml-apis-1.3.04.jar

Binary file not shown.

39
java/graphstreamjars/pom.xml

@ -0,0 +1,39 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>is.rud.graphstreamjars</groupId>
<artifactId>graphstreamjars</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>graphstreamjars</name>
<url>http://maven.apache.org</url>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.graphstream/gs-core -->
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-core</artifactId>
<version>1.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.graphstream/gs-ui -->
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-ui</artifactId>
<version>1.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.graphstream/gs-algo -->
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-algo</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</project>

13
java/graphstreamjars/src/main/java/is/rud/graphstreamjars/App.java

@ -0,0 +1,13 @@
package is.rud.graphstreamjars;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}

38
java/graphstreamjars/src/test/java/is/rud/graphstreamjars/AppTest.java

@ -0,0 +1,38 @@
package is.rud.graphstreamjars;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class AppTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public AppTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( AppTest.class );
}
/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}

BIN
java/graphstreamjars/target/classes/is/rud/graphstreamjars/App.class

Binary file not shown.

BIN
java/graphstreamjars/target/graphstreamjars-1.0-SNAPSHOT.jar

Binary file not shown.

5
java/graphstreamjars/target/maven-archiver/pom.properties

@ -0,0 +1,5 @@
#Generated by Maven
#Mon Dec 30 08:00:21 EST 2019
groupId=is.rud.graphstreamjars
artifactId=graphstreamjars
version=1.0-SNAPSHOT

1
java/graphstreamjars/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst

@ -0,0 +1 @@
is/rud/graphstreamjars/App.class

1
java/graphstreamjars/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst

@ -0,0 +1 @@
/Users/hrbrmstr/packages/graphstreamjars/java/graphstreamjars/src/main/java/is/rud/graphstreamjars/App.java

1
java/graphstreamjars/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst

@ -0,0 +1 @@
is/rud/graphstreamjars/AppTest.class

1
java/graphstreamjars/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst

@ -0,0 +1 @@
/Users/hrbrmstr/packages/graphstreamjars/java/graphstreamjars/src/test/java/is/rud/graphstreamjars/AppTest.java

66
java/graphstreamjars/target/surefire-reports/TEST-is.rud.graphstreamjars.AppTest.xml

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" ?>
<testsuite tests="1" failures="0" name="is.rud.graphstreamjars.AppTest" time="0.002" errors="0" skipped="0">
<properties>
<property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/>
<property name="java.vm.version" value="11.0.3+12-LTS"/>
<property name="sun.boot.library.path" value="/Library/Java/JavaVirtualMachines/jdk-11.0.3.jdk/Contents/Home/lib"/>
<property name="gopherProxySet" value="false"/>
<property name="maven.multiModuleProjectDirectory" value="/Users/hrbrmstr/packages/graphstreamjars/java/graphstreamjars"/>
<property name="java.vm.vendor" value="Oracle Corporation"/>
<property name="java.vendor.url" value="http://java.oracle.com/"/>
<property name="guice.disable.misplaced.annotation.check" value="true"/>
<property name="path.separator" value=":"/>
<property name="java.vm.name" value="Java HotSpot(TM) 64-Bit Server VM"/>
<property name="sun.os.patch.level" value="unknown"/>
<property name="user.country" value="US"/>
<property name="sun.java.launcher" value="SUN_STANDARD"/>
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/>
<property name="user.dir" value="/Users/hrbrmstr/packages/graphstreamjars/java/graphstreamjars"/>
<property name="java.vm.compressedOopsMode" value="Zero based"/>
<property name="java.runtime.version" value="11.0.3+12-LTS"/>
<property name="java.awt.graphicsenv" value="sun.awt.CGraphicsEnvironment"/>
<property name="os.arch" value="x86_64"/>
<property name="java.io.tmpdir" value="/var/folders/4j/w_crq_vn0x5d512w08g2j_640000gn/T/"/>
<property name="line.separator" value="
"/>
<property name="java.vm.specification.vendor" value="Oracle Corporation"/>
<property name="os.name" value="Mac OS X"/>
<property name="classworlds.conf" value="/usr/local/Cellar/maven/3.6.3/libexec/bin/m2.conf"/>
<property name="sun.jnu.encoding" value="UTF-8"/>
<property name="java.library.path" value="/Users/hrbrmstr/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."/>
<property name="maven.conf" value="/usr/local/Cellar/maven/3.6.3/libexec/conf"/>
<property name="jdk.debug" value="release"/>
<property name="java.class.version" value="55.0"/>
<property name="java.specification.name" value="Java Platform API Specification"/>
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/>
<property name="os.version" value="10.15.3"/>
<property name="library.jansi.path" value="/usr/local/Cellar/maven/3.6.3/libexec/lib/jansi-native"/>
<property name="user.home" value="/Users/hrbrmstr"/>
<property name="user.timezone" value="America/New_York"/>
<property name="java.awt.printerjob" value="sun.lwawt.macosx.CPrinterJob"/>
<property name="file.encoding" value="UTF-8"/>
<property name="java.specification.version" value="11"/>
<property name="user.name" value="hrbrmstr"/>
<property name="java.class.path" value="/usr/local/Cellar/maven/3.6.3/libexec/boot/plexus-classworlds-2.6.0.jar"/>
<property name="org.slf4j.simpleLogger.defaultLogLevel" value="error"/>
<property name="java.vm.specification.version" value="11"/>
<property name="sun.arch.data.model" value="64"/>
<property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher --quiet package"/>
<property name="java.home" value="/Library/Java/JavaVirtualMachines/jdk-11.0.3.jdk/Contents/Home"/>
<property name="user.language" value="en"/>
<property name="java.specification.vendor" value="Oracle Corporation"/>
<property name="awt.toolkit" value="sun.lwawt.macosx.LWCToolkit"/>
<property name="java.vm.info" value="mixed mode"/>
<property name="java.version" value="11.0.3"/>
<property name="java.vendor" value="Oracle Corporation"/>
<property name="maven.home" value="/usr/local/Cellar/maven/3.6.3/libexec"/>
<property name="file.separator" value="/"/>
<property name="java.version.date" value="2019-04-16"/>
<property name="java.vendor.url.bug" value="http://bugreport.java.com/bugreport/"/>
<property name="sun.io.unicode.encoding" value="UnicodeBig"/>
<property name="sun.cpu.endian" value="little"/>
<property name="java.vendor.version" value="18.9"/>
<property name="sun.cpu.isalist" value=""/>
</properties>
<testcase classname="is.rud.graphstreamjars.AppTest" name="testApp" time="0.002"/>
</testsuite>

4
java/graphstreamjars/target/surefire-reports/is.rud.graphstreamjars.AppTest.txt

@ -0,0 +1,4 @@
-------------------------------------------------------------------------------
Test set: is.rud.graphstreamjars.AppTest
-------------------------------------------------------------------------------
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec

BIN
java/graphstreamjars/target/test-classes/is/rud/graphstreamjars/AppTest.class

Binary file not shown.

34
java/pom.xml

@ -0,0 +1,34 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>is.rud.graphstreamjars</groupId>
<artifactId>graphstreamjars</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>graphstreamjars</name>
<url>http://maven.apache.org</url>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.graphstream/gs-core -->
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-core</artifactId>
<version>1.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.graphstream/gs-ui -->
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-ui</artifactId>
<version>1.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.graphstream/gs-algo -->
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-algo</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</project>

BIN
man/.DS_Store

Binary file not shown.

14
man/graphstreamjars.Rd

@ -0,0 +1,14 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/graphstreamjars-package.R
\docType{package}
\name{graphstreamjars}
\alias{graphstreamjars}
\title{Java Archive Wrapper Supporting the 'graphstream' Package}
\description{
Contains all supporting JARs for working with the GraphStream Java APIs.
(\url{http://graphstream-project.org/})Version number matches version number of included
'graphstreamjars' libraries.
}
\author{
Bob Rudis (bob@rud.is)
}

BIN
tests/.DS_Store

Binary file not shown.

2
tests/test-all.R

@ -0,0 +1,2 @@
library(testthat)
test_check("graphstreamjars")

4
tests/testthat/test-graphstreamjars.R

@ -0,0 +1,4 @@
context("basic functionality")
test_that("we can do something", {
})
Loading…
Cancel
Save