Search Gradle plugins

neva.scr

Plugin for pre-processing classes annotated with Apache Felix SCR annotations. Especially useful when combined with Javarel Framework

http://javarel.neva.zone/

Sources: http://github.com/neva-dev/gradle-scr-plugin

Version 1.0.0 (latest)

Created 14 June 2016.

Plugin for pre-processing classes annotated with Apache Felix SCR annotations. Especially useful when combined with Javarel Framework

Add this plugin to your build using the plugins DSL:

plugins {
  id("neva.scr") version "1.0.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("neva.scr:neva.scr.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("neva.scr")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("neva.scr:neva.scr.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "neva.scr")
  • Applying plugins to all subprojects .