forked from srs/gradle-node-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
31 lines (26 loc) · 926 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
buildscript {
apply from: "$rootDir/gradle/buildscript.gradle", to: buildscript
}
group = 'com.moowork.gradle'
apply plugin: 'idea'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply from: "$rootDir/gradle/additional-artifacts.gradle"
apply from: "$rootDir/gradle/integration-test.gradle"
apply from: "$rootDir/gradle/coverage.gradle"
apply from: "$rootDir/gradle/travis-ci.gradle"
apply from: "$rootDir/gradle/publishing.gradle"
ext.compatibilityVersion = '1.6'
sourceCompatibility = compatibilityVersion
targetCompatibility = compatibilityVersion
repositories {
jcenter()
}
dependencies {
compile files( gradleApi().resolve().findAll { !it.name.startsWith( 'xerces' ) && !it.name.startsWith( 'xml-apis' ) } )
testCompile 'com.netflix.nebula:nebula-test:3.1.0'
testCompile( 'org.spockframework:spock-core:1.0-groovy-2.4' ) {
exclude module: 'groovy-all'
}
}