https://github.com/twcable/gradle-plugin-scr
Makes it easier to work for with the Felix SCR annotations for Gradle
https://github.com/twcable/gradle-plugin-scr
Last synced: over 1 year ago
JSON representation
Makes it easier to work for with the Felix SCR annotations for Gradle
- Host: GitHub
- URL: https://github.com/twcable/gradle-plugin-scr
- Owner: TWCable
- License: apache-2.0
- Created: 2015-10-14T20:52:00.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-05-30T12:54:30.000Z (about 9 years ago)
- Last Synced: 2025-03-23T19:22:34.234Z (over 1 year ago)
- Language: Groovy
- Homepage:
- Size: 307 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Purpose #
This makes it easier to work for with
[the Felix SCR annotations](https://felix.apache.org/documentation/subprojects/apache-felix-maven-scr-plugin/scr-annotations.html)
for Gradle and Apache Felix (including Adobe CQ/AEM).
[  ](https://bintray.com/twcable/aem/gradle-plugin-scr/_latestVersion) [](https://travis-ci.org/TWCable/gradle-plugin-scr)
# Usage #
`apply plugin: 'com.twcable.scr'`
Applying the plugin implicitly applies the `osgi` plugin
and adds a dependency from the `jar` task upon `processScrAnnotations`.
## Task ##
`processScrAnnotations` - Processes the @SCR annotations to create the appropriate OSGi metadata for OSGi
Declarative Services.
By default it will also verify that every `@Reference` is to an interface, and fails the build if it is trying to link
to a class. This safety check can be disabled if needed by setting the `skipInterfaceReferenceCheck` property to
`true` on this task.
# Installation #
```
buildscript {
repositories {
maven {
url "http://dl.bintray.com/twcable/aem"
}
}
dependencies {
classpath "com.twcable.gradle:gradle-plugin-scr:"
}
}
```
Built against **Gradle 3.5** and **JDK 1.8**
# API #
https://twcable.github.io/gradle-plugin-scr/groovydoc/
# LICENSE
Copyright 2014-2017 Time Warner Cable, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
the specific language governing permissions and limitations under the License.