Search Gradle plugins

com.exactpro.th2.gradle.base

Plugin helps you configure jar manifest and check dependencies for vulnerabilities

https://github.com/th2-net/th2-gradle-plugin

Sources: https://github.com/th2-net/th2-gradle-plugin.git

Version 0.1.5 (latest)

0.1.5

Created 15 November 2024.

Plugin helps you configure jar manifest and check dependencies for vulnerabilities

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.exactpro.th2.gradle.base") version "0.1.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.exactpro.th2:th2-gradle-plugin:0.1.5")
      }
    }
    
    apply(plugin = "com.exactpro.th2.gradle.base")
  • Applying plugins to all subprojects .