Skip to content

Commit

Permalink
chore: fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
raits committed May 13, 2024
1 parent e0963c0 commit 8076da5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@
<module name="InterfaceIsType"/>
<!-- Miscellaneous other checks. -->
<!-- See http://checkstyle.sf.net/config_misc.html -->
<module name="TodoComment"/>
<module name="TodoComment">
<property name="severity" value="warning"/>
</module>
<module name="UpperEll"/>
<module name="AvoidStarImport">
<property name="severity" value="error"/>
Expand Down
4 changes: 4 additions & 0 deletions xroad-catalog-collector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jar {
enabled = false
}

tasks.withType(Jar).configureEach {
duplicatesStrategy = DuplicatesStrategy.WARN
}

springBoot {
mainClass = 'fi.vrk.xroad.catalog.collector.XRoadCatalogCollector'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
import java.util.Set;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;

/**
Expand Down

0 comments on commit 8076da5

Please sign in to comment.