Skip to content

Commit d8352ef

Browse files
committed
no longer fail build on javadoc warnings
1 parent 6c76f98 commit d8352ef

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

kafka-webview-ui/src/main/java/org/sourcelab/kafka/webview/ui/manager/kafka/KafkaOperations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public boolean createTopic(final CreateTopic createTopic) {
230230
/**
231231
* Modify configuration values for a specific topic.
232232
* @param topic The topic to modify.
233-
* @param configItems Map of Key => Value to modify.
233+
* @param configItems Map of Key to Value to modify.
234234
* @return boolean
235235
*/
236236
public TopicConfig alterTopicConfig(final String topic, final Map<String, String> configItems) {

kafka-webview-ui/src/main/java/org/sourcelab/kafka/webview/ui/repository/MessageFormatRepository.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ public interface MessageFormatRepository extends CrudRepository<MessageFormat, L
4848

4949
/**
5050
* Find all message formats by type, ordered by name.
51+
* @param isDefaultFormat Only return items that match the default_format field being true or false.
5152
* @return all message formats ordered by name.
5253
*/
5354
Iterable<MessageFormat> findByIsDefaultFormatOrderByNameAsc(final boolean isDefaultFormat);

kafka-webview-ui/src/main/java/org/sourcelab/kafka/webview/ui/repository/ViewToFilterOptionalRepository.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,13 @@
3737
public interface ViewToFilterOptionalRepository extends CrudRepository<ViewToFilterOptional, Long> {
3838
/**
3939
* Retrieve all by FilterId.
40+
* @param filterId to restrict results by.
4041
*/
4142
List<ViewToFilterOptional> findByFilterId(final Long filterId);
4243

4344
/**
4445
* Retrieve all by ViewId.
46+
* @param viewId to restrict results by.
4547
*/
4648
List<ViewToFilterOptional> findByViewId(final Long viewId);
4749
}

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,9 @@
199199
<goals>
200200
<goal>jar</goal>
201201
</goals>
202+
<configuration>
203+
<failOnWarnings>false</failOnWarnings>
204+
</configuration>
202205
</execution>
203206
</executions>
204207
</plugin>

0 commit comments

Comments
 (0)