Bump checkstyle from 8.43 to 8.44 (#413)
* Bump checkstyle from 8.43 to 8.44 Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 8.43 to 8.44. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-8.43...checkstyle-8.44) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * github: remove unused graphviz * github: prepare setup-java for v2 syntax * github: Add dependabot settings * ClassGraphPackageScanner: fix up order of javadoc annotations * Update build-maven.yml Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
parent
9353e67c3a
commit
3b7ccf0642
5 changed files with 13 additions and 33 deletions
35
.github/dependabot.yml
vendored
35
.github/dependabot.yml
vendored
|
@ -1,29 +1,10 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: maven
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
open-pull-requests-limit: 10
|
||||
ignore:
|
||||
- dependency-name: io.github.classgraph:classgraph
|
||||
versions:
|
||||
- "< 4.2.3, >= 4.2.2.a"
|
||||
- dependency-name: io.github.classgraph:classgraph
|
||||
versions:
|
||||
- "< 4.2, > 4.1.5"
|
||||
- dependency-name: io.github.classgraph:classgraph
|
||||
versions:
|
||||
- "< 4.2.6, >= 4.2.5.a"
|
||||
- dependency-name: io.github.classgraph:classgraph
|
||||
versions:
|
||||
- "< 4.4, >= 4.3.a"
|
||||
- dependency-name: io.github.classgraph:classgraph
|
||||
versions:
|
||||
- "< 4.5, >= 4.4.a"
|
||||
- dependency-name: org.springframework.boot:spring-boot-maven-plugin
|
||||
versions:
|
||||
- 2.4.2
|
||||
- dependency-name: org.springframework.boot:spring-boot-dependencies
|
||||
versions:
|
||||
- 2.4.2
|
||||
- package-ecosystem: maven
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
|
|
4
.github/workflows/build-maven.yml
vendored
4
.github/workflows/build-maven.yml
vendored
|
@ -11,13 +11,13 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
java: [ 11, 15 ]
|
||||
java: [ 11, 16 ]
|
||||
steps:
|
||||
- uses: kamiazya/setup-graphviz@v1
|
||||
- uses: actions/checkout@v2
|
||||
- name: setup-jdk-${{ matrix.java }}
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
distribution: 'adopt'
|
||||
java-version: ${{ matrix.java }}
|
||||
- name: build-jar
|
||||
run: mvn -B install
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
<tiles-maven-plugin.version>2.21</tiles-maven-plugin.version>
|
||||
<kemitix-maven-tiles.version>3.0.1</kemitix-maven-tiles.version>
|
||||
|
||||
<checkstyle.version>8.43</checkstyle.version>
|
||||
<checkstyle.version>8.44</checkstyle.version>
|
||||
<sevntu.version>1.40.0</sevntu.version>
|
||||
<sevntu-plugin.version>1.35.0</sevntu-plugin.version>
|
||||
<lombok.version>1.18.20</lombok.version>
|
||||
|
|
|
@ -10,9 +10,8 @@ import java.util.stream.Collectors;
|
|||
/**
|
||||
* Implementation of {@link PackageScanner} using ClassGraph.
|
||||
*
|
||||
* @see <a href="https://github.com/classgraph/classgraph/">ClassGraph</a>
|
||||
*
|
||||
* @author Paul Campbell (pcampbell@kemitix.net).
|
||||
* @see <a href="https://github.com/classgraph/classgraph/">ClassGraph</a>
|
||||
*/
|
||||
@Service
|
||||
public class ClassGraphPackageScanner implements PackageScanner {
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<kemitix-maven-tiles.version>3.0.1</kemitix-maven-tiles.version>
|
||||
|
||||
<maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
|
||||
<checkstyle.version>8.43</checkstyle.version>
|
||||
<checkstyle.version>8.44</checkstyle.version>
|
||||
<sevntu.version>1.35.0</sevntu.version>
|
||||
|
||||
<kemitix.checkstyle.ruleset.version>${project.version}</kemitix.checkstyle.ruleset.version>
|
||||
|
|
Loading…
Reference in a new issue