Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ SPDX-License-Identifier: MIT
<maven-resources-plugin.version>3.5.0</maven-resources-plugin.version>
<!-- end version overrides -->
<maven-pmd-plugin.version>3.28.0</maven-pmd-plugin.version>
<pmd.version>7.23.0</pmd.version>
<pmd.version>7.24.0</pmd.version>
<versions-maven-plugin.version>2.21.0</versions-maven-plugin.version>
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
<dependency-check-maven.version>12.2.1</dependency-check-maven.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ class SearchIndexEventHandlerIntegrationTest {
*/
@Test
@Issue("HTM-1258")
@SuppressWarnings("PMD.UnitTestShouldIncludeAssert")
void before_save_search_index_event_handler() {
SearchIndex existingSearchIndexWithSchedule =
searchIndexRepository.findById(1L).orElse(null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ void supports() {
}

@Test
@SuppressWarnings("PMD.UnitTestShouldIncludeAssert")
void wfs_feature_type() {
featureSourceRepository
.getByTitle("WFS for Test GeoServer")
Expand All @@ -68,7 +67,6 @@ void wfs_feature_type() {
}

@Test
@SuppressWarnings("PMD.UnitTestShouldIncludeAssert")
void jdbc_feature_type() {
featureSourceRepository
.getByTitle("PostGIS")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ class SolrHelperIntegrationTest {

@Test
@Issue("https://b3partners.atlassian.net/browse/HTM-1428")
@SuppressWarnings("PMD.UnitTestShouldIncludeAssert")
@Transactional
void index_without_primary_key() throws Exception {
searchIndexRepository
Expand Down
Loading