tangled
alpha
login
or
join now
nayrid.com
/
java-template
1
fork
atom
Opinionated java-library project template
1
fork
atom
overview
issues
pulls
pipelines
feat: suppress docs check for tests
kokirigla.de
1 month ago
ece9f411
cece2d9c
verified
This commit was signed with the committer's
known signature
.
kokirigla.de
SSH Key Fingerprint:
SHA256:BlSEtD3ZoKT3iKveofI8gba+lZ9CEolKRM1Pzy3pAwg=
+5
2 changed files
expand all
collapse all
unified
split
.checkstyle
suppressions.xml
.scripts
rename-template.sh
+4
.checkstyle/suppressions.xml
reviewed
···
3
3
"http://checkstyle.org/dtds/suppressions_1_2.dtd">
4
4
<suppressions>
5
5
6
6
+
<!-- don't require docs for tests -->
7
7
+
<suppress files="{{PROJECT_NAME}}-(api)[\\/]src[\\/]test[\\/]java[\\/].*"
8
8
+
checks="(MissingJavadoc.*)"/>
9
9
+
6
10
</suppressions>
+1
.scripts/rename-template.sh
reviewed
···
113
113
"$REPO_ROOT/build-logic/src/main/kotlin/publishing-conventions.gradle.kts"
114
114
"$REPO_ROOT/license.txt"
115
115
"$REPO_ROOT/license_header.txt"
116
116
+
"$REPO_ROOT/.checkstyle/suppressions.xml"
116
117
)
117
118
118
119
if [[ -d "$SOURCE_MODULE_DIR/src/main/java" ]]; then