Search Gradle plugins

tech.harmonysoft.oss.traute

A Gradle plugin which eases Traute Javac plugin appliance in Gradle projects

http://traute.oss.harmonysoft.tech/facade/gradle/

Sources: https://github.com/denis-zhdanov/traute

Version 1.1.7

Created 26 December 2017.

A Gradle plugin which eases Traute Javac plugin appliance in Gradle projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("tech.harmonysoft.oss.traute") version "1.1.7"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("tech.harmonysoft.oss.traute:tech.harmonysoft.oss.traute.gradle.plugin:1.1.7")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("tech.harmonysoft.oss.traute")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tech.harmonysoft.oss.traute:tech.harmonysoft.oss.traute.gradle.plugin:1.1.7")
      }
    }
    
    apply(plugin = "tech.harmonysoft.oss.traute")
  • Applying plugins to all subprojects .