<?xml version="1.0" encoding="UTF-8"?>
<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>io.github.terminological</groupId>
  <artifactId>r6-generator</artifactId>
  <version>0.5.0</version>
  <packaging>pom</packaging>
  <name>R6 generator</name>
  <description>R can use RJava or jsr223 to communicate with java. R also has a class system called R6. If you want to use a java library 
	  with native rJava or jsr223 in R there is potentially a lot of glue code needed, and R library specific packaging configuration required.
	  However if you don't mind writing an R-centric API in Java you can generate all of this glue code using a few java annotations 
	  and the normal javadoc annotations. This plugin aims to provide an annotation processor that writes that glue code and creates a fairly 
	  transparent connection between Java code and R code, with a minimum of hard work. The focus of this is streamlining the creation of R 
	  libraries by Java developers, rather than allowing access to arbitrary Java code from R. The ultimate aim of this plugin to allow 
	  java developers to provide simple APIs for their libraries, package their library using Maven, push it to github and for that to 
	  become seamlessly available as an R library, with a minimal amount of fuss. A focus is on trying to produce CI ready libraries 
	  tested with Github workflows and ready for CRAN submission.</description>
  <url>https://github.com/terminological/r6-generator</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Rob Challen</name>
      <email>rob@terminological.co.uk</email>
      <organization>terminological</organization>
      <organizationUrl>https://www.terminological.co.uk</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@github.com:terminological/r6-generator.git/r6-generator</connection>
    <developerConnection>scm:git:git@github.com:terminological/r6-generator.git/r6-generator</developerConnection>
    <url>https://github.com/terminological/r6-generator/r6-generator</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.7</version>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>
