Skip to content

Commit 8136451

Browse files
author
Matthias Kay
authored
fix: use correct prefix for build and ci dependencies (#103)
# Description - use `ci` prefix for the release process defined in `.release` - use `build` prefix for Maven and related plugins - use the correct prefix for dependencies used in the `dependencyManagement` section # Verification Not checked
1 parent 30f8ba9 commit 8136451

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.config/cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"javadoc",
99
"javadocs",
1010
"oidc",
11+
"projectlombok",
1112
"Repology",
1213
"sonatype",
1314
"tflint",

default.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,21 @@
4747
"description": "Use the `test` prefix for Maven test dependencies."
4848
},
4949
{
50-
"matchFileNames": [".github/workflows/*"],
50+
"matchPackageNames": ["org.junit:junit-bom"],
51+
"semanticCommitType": "test",
52+
"description": "Test dependencies used in the dependencyManagement section are identified as production dependencies."
53+
},
54+
{
55+
"matchPackageNames": [
56+
"maven-wrapper",
57+
"org.apache.maven.plugins:*",
58+
"org.projectlombok:lombok"
59+
],
60+
"semanticCommitType": "build",
61+
"description": "Build dependencies not identified automatically."
62+
},
63+
{
64+
"matchFileNames": [".github/workflows/*", ".release/*"],
5165
"semanticCommitType": "ci",
5266
"description": "Use the `ci` prefix for workflow dependencies."
5367
}

0 commit comments

Comments
 (0)