com.arc-e-tect.architecture-validator
Owner:
Iwan Eising
Generates and runs ArchUnit-based architecture tests for hexagonal architectures.
https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-Gradle/tree/main/architecture-validator
Sources: https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-Gradle.git
Version 0.4.4
Created 12 June 2026.
Generates and runs ArchUnit-based architecture tests for hexagonal architectures.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.arc-e-tect.architecture-validator") version "0.4.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.arc-e-tect.architecture-validator:com.arc-e-tect.architecture-validator.gradle.plugin:0.4.4") }It can then be applied in the precompiled script plugin:plugins { id("com.arc-e-tect.architecture-validator") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.arc-e-tect.architecture-validator:com.arc-e-tect.architecture-validator.gradle.plugin:0.4.4") } } apply(plugin = "com.arc-e-tect.architecture-validator") - Applying plugins to all subprojects .