forked from jaredsburrows/gradle-license-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (36 loc) · 1.05 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
plugins {
id "com.gradle.build-scan" version "1.10.3"
id "com.github.kt3k.coveralls" version "2.8.2"
id "com.jfrog.artifactory" version "4.4.18"
id "com.jfrog.bintray" version "1.8.0"
id "com.github.ben-manes.versions" version "0.17.0"
id "com.gradle.plugin-publish" version "0.9.9"
id "java-gradle-plugin"
id "groovy"
id "maven-publish"
id "jacoco"
}
repositories {
jcenter()
google()
}
apply from: "gradle/dependencies.gradle"
group = GROUP
version = VERSION_NAME
description = POM_DESCRIPTION
sourceCompatibility = ext.javaVersion
targetCompatibility = ext.javaVersion
dependencies {
implementation localGroovy()
compileOnly deps.gradle
testImplementation deps.gradle
testImplementation deps.kotlinGradlePlugin
testImplementation deps.spockCore, { exclude module: "groovy-all" } // Use localGroovy()
}
// Ordering matters
apply from: "gradle/scan.gradle"
apply from: "gradle/compile.gradle"
apply from: "gradle/plugin.gradle"
apply from: "gradle/publish.gradle"
apply from: "gradle/quality.gradle"
apply from: "gradle/wrapper.gradle"