-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
78 lines (67 loc) · 2.52 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
plugins {
id 'com.netflix.nebula.plugin-plugin' version '21.2.2'
id "org.jetbrains.kotlin.jvm" version "2.1.0"
}
repositories {
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation "com.github.node-gradle:gradle-node-plugin:7.0.1"
testImplementation 'cglib:cglib-nodep:3.2.4'
testImplementation 'org.apache.commons:commons-io:1.3.2'
testImplementation 'uk.org.webcompere:system-stubs-junit4:2.0.1'
}
contacts {
moniker 'Nebula Plugins Maintainers'
github 'nebula-plugins'
}
}
gradlePlugin {
plugins {
nebulaGruntLegacy {
id = 'nebula.grunt'
displayName = 'nebula.grunt'
description = 'Plugins to ease use of Node tools (Node, Grunt, Gulp)'
implementationClass = 'com.moowork.gradle.grunt.GruntPlugin'
tags.set(['nebula', 'grunt'])
}
nebulaGulpLegacy {
id = 'nebula.gulp'
displayName = 'nebula.gulp'
description = 'Plugins to ease use of Node tools (Node, Grunt, Gulp)'
implementationClass = 'com.moowork.gradle.gulp.GulpPlugin'
tags.set(['nebula', 'gulp'])
}
nebulaNodeLegacy {
id = 'nebula.node'
displayName = 'nebula.node'
description = 'Plugins to ease use of Node tools (Node, Grunt, Gulp)'
implementationClass = 'com.moowork.gradle.node.NodePlugin'
tags.set(['nebula', 'node'])
}
nebulaGrunt {
id = 'com.netflix.nebula.grunt'
displayName = 'com.netflix.nebula.grunt'
implementationClass = 'com.moowork.gradle.grunt.GruntPlugin'
description = 'Plugins to ease use of Node tools (Node, Grunt, Gulp)'
tags.set(['nebula', 'grunt'])
}
nebulaGulp {
id = 'com.netflix.nebula.gulp'
displayName = 'com.netflix.nebula.gulp'
implementationClass = 'com.moowork.gradle.gulp.GulpPlugin'
description = 'Plugins to ease use of Node tools (Node, Grunt, Gulp)'
tags.set(['nebula', 'gulp'])
}
nebulaNode {
id = 'com.netflix.nebula.node'
displayName = 'com.netflix.nebula.node'
implementationClass = 'com.moowork.gradle.node.NodePlugin'
description = 'Plugins to ease use of Node tools (Node, Grunt, Gulp)'
tags.set(['nebula', 'node'])
}
}
}
description = 'Plugins to ease use of Node tools (Node, Grunt, Gulp)'