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.3

Created 02 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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.softicar:gradle-plugins:4.0.3")
  }
}

apply(plugin = "com.softicar.gradle.code.validation")

Using the plugins DSL:

plugins {
  id "com.softicar.gradle.code.validation" version "4.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.softicar:gradle-plugins:4.0.3"
  }
}

apply plugin: "com.softicar.gradle.code.validation"

Learn how to apply plugins to subprojects