Skip to content

Commit

Permalink
Wrap bannedImport list to fix failure on newer enforcer version
Browse files Browse the repository at this point in the history
  • Loading branch information
wendigo committed Sep 19, 2023
1 parent b7ceefd commit 41ddfd7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions plugin/trino-base-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,11 @@
<rules combine.children="append">
<RestrictImports>
<reason>Use AssertJ assertions instead of TestNG</reason>
<bannedImport>org.testng.Assert.*</bannedImport>
<bannedImport>org.testng.AssertJUnit.*</bannedImport>
<bannedImport>org.testng.asserts.**</bannedImport>
<bannedImports>
<bannedImport>org.testng.Assert.*</bannedImport>
<bannedImport>org.testng.AssertJUnit.*</bannedImport>
<bannedImport>org.testng.asserts.**</bannedImport>
</bannedImports>
</RestrictImports>
</rules>
</configuration>
Expand Down

0 comments on commit 41ddfd7

Please sign in to comment.