Skip to content

Commit

Permalink
add "docs" target at wilma-mock, as part of #46 and #56
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohegyi committed Jul 18, 2015
1 parent 48ba397 commit 0e631e1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
7 changes: 7 additions & 0 deletions wilma-mock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,10 @@ sonarRunner {
property "sonar.jdbc.password", "${sonar_jdbc_password}"
}
}

task docs(type: Javadoc) {
destinationDir = file("$buildDir/docs/all")
options.memberLevel = JavadocMemberLevel.PRIVATE
source += files(sourceSets.main.java)
classpath += files(sourceSets.main.compileClasspath)
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,11 @@ public final class WilmaMock {

/**
* <p>
* Constructor.<br>
* Constructor.
* The given properties object has to contain the Wilma server
* configuration:
* </p>
* <p>
* <table>
* <table summary="">
* <tr>
* <th>Key</th>
* <th>Class Type</th>
Expand All @@ -81,7 +80,6 @@ public final class WilmaMock {
* <td align="center"><pre>String|Integer</pre></td>
* </tr>
* </table>
* </p>
* <p>
* For properties key you can use {@code WilmaMock.WILMA_HOST_KEY} and
* {@code WilmaMock.WILMA_INTERNAL_PORT_KEY} constants.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ public boolean dropStubConfig(String groupName) {
* is the following:<br>
*
* <pre>
* {@code
* {
* "configs": [
* {
Expand Down

0 comments on commit 0e631e1

Please sign in to comment.