This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
75 lines (66 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
plugins {
id 'java-gradle-plugin'
id 'maven-publish'
id 'jacoco'
id 'com.gradle.plugin-publish' version '0.21.0'
id 'org.ajoberstar.reckon' version '0.13.2'
id 'org.sonarqube' version '4.0.0.2929'
id 'be.vbgn.ci-detect' version '0.5.0'
id 'be.vbgn.dev-conventions.opinion' version '0.5.3'
id 'nebula.integtest' version '9.6.3'
}
group 'be.vbgn.gradle'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
test {
maxParallelForks = 8
}
integrationTest {
maxParallelForks = 8
dependsOn(publishToMavenLocal)
doFirst {
systemProperty "pluginVersion", project.version
}
shouldRunAfter(test)
}
sonarqube {
properties {
properties["sonar.tests"] += sourceSets.integTest.allSource.srcDirs
}
}
javadoc {
exclude '**/internal/**'
}
dependencies {
testCompile 'junit:junit:4.13.2'
testCompile 'org.mockito:mockito-inline:5.2.0'
integTestCompile 'commons-io:commons-io:2.11.0'
}
gradlePlugin {
plugins {
pluginUpdates {
id = "be.vbgn.plugin-updates"
implementationClass = "be.vbgn.gradle.pluginupdates.PluginUpdatesPlugin"
}
config {
id = "be.vbgn.plugin-updates.config"
implementationClass = "be.vbgn.gradle.pluginupdates.ConfigurationPlugin"
}
}
}
pluginBundle {
vcsUrl = "https://github.com/vierbergenlars/plugin-updates-gradle-plugin"
website = vcsUrl
description = "A gradle plugin that automatically notifies about plugins that can be updated."
tags = ["plugin", "update", "gradle-updates"]
plugins {
pluginUpdates {
displayName = "Plugin updates plugin"
}
config {
displayName = "Plugin updates plugin configuration"
}
}
}