added javadoc packaging; minor doc fix
This commit is contained in:
parent
51b2e12bfb
commit
b50dce34e2
19
pom.xml
19
pom.xml
@ -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>
|
||||
|
@ -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)
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user