added javadoc packaging; minor doc fix

This commit is contained in:
Brian Long 2021-02-26 22:18:01 -05:00
parent 51b2e12bfb
commit b50dce34e2
2 changed files with 21 additions and 2 deletions

19
pom.xml
View File

@ -36,6 +36,25 @@
<version>4.13</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc</id>
<phase>package</phase>
<goals><goal>jar</goal></goals>
<configuration>
<detectLinks>true</detectLinks>
<show>public</show>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>

View File

@ -42,7 +42,7 @@ public class AssertRegex {
* This method evaluates the format of the specified value using the
* specified regular expression.
*
* @param expectedRegex A regular expression
* @param expected A regular expression
* @param actual A text value to evaluate
* @see AssertRegex#assertNotMatches(Pattern, String)
*/
@ -55,7 +55,7 @@ public class AssertRegex {
* specified regular expression.
*
* @param message A message to record on failure
* @param expectedRegex A regular expression
* @param expected A regular expression
* @param actual A text value to evaluate
* @see AssertRegex#assertNotMatches(String, Pattern, String)
*/