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 2.1.0 (latest)

2.1.0

Created 10 July 2024.

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 "2.1.0"
}

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:2.1.0")
  }
}

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

Using the plugins DSL:

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

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:2.1.0"
  }
}

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

Learn how to apply plugins to subprojects