io.arrow-kt.arrow-gradle-config-kotlin
                  Owner:
                  
                    
                    47 Degrees
                  
                
Basic Gradle config for Kotlin Arrow projects
https://github.com/arrow-kt/arrow-gradle-config
Sources: https://github.com/arrow-kt/arrow-gradle-config
Version 0.12.0-rc.20
Created 02 February 2024.
                Basic Gradle config for Kotlin Arrow projects
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.arrow-kt.arrow-gradle-config-kotlin") version "0.12.0-rc.20"
}
              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.arrow-kt.arrow-gradle-config-kotlin:io.arrow-kt.arrow-gradle-config-kotlin.gradle.plugin:0.12.0-rc.20") }It can then be applied in the precompiled script plugin:plugins { id("io.arrow-kt.arrow-gradle-config-kotlin") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.arrow-kt.arrow-gradle-config-kotlin:io.arrow-kt.arrow-gradle-config-kotlin.gradle.plugin:0.12.0-rc.20") } } apply(plugin = "io.arrow-kt.arrow-gradle-config-kotlin") - Applying plugins to all subprojects .