forked from shevek/gradle-license3j-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (36 loc) · 788 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
36
37
38
39
40
41
plugins {
id 'java-gradle-plugin'
id 'maven-publish'
}
group = "org.anarres.gradle"
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation localGroovy()
implementation 'com.google.code.findbugs:annotations:3.0.1'
implementation 'org.anarres.mirrors.license3j:license3j:3.1.0.2'
}
gradlePlugin {
plugins {
keys {
id = 'org.anarres.license3j.keys'
implementationClass = 'org.anarres.gradle.plugin.license3j.License3jKeysPlugin'
}
license {
id = 'org.anarres.license3j'
implementationClass = 'org.anarres.gradle.plugin.license3j.License3jPlugin'
}
}
}
test {
testLogging {
showExceptions true
exceptionFormat "full"
showStandardStreams true
}
}