-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
41 lines (34 loc) · 980 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 "com.iadams.gradle-plugin-plugin" version "0.2"
}
group = 'com.iadams.plugins'
version = '1.0-SNAPSHOT'
description = 'Gradle plugin for packaging SonarQube plugins.'
sourceCompatibility = 1.6
targetCompatibility = 1.6
dependencies {
compile 'org.codehaus.groovy.modules.http-builder:http-builder:0.7'
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4', {
exclude module: 'groovy-all'
}
}
pluginBundle {
website = 'https://github.com/iwarapter/gradle-sonar-packaging-plugin'
vcsUrl = 'https://github.com/iwarapter/gradle-sonar-packaging-plugin'
description = 'Plugin for packaging SonarQube plugins.'
tags = ['sonar', 'sonarqube']
plugins {
sonarPackagingPlugin {
id = 'com.iadams.sonar-packaging'
displayName = 'Gradle Sonar Packaging Plugin'
}
}
}
integTest {
minHeapSize = '128m'
maxHeapSize = '256m'
testLogging {
events 'started', 'failed', 'passed', 'skipped'
exceptionFormat "full"
}
}