-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (42 loc) · 1.08 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
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies{
classpath 'com.gradle.publish:plugin-publish-plugin:0.9.6'
}
}
apply plugin: 'idea'
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'com.gradle.plugin-publish'
sourceCompatibility = 1.8
repositories{
jcenter()
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.7'
compile gradleApi()
compile localGroovy()
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
testCompile 'junit:junit:4.12'
}
version = '0.0.1'
group = 'me.rexim.morganey'
pluginBundle {
website = 'https://morganey-lang.github.io/'
vcsUrl = 'https://github.com/morganey-lang/morganey-gradle-plugin'
description = 'Plugin To Support Packaging Morganey Files With Gradle'
tags = ['language', 'integration', 'packaging']
plugins {
morganeyPlugin {
id = 'me.rexim.morganey'
displayName = 'Morganey Language Plugin'
}
}
}