org.gradle.guides.test-jvm-code
                  Owner:
                  
                    
                    Gradle
                  
                
This plugin is deprecated and broken by the disappearance of JCenter. See plugin org.gradle.guides instead. Plugin required for testing of JVM code snippets used in guides
https://github.com/gradle-guides/gradle-guides-plugin
Sources: https://github.com/gradle-guides/gradle-guides-plugin
Version 0.3.1
Created 30 May 2017.
                Plugin required for testing of JVM code snippets used in guides
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.gradle.guides.test-jvm-code") version "0.3.1"
}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("org.gradle.guides.test-jvm-code:org.gradle.guides.test-jvm-code.gradle.plugin:0.3.1") }It can then be applied in the precompiled script plugin:plugins { id("org.gradle.guides.test-jvm-code") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.gradle.guides.test-jvm-code:org.gradle.guides.test-jvm-code.gradle.plugin:0.3.1") } } apply(plugin = "org.gradle.guides.test-jvm-code")
- Applying plugins to all subprojects .