-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (39 loc) · 1.03 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
plugins {
id "com.gradle.plugin-publish" version "0.9.10"
}
apply plugin: 'eclipse'
repositories {
mavenCentral()
}
group = 'com.bisnode'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
jar {
// include license into jar
into 'META-INF', {
from 'LICENSE'
}
}
dependencies {
compile gradleApi()
compile localGroovy()
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
}
task wrapper(type: Wrapper) {
gradleVersion = "4.7"
}
// The configuration example below shows the minimum required properties
// configured to publish your plugin to the plugin portal
pluginBundle {
website = 'http://www.bisnode.com/'
vcsUrl = 'https://github.com/gradle/gradle'
description = 'Check your project dependencies for incompatible versions'
tags = ['version', 'check', 'dependencies']
plugins {
greetingsPlugin {
id = 'com.bisnode.version-check'
displayName = 'Gradle VersionCheck plugin'
}
}
}