Search Gradle plugins

org.joinfaces.classpath-scan

Performs the classpath scan at build-time for a faster application startup.

https://github.com/joinfaces/joinfaces

Sources: https://github.com/joinfaces/joinfaces

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.joinfaces.classpath-scan") version "5.0.13"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.joinfaces:joinfaces-gradle-plugin:5.0.13")
      }
    }
    
    apply(plugin = "org.joinfaces.classpath-scan")
  • Applying plugins to all subprojects .