summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--pom.xml208
-rw-r--r--target/site/apidocs/allclasses-frame.html2
-rw-r--r--target/site/apidocs/allclasses-noframe.html2
-rw-r--r--target/site/apidocs/bjc/replpair/ReplError.html2
-rw-r--r--target/site/apidocs/bjc/replpair/ReplPair.html2
-rw-r--r--target/site/apidocs/bjc/replpair/StageStatus.html2
-rw-r--r--target/site/apidocs/bjc/replpair/class-use/ReplError.html2
-rw-r--r--target/site/apidocs/bjc/replpair/class-use/ReplPair.html2
-rw-r--r--target/site/apidocs/bjc/replpair/class-use/StageStatus.html2
-rw-r--r--target/site/apidocs/bjc/replpair/package-frame.html2
-rw-r--r--target/site/apidocs/bjc/replpair/package-summary.html2
-rw-r--r--target/site/apidocs/bjc/replpair/package-tree.html2
-rw-r--r--target/site/apidocs/bjc/replpair/package-use.html2
-rw-r--r--target/site/apidocs/constant-values.html2
-rw-r--r--target/site/apidocs/deprecated-list.html2
-rw-r--r--target/site/apidocs/help-doc.html2
-rw-r--r--target/site/apidocs/index-all.html2
-rw-r--r--target/site/apidocs/index.html2
-rw-r--r--target/site/apidocs/overview-tree.html2
-rw-r--r--target/site/testapidocs/allclasses-frame.html2
-rw-r--r--target/site/testapidocs/allclasses-noframe.html2
-rw-r--r--target/site/testapidocs/bjc/replpair/ReplPairTest.html2
-rw-r--r--target/site/testapidocs/bjc/replpair/class-use/ReplPairTest.html2
-rw-r--r--target/site/testapidocs/bjc/replpair/package-frame.html2
-rw-r--r--target/site/testapidocs/bjc/replpair/package-summary.html2
-rw-r--r--target/site/testapidocs/bjc/replpair/package-tree.html2
-rw-r--r--target/site/testapidocs/bjc/replpair/package-use.html2
-rw-r--r--target/site/testapidocs/constant-values.html2
-rw-r--r--target/site/testapidocs/deprecated-list.html2
-rw-r--r--target/site/testapidocs/help-doc.html2
-rw-r--r--target/site/testapidocs/index-all.html2
-rw-r--r--target/site/testapidocs/index.html2
-rw-r--r--target/site/testapidocs/overview-tree.html2
34 files changed, 157 insertions, 116 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..2f7896d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+target/
diff --git a/pom.xml b/pom.xml
index da0125c..ef230cb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,20 +3,25 @@
<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>
-
<groupId>io.github.bculkin2442</groupId>
<artifactId>everge</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
-
<name>everge</name>
<description>Simple regex-based text processin</description>
<url>http://www.github.com/bculkin2442/everge</url>
-
+ <developers>
+ <developer>
+ <name>Ben Culkin</name>
+ <email>bjculkin@mix.wvu.edu</email>
+ <url>https://github.com/bculkin2442</url>
+ </developer>
+ </developers>
<scm>
- <url>http://www.github.com/bculkin2442/everge</url>
+ <connection>scm:git:git://github.com/bculkin2442/everge.git</connection>
+ <developerConnection>scm:git:ssh://github.com:bculkin2442/everge.git</developerConnection>
+ <url>http://www.github.com/bculkin2442/everge/tree/master</url>
</scm>
-
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
@@ -39,85 +44,107 @@
<scope>test</scope>
</dependency>
</dependencies>
-
<build>
- <pluginManagement>
- <plugins>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>3.1.0</version>
- </plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>3.0.2</version>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.0</version>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.22.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.0.2</version>
- </plugin>
- <plugin>
- <artifactId>maven-install-plugin</artifactId>
- <version>2.5.2</version>
- </plugin>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.8.2</version>
- <configuration>
- <altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.7.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>3.0.0</version>
- </plugin>
- <plugin>
- <groupId>com.github.github</groupId>
- <artifactId>site-maven-plugin</artifactId>
- <version>0.11</version>
- <configuration>
- <message>Maven artifacts for ${project.version}</message>
- <noJekyll>true</noJekyll>
- <outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
- <branch>refs/heads/mvn-repo</branch>
- <includes>
- <include>**/*</include>
- </includes>
- <repositoryName>
- everge
- </repositoryName>
- <repositoryOwner>
- bculkin2442
- </repositoryOwner>
- </configuration>
- <executions>
- <!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase -->
- <execution>
- <goals>
- <goal>site</goal>
- </goals>
- <phase>deploy</phase>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </pluginManagement>
-
+ <plugins>
+ <plugin>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>3.1.0</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>3.0.2</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.8.0</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.22.1</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>3.0.2</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-install-plugin</artifactId>
+ <version>2.5.2</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.8.2</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.7.1</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>3.0.0</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.2.1</version>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.9.1</version>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>1.5</version>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>com.github.github</groupId>
+ <artifactId>site-maven-plugin</artifactId>
+ <version>0.9</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>site</goal>
+ </goals>
+ <phase>site-deploy</phase>
+ <configuration>
+ <server>github</server>
+ <message>Building site for my project</message>
+ <path>${site.path}</path>
+ <merge>true</merge>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
<resources>
<resource>
<directory>data/</directory>
-
<includes>
<include>**/*.rp</include>
<include>**/*.txt</include>
@@ -125,12 +152,25 @@
</resource>
</resources>
</build>
-
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.1.0</version>
+ <configuration>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
<distributionManagement>
+ <snapshotRepository>
+ <id>ossrh</id>
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+ </snapshotRepository>
<repository>
- <id>internal.repo</id>
- <name>Temporary Staging Repository</name>
- <url>file://${project.build.directory}/mvn-repo</url>
+ <id>ossrh</id>
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
diff --git a/target/site/apidocs/allclasses-frame.html b/target/site/apidocs/allclasses-frame.html
index be8bff4..880676b 100644
--- a/target/site/apidocs/allclasses-frame.html
+++ b/target/site/apidocs/allclasses-frame.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/allclasses-noframe.html b/target/site/apidocs/allclasses-noframe.html
index 83bdb19..73b6867 100644
--- a/target/site/apidocs/allclasses-noframe.html
+++ b/target/site/apidocs/allclasses-noframe.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/ReplError.html b/target/site/apidocs/bjc/replpair/ReplError.html
index e0d90ee..b8ebed1 100644
--- a/target/site/apidocs/bjc/replpair/ReplError.html
+++ b/target/site/apidocs/bjc/replpair/ReplError.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:57 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ReplError (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/ReplPair.html b/target/site/apidocs/bjc/replpair/ReplPair.html
index fdeac30..a58db80 100644
--- a/target/site/apidocs/bjc/replpair/ReplPair.html
+++ b/target/site/apidocs/bjc/replpair/ReplPair.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ReplPair (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/StageStatus.html b/target/site/apidocs/bjc/replpair/StageStatus.html
index 142c32b..d645034 100644
--- a/target/site/apidocs/bjc/replpair/StageStatus.html
+++ b/target/site/apidocs/bjc/replpair/StageStatus.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>StageStatus (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/class-use/ReplError.html b/target/site/apidocs/bjc/replpair/class-use/ReplError.html
index 1d183d9..3c97792 100644
--- a/target/site/apidocs/bjc/replpair/class-use/ReplError.html
+++ b/target/site/apidocs/bjc/replpair/class-use/ReplError.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class bjc.replpair.ReplError (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/class-use/ReplPair.html b/target/site/apidocs/bjc/replpair/class-use/ReplPair.html
index a65049b..fc7b09d 100644
--- a/target/site/apidocs/bjc/replpair/class-use/ReplPair.html
+++ b/target/site/apidocs/bjc/replpair/class-use/ReplPair.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class bjc.replpair.ReplPair (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/class-use/StageStatus.html b/target/site/apidocs/bjc/replpair/class-use/StageStatus.html
index 36a5d3c..fc25f62 100644
--- a/target/site/apidocs/bjc/replpair/class-use/StageStatus.html
+++ b/target/site/apidocs/bjc/replpair/class-use/StageStatus.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class bjc.replpair.StageStatus (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/package-frame.html b/target/site/apidocs/bjc/replpair/package-frame.html
index 9a33e55..73c65be 100644
--- a/target/site/apidocs/bjc/replpair/package-frame.html
+++ b/target/site/apidocs/bjc/replpair/package-frame.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>bjc.replpair (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/package-summary.html b/target/site/apidocs/bjc/replpair/package-summary.html
index 3c87c46..21f2823 100644
--- a/target/site/apidocs/bjc/replpair/package-summary.html
+++ b/target/site/apidocs/bjc/replpair/package-summary.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>bjc.replpair (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/package-tree.html b/target/site/apidocs/bjc/replpair/package-tree.html
index d0e2058..cd3dec6 100644
--- a/target/site/apidocs/bjc/replpair/package-tree.html
+++ b/target/site/apidocs/bjc/replpair/package-tree.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>bjc.replpair Class Hierarchy (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/bjc/replpair/package-use.html b/target/site/apidocs/bjc/replpair/package-use.html
index 9c4a851..cfedf53 100644
--- a/target/site/apidocs/bjc/replpair/package-use.html
+++ b/target/site/apidocs/bjc/replpair/package-use.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package bjc.replpair (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/constant-values.html b/target/site/apidocs/constant-values.html
index c02d309..37ab30d 100644
--- a/target/site/apidocs/constant-values.html
+++ b/target/site/apidocs/constant-values.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Constant Field Values (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/deprecated-list.html b/target/site/apidocs/deprecated-list.html
index e0fb380..267548e 100644
--- a/target/site/apidocs/deprecated-list.html
+++ b/target/site/apidocs/deprecated-list.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Deprecated List (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/help-doc.html b/target/site/apidocs/help-doc.html
index 3278c43..c77b81e 100644
--- a/target/site/apidocs/help-doc.html
+++ b/target/site/apidocs/help-doc.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>API Help (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/index-all.html b/target/site/apidocs/index-all.html
index bf355bc..f77ac42 100644
--- a/target/site/apidocs/index-all.html
+++ b/target/site/apidocs/index-all.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/apidocs/index.html b/target/site/apidocs/index.html
index 1c99dda..174cb8b 100644
--- a/target/site/apidocs/index.html
+++ b/target/site/apidocs/index.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>everge 1.0-SNAPSHOT API</title>
<script type="text/javascript">
diff --git a/target/site/apidocs/overview-tree.html b/target/site/apidocs/overview-tree.html
index 7fb822f..6b8e53a 100644
--- a/target/site/apidocs/overview-tree.html
+++ b/target/site/apidocs/overview-tree.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:58 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:58 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Class Hierarchy (everge 1.0-SNAPSHOT API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/allclasses-frame.html b/target/site/testapidocs/allclasses-frame.html
index d2b807b..3ec3e7f 100644
--- a/target/site/testapidocs/allclasses-frame.html
+++ b/target/site/testapidocs/allclasses-frame.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/allclasses-noframe.html b/target/site/testapidocs/allclasses-noframe.html
index 119725d..702b433 100644
--- a/target/site/testapidocs/allclasses-noframe.html
+++ b/target/site/testapidocs/allclasses-noframe.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/bjc/replpair/ReplPairTest.html b/target/site/testapidocs/bjc/replpair/ReplPairTest.html
index 6233569..81b3407 100644
--- a/target/site/testapidocs/bjc/replpair/ReplPairTest.html
+++ b/target/site/testapidocs/bjc/replpair/ReplPairTest.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ReplPairTest (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/bjc/replpair/class-use/ReplPairTest.html b/target/site/testapidocs/bjc/replpair/class-use/ReplPairTest.html
index 1eaa27c..97b72d2 100644
--- a/target/site/testapidocs/bjc/replpair/class-use/ReplPairTest.html
+++ b/target/site/testapidocs/bjc/replpair/class-use/ReplPairTest.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class bjc.replpair.ReplPairTest (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/bjc/replpair/package-frame.html b/target/site/testapidocs/bjc/replpair/package-frame.html
index aef5ccf..ddc455c 100644
--- a/target/site/testapidocs/bjc/replpair/package-frame.html
+++ b/target/site/testapidocs/bjc/replpair/package-frame.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>bjc.replpair (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/bjc/replpair/package-summary.html b/target/site/testapidocs/bjc/replpair/package-summary.html
index 459b1a3..ffbee5c 100644
--- a/target/site/testapidocs/bjc/replpair/package-summary.html
+++ b/target/site/testapidocs/bjc/replpair/package-summary.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>bjc.replpair (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/bjc/replpair/package-tree.html b/target/site/testapidocs/bjc/replpair/package-tree.html
index d49e82c..9ed5975 100644
--- a/target/site/testapidocs/bjc/replpair/package-tree.html
+++ b/target/site/testapidocs/bjc/replpair/package-tree.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>bjc.replpair Class Hierarchy (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/bjc/replpair/package-use.html b/target/site/testapidocs/bjc/replpair/package-use.html
index ab5884d..c0f3b93 100644
--- a/target/site/testapidocs/bjc/replpair/package-use.html
+++ b/target/site/testapidocs/bjc/replpair/package-use.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package bjc.replpair (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/constant-values.html b/target/site/testapidocs/constant-values.html
index d93a151..cd5e857 100644
--- a/target/site/testapidocs/constant-values.html
+++ b/target/site/testapidocs/constant-values.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Constant Field Values (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/deprecated-list.html b/target/site/testapidocs/deprecated-list.html
index bf77290..56d975e 100644
--- a/target/site/testapidocs/deprecated-list.html
+++ b/target/site/testapidocs/deprecated-list.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Deprecated List (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/help-doc.html b/target/site/testapidocs/help-doc.html
index b747ebe..7aeaeaa 100644
--- a/target/site/testapidocs/help-doc.html
+++ b/target/site/testapidocs/help-doc.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>API Help (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/index-all.html b/target/site/testapidocs/index-all.html
index 0c078bc..1a889fb 100644
--- a/target/site/testapidocs/index-all.html
+++ b/target/site/testapidocs/index-all.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">
diff --git a/target/site/testapidocs/index.html b/target/site/testapidocs/index.html
index 96f7230..83cfc17 100644
--- a/target/site/testapidocs/index.html
+++ b/target/site/testapidocs/index.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>everge 1.0-SNAPSHOT Test API</title>
<script type="text/javascript">
diff --git a/target/site/testapidocs/overview-tree.html b/target/site/testapidocs/overview-tree.html
index 2606e8f..e39da0b 100644
--- a/target/site/testapidocs/overview-tree.html
+++ b/target/site/testapidocs/overview-tree.html
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:48:59 EDT 2019 -->
+<!-- Generated by javadoc (1.8.0_121) on Tue Jun 11 22:49:59 EDT 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Class Hierarchy (everge 1.0-SNAPSHOT Test API)</title>
<meta name="date" content="2019-06-11">