-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
55 lines (46 loc) · 1.12 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
plugins {
id 'groovy'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.9.1'
id 'nebula.provided-base' version '3.0.3'
}
targetCompatibility = 1.6
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
group = 'com.craigburke.gradle'
version = '1.5.0-SNAPSHOT'
ext {
artifactId = 'karma'
}
dependencies {
compile gradleApi()
compile 'org.codehaus.groovy:groovy-all:2.3.10'
compile 'com.moowork.gradle:gradle-node-plugin:1.0.0'
testCompile 'org.spockframework:spock-core:0.7-groovy-2.0'
}
publishing {
publications {
maven(MavenPublication) {
artifactId project.artifactId
from components.java
}
}
}
pluginBundle {
website = 'https://github.com/craigburke/karma-gradle'
vcsUrl = 'https://github.com/craigburke/karma-gradle'
description = 'allows you to run tests using Karma'
tags = ['jasmine', 'karma', 'qunit']
plugins {
jasmine {
id = 'com.craigburke.karma'
displayName = 'Karma Test Runner Plugin'
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}