-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
35 lines (30 loc) · 829 Bytes
/
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
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.4"
} }
plugins {
id 'groovy'
id 'java-gradle-plugin'
}
apply plugin: "com.gradle.plugin-publish"
apply plugin: 'com.mattwhipple.emacs-jdee'
dependencies {
compile gradleApi()
compile localGroovy()
}
pluginBundle {
website = 'https://github.com/mwhipple/gradle-emacs-jdee'
vcsUrl = 'https://github.com/mwhipple/gradle-emacs-jdee'
description = 'Gradle plugin to generate JDEE prj.el file for emacs'
tags = ['emacs']
plugins {
emacsJdeePlugin {
id = 'com.mattwhipple.emacs-jdee'
displayName = 'Emacs JDEE Plugin'
} } }
task wrapper(type: Wrapper) {
gradleVersion='2.12'
}