Search Gradle plugins

Version 0.1.1-dev.5+2211c3d

Created 15 October 2018.

Some usefull plugins from PuraVida Software!

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.puravida.gradle.socialnetwork") version "0.1.1-dev.5+2211c3d"
}

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.puravida.gradle.socialnetwork:com.puravida.gradle.socialnetwork.gradle.plugin:0.1.1-dev.5+2211c3d")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.puravida.gradle.socialnetwork")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.puravida.gradle.socialnetwork:com.puravida.gradle.socialnetwork.gradle.plugin:0.1.1-dev.5+2211c3d")
      }
    }
    
    apply(plugin = "com.puravida.gradle.socialnetwork")
  • Applying plugins to all subprojects .