Search Gradle plugins

de.kontext_e.jqassistant.gradle

Scans project artifacts, enriches with higher level concepts and applies constraints. See https://jqassistant.org/ for details.

https://github.com/kontext-e/jqassistant-gradle-plugin

Sources: https://github.com/kontext-e/jqassistant-gradle-plugin

Version 1.0.1 (latest)

Created 14 July 2021.

Scans project artifacts, enriches with higher level concepts and applies constraints. See https://jqassistant.org/ for details.

Using the plugins DSL:

plugins {
  id("de.kontext_e.jqassistant.gradle") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.kontext_e.jqassistant.gradle:jqassistant-gradle-plugin:1.0.1")
  }
}

apply(plugin = "de.kontext_e.jqassistant.gradle")

Using the plugins DSL:

plugins {
  id "de.kontext_e.jqassistant.gradle" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.kontext_e.jqassistant.gradle:jqassistant-gradle-plugin:1.0.1"
  }
}

apply plugin: "de.kontext_e.jqassistant.gradle"

Learn how to apply plugins to subprojects