RED-9139: move document to its own module, add TableOfContents and TableOfContentsItem

* ignore checkstyle and pmd for generated proto files
This commit is contained in:
Kilian Schuettler 2024-11-12 11:16:43 +01:00
parent b73f9a12cc
commit c9e91972f8

View File

@ -16,12 +16,12 @@ pmd {
} }
tasks.checkstyleMain { tasks.checkstyleMain {
exclude("**/data/**") exclude("**/data/**") // ignore generated proto files
} }
tasks.pmdMain { tasks.pmdMain {
pmd.ruleSetFiles = files("${rootDir}/config/pmd/pmd.xml") pmd.ruleSetFiles = files("${rootDir}/config/pmd/pmd.xml")
exclude("**/data/**") exclude("**/data/**") // ignore generated proto files
} }
tasks.pmdTest { tasks.pmdTest {