-
Notifications
You must be signed in to change notification settings - Fork 97
/
build.gradle
106 lines (94 loc) · 3.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
plugins {
id 'signing'
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
id 'com.gradle.plugin-publish' version '1.3.0'
}
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'maven-publish'
group = 'com.avast.gradle'
version = version == 'unspecified' ? 'DEVELOPER-SNAPSHOT' : version
base {
archivesName = 'gradle-docker-compose-plugin'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation 'org.yaml:snakeyaml:2.3'
testImplementation gradleTestKit()
testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0'
}
test {
useJUnitPlatform()
testLogging {
events 'failed'
exceptionFormat 'full'
}
}
java {
withJavadocJar()
withSourcesJar()
}
afterEvaluate {
publishing.publications.forEach {
it.pom {
name = 'Gradle Docker Compose plugin'
description = 'Simplifies usage of Docker Compose for integration testing in Gradle environment.'
url = 'https://github.com/avast/gradle-docker-compose-plugin'
licenses {
license {
name = 'The MIT License'
url = 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id = 'augi'
name = 'Michal Augustýn'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:git://github.com/avast/gradle-docker-compose-plugin.git'
developerConnection = 'scm:git:ssh://github.com/avast/gradle-docker-compose-plugin.git'
url = 'https://github.com/avast/gradle-docker-compose-plugin'
}
}
}
}
signing {
String base64Key = System.getenv('SIGNING_KEY')
if (base64Key) {
useInMemoryPgpKeys(new String(Base64.decoder.decode(base64Key)), System.getenv('SIGNING_PASSWORD'))
sign publishing.publications
}
}
nexusPublishing {
repositories {
sonatype()
}
transitionCheckOptions {
maxRetries.set(256)
}
}
project.ext.set('gradle.publish.key', System.getenv('GRADLE_PORTAL_KEY'))
project.ext.set('gradle.publish.secret', System.getenv('GRADLE_PORTAL_SECRET'))
gradlePlugin {
website = 'https://github.com/avast/gradle-docker-compose-plugin'
vcsUrl = 'https://github.com/avast/gradle-docker-compose-plugin'
plugins {
dockerComposePlugin {
id = 'com.avast.gradle.docker-compose'
displayName = 'Gradle Docker Compose plugin'
description = 'Simplifies usage of Docker Compose for integration testing in Gradle environment.'
implementationClass = 'com.avast.gradle.dockercompose.DockerComposePlugin'
tags.set(['docker', 'docker-compose'])
}
}
}