-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
54 lines (45 loc) · 1.17 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
group 'com.neva.gradle.plugin'
version '1.0.0'
defaultTasks = ['clean', 'install']
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: "com.gradle.plugin-publish"
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.4"
}
}
pluginBundle {
website = 'http://javarel.neva.zone/'
vcsUrl = 'https://github.com/neva-dev/gradle-scr-plugin'
description = 'Plugin for pre-processing classes annotated with Apache Felix SCR annotations. Especially useful when combined with Javarel Framework'
tags = ['osgi', 'scr', 'felix']
plugins {
scrPlugin {
id = 'neva.scr'
displayName = 'Gradle SCR Plugin'
}
}
}
dependencies {
compile gradleApi()
compile localGroovy()
compile "org.apache.felix:org.apache.felix.scr.generator:1.13.0"
compile "org.apache.felix:org.apache.felix.scr.ant:1.13.0"
}
repositories {
jcenter()
mavenCentral()
}
jar {
sourceCompatibility = 1.6
targetCompatibility = 1.6
compileJava {
options.encoding = "UTF-8"
}
}