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: https://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

Using the plugins DSL:

plugins {
  id("neva.scr") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.neva.gradle.plugin:scr:1.0.0")
  }
}

apply(plugin = "neva.scr")

Using the plugins DSL:

plugins {
  id "neva.scr" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.neva.gradle.plugin:scr:1.0.0"
  }
}

apply plugin: "neva.scr"

Learn how to apply plugins to subprojects