Search Gradle plugins

com.softicar.gradle.code.validation

Owner: SoftiCAR

This plugin enables a project to execute self-contained code validation logic, i.e. code validation logic that is implemented in the project itself or in one of its dependencies.

https://github.com/softicar/gradle-plugins

Sources: https://github.com/Prevent-DEV/com.softicar.gradle.plugins

Version 4.0.2

4.0.2

Created 01 November 2021.

This plugin enables a project to execute self-contained code validation logic, i.e. code validation logic that is implemented in the project itself or in one of its dependencies.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.softicar.gradle.code.validation") version "4.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.softicar:com.softicar.gradle.plugins:4.0.2")
      }
    }
    
    apply(plugin = "com.softicar.gradle.code.validation")
  • Applying plugins to all subprojects .