com.palantir.version-props-idea
                  Owner:
                  
                    
                    Palantir Technologies
                  
                
Plugin to collect repositories for use by the IDEA plugin.
https://github.com/palantir/gradle-consistent-versions
Sources: https://github.com/palantir/gradle-consistent-versions
Version 3.6.0 (latest)
Created 31 October 2025.
                Plugin to collect repositories for use by the IDEA plugin.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.palantir.version-props-idea") version "3.6.0"
}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("com.palantir.version-props-idea:com.palantir.version-props-idea.gradle.plugin:3.6.0") }It can then be applied in the precompiled script plugin:plugins { id("com.palantir.version-props-idea") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.palantir.version-props-idea:com.palantir.version-props-idea.gradle.plugin:3.6.0") } } apply(plugin = "com.palantir.version-props-idea")
- Applying plugins to all subprojects .