tech.harmonysoft.oss.traute
                  Owner:
                  
                    
                    Denis Zhdanov
                  
                
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.10 (latest)
Created 25 March 2019.
                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.10"
}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.10") }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.10") } } apply(plugin = "tech.harmonysoft.oss.traute")
- Applying plugins to all subprojects .