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>
|
<version>4.13</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</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>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
@ -42,7 +42,7 @@ public class AssertRegex {
|
|||||||
* This method evaluates the format of the specified value using the
|
* This method evaluates the format of the specified value using the
|
||||||
* specified regular expression.
|
* specified regular expression.
|
||||||
*
|
*
|
||||||
* @param expectedRegex A regular expression
|
* @param expected A regular expression
|
||||||
* @param actual A text value to evaluate
|
* @param actual A text value to evaluate
|
||||||
* @see AssertRegex#assertNotMatches(Pattern, String)
|
* @see AssertRegex#assertNotMatches(Pattern, String)
|
||||||
*/
|
*/
|
||||||
@ -55,7 +55,7 @@ public class AssertRegex {
|
|||||||
* specified regular expression.
|
* specified regular expression.
|
||||||
*
|
*
|
||||||
* @param message A message to record on failure
|
* @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
|
* @param actual A text value to evaluate
|
||||||
* @see AssertRegex#assertNotMatches(String, Pattern, String)
|
* @see AssertRegex#assertNotMatches(String, Pattern, String)
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user