ch.ergon.adam
                  Owner:
                  
                    
                    René Bühlmann
                  
                
Advanced DAtabase Migration to migrate database schema
https://github.com/ergon/adam/
Sources: https://github.com/ergon/adam.git
Version 1.4.0-beta.1 (latest)
Created 04 June 2025.
                Advanced DAtabase Migration to migrate database schema
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("ch.ergon.adam") version "1.4.0-beta.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("ch.ergon.adam:ch.ergon.adam.gradle.plugin:1.4.0-beta.1") }It can then be applied in the precompiled script plugin:plugins { id("ch.ergon.adam") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.ergon.adam:ch.ergon.adam.gradle.plugin:1.4.0-beta.1") } } apply(plugin = "ch.ergon.adam")
- Applying plugins to all subprojects .