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
27
.github/dependabot.yml
vendored
27
.github/dependabot.yml
vendored
|
@ -4,26 +4,7 @@ updates:
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
open-pull-requests-limit: 10
|
- package-ecosystem: "github-actions"
|
||||||
ignore:
|
directory: "/"
|
||||||
- dependency-name: io.github.classgraph:classgraph
|
schedule:
|
||||||
versions:
|
interval: daily
|
||||||
- "< 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
|
|
||||||
|
|
4
.github/workflows/build-maven.yml
vendored
4
.github/workflows/build-maven.yml
vendored
|
@ -11,13 +11,13 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
java: [ 11, 15 ]
|
java: [ 11, 16 ]
|
||||||
steps:
|
steps:
|
||||||
- uses: kamiazya/setup-graphviz@v1
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: setup-jdk-${{ matrix.java }}
|
- name: setup-jdk-${{ matrix.java }}
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
|
distribution: 'adopt'
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
- name: build-jar
|
- name: build-jar
|
||||||
run: mvn -B install
|
run: mvn -B install
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
<tiles-maven-plugin.version>2.21</tiles-maven-plugin.version>
|
<tiles-maven-plugin.version>2.21</tiles-maven-plugin.version>
|
||||||
<kemitix-maven-tiles.version>3.0.1</kemitix-maven-tiles.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.version>1.40.0</sevntu.version>
|
||||||
<sevntu-plugin.version>1.35.0</sevntu-plugin.version>
|
<sevntu-plugin.version>1.35.0</sevntu-plugin.version>
|
||||||
<lombok.version>1.18.20</lombok.version>
|
<lombok.version>1.18.20</lombok.version>
|
||||||
|
|
|
@ -10,9 +10,8 @@ import java.util.stream.Collectors;
|
||||||
/**
|
/**
|
||||||
* Implementation of {@link PackageScanner} using ClassGraph.
|
* Implementation of {@link PackageScanner} using ClassGraph.
|
||||||
*
|
*
|
||||||
* @see <a href="https://github.com/classgraph/classgraph/">ClassGraph</a>
|
|
||||||
*
|
|
||||||
* @author Paul Campbell (pcampbell@kemitix.net).
|
* @author Paul Campbell (pcampbell@kemitix.net).
|
||||||
|
* @see <a href="https://github.com/classgraph/classgraph/">ClassGraph</a>
|
||||||
*/
|
*/
|
||||||
@Service
|
@Service
|
||||||
public class ClassGraphPackageScanner implements PackageScanner {
|
public class ClassGraphPackageScanner implements PackageScanner {
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
<kemitix-maven-tiles.version>3.0.1</kemitix-maven-tiles.version>
|
<kemitix-maven-tiles.version>3.0.1</kemitix-maven-tiles.version>
|
||||||
|
|
||||||
<maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.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>
|
<sevntu.version>1.35.0</sevntu.version>
|
||||||
|
|
||||||
<kemitix.checkstyle.ruleset.version>${project.version}</kemitix.checkstyle.ruleset.version>
|
<kemitix.checkstyle.ruleset.version>${project.version}</kemitix.checkstyle.ruleset.version>
|
||||||
|
|
Loading…
Reference in a new issue