This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root_package: org.tindalos.principle | |
checks: | |
layering: | |
layers: [infrastructure, app, domain] | |
violation_threshold: 0 | |
third_party_restrictions: | |
allowed_libraries: | |
- layer: infrastructure | |
libraries: [org.apache.maven, org.json, org.yaml, com.google.common.collect, jdepend] | |
- layer: domain | |
libraries: [org.apache.commons] | |
violation_threshold: 0 | |
package_coupling: | |
cyclic_dependencies_threshold: 0 | |
acd_threshold: 0.35 | |
modules: | |
# Map modules to packages | |
module-definitions: | |
EXPECTATIONS: [domain.expectations] | |
CORE: [domain.core] | |
AGENTSCORE: [domain.agentscore] | |
AGENTS: [domain.agents, infrastructure.reporters] | |
CHECKER: [domain.checker] | |
# Define dependencies between modules | |
module-dependencies: | |
EXPECTATIONS: [] | |
CORE: [EXPECTATIONS] | |
AGENTSCORE: [CORE, EXPECTATIONS] | |
AGENTS: [CORE,AGENTSCORE,EXPECTATIONS] | |
CHECKER: [CORE, AGENTSCORE] | |
violation_threshold: 0 | |
structure_analysis_enabled: true |
The next big thing will be to make it usable a SBT plugin, while also retaining the Maven plugin nature. By looking at the documentation of "Simple" Build Tool, this looks challenging.
No comments :
Post a Comment