Approval confirmation
Approval confirmation
Delete plugin confirmation
          To confirm the plugin deletion insert pluginId and author name
        
        Micronaut Foundation
io.micronaut.library
          PluginId 
        
        
          Author 
        
        io.micronaut.library
                  Owner:
                  
                    
                    Micronaut Foundation
                  
                
Gradle Plugins for Micronaut
https://github.com/micronaut-projects/micronaut-gradle-plugin
Sources: https://github.com/micronaut-projects/micronaut-gradle-plugins
Version 3.7.5
3.7.5
Created 10 March 2023.
                Micronaut Library Plugin
                
            
            
            
                
                    Other versions 
                    
            
            
        - 4.6.1
 - 4.6.0
 - 4.5.5
 - 4.5.4
 - 4.5.3
 - 4.5.2
 - 4.5.1
 - 4.5.0
 - 4.4.5
 - 4.4.4
 - 4.4.3
 - 4.4.2
 - 4.4.1
 - 4.4.0
 - 4.3.8
 - 4.3.7
 - 4.3.6
 - 4.3.5
 - 4.3.4
 - 4.3.3
 - 4.3.2
 - 4.3.1
 - 4.3.0
 - 4.2.1
 - 4.2.0
 - 4.1.2
 - 4.1.1
 - 4.1.0
 - 4.0.4
 - 4.0.3
 - 4.0.2
 - 4.0.1
 - 4.0.0
 - 4.0.0-M8
 - 4.0.0-M7
 - 4.0.0-M6
 - 4.0.0-M5
 - 4.0.0-M4
 - 4.0.0-M3
 - 4.0.0-M2
 - 4.0.0-M1
 - 3.7.10
 - 3.7.9
 - 3.7.8
 - 3.7.7
 - 3.7.6
 - 3.7.4
 - 3.7.3
 - 3.7.2
 - 3.7.1
 - 3.7.0
 - 3.6.7
 - 3.6.6
 - 3.6.5
 - 3.6.4
 - 3.6.3
 - 3.6.2
 - 3.6.1
 - 3.6.0
 - 3.5.3
 - 3.5.2
 - 3.5.1
 - 3.5.0
 - 3.4.1
 - 3.4.0
 - 3.3.2
 - 3.3.1
 - 3.3.0
 - 3.2.2
 - 3.2.1
 - 3.2.0
 - 3.1.1
 - 3.1.0
 - 3.1.0-M1
 - 3.0.2
 - 3.0.1
 - 3.0.0
 - 3.0.0-M1
 - 2.0.8
 - 2.0.7
 - 2.0.6
 - 2.0.5
 - 2.0.4
 - 2.0.3
 - 2.0.2
 - 2.0.1
 - 2.0.0
 - 1.5.4
 - 1.5.3
 - 1.5.2
 - 1.5.1
 - 1.5.0
 - 1.4.6
 - 1.4.5
 - 1.4.4
 - 1.4.3
 - 1.4.2
 - 1.4.1
 - 1.4.0
 - 1.3.4
 - 1.3.3
 - 1.3.2
 - 1.3.1
 - 1.3.0
 - 1.2.0
 - 1.1.0
 - 1.0.5
 - 1.0.4
 - 1.0.3
 - 1.0.2
 - 1.0.1
 - 1.0.0
 - 1.0.0.RC13
 - 1.0.0.RC12
 - 1.0.0.RC11
 - 1.0.0.RC10
 - 1.0.0.RC9
 - 1.0.0.RC8
 - 1.0.0.RC7
 - 1.0.0.RC6
 - 1.0.0.RC5
 - 1.0.0.RC4
 - 1.0.0.RC3
 - 1.0.0.RC2
 - 1.0.0.RC1
 - 1.0.0.M9
 - 1.0.0.M8
 - 1.0.0.M7
 - 1.0.0.M6
 - 1.0.0.M5
 - 1.0.0.M4
 - 1.0.0.M3
 - 1.0.0.M2
 - 1.0.0.M1
 
Add this plugin to your build using the plugins DSL:
plugins {
  id("io.micronaut.library") version "3.7.5"
}
              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("io.micronaut.library:io.micronaut.library.gradle.plugin:3.7.5") }It can then be applied in the precompiled script plugin:plugins { id("io.micronaut.library") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.micronaut.library:io.micronaut.library.gradle.plugin:3.7.5") } } apply(plugin = "io.micronaut.library") - Applying plugins to all subprojects .