-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
141 lines (123 loc) · 4.61 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "io.github.gradle-nexus:publish-plugin:1.0.0"
}
}
plugins {
id 'java-gradle-plugin'
id 'groovy'
id 'maven-publish'
id 'signing'
id 'com.gradle.plugin-publish' version '0.16.0'
}
apply plugin: 'io.github.gradle-nexus.publish-plugin'
repositories {
mavenCentral()
}
version project.projectVersion
group "io.github.zkgroovy"
ext {
isReleaseVersion = !version.endsWith("SNAPSHOT")
it."signing.keyId" = project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : System.getenv('SIGNING_KEY_ID')
it."signing.secretKeyRingFile" = project.hasProperty("signing.secretKeyRingFile") ? project.getProperty('signing.secretKeyRingFile') : "${System.properties['user.home']}${File.separator}.gnupg${File.separator}secring.gpg"
it."signing.password" = project.hasProperty("signing.password") ? project.getProperty('signing.password') : System.getenv('SIGNING_PASSWORD')
}
dependencies {
// Use the awesome Spock testing and specification framework
// testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
}
pluginBundle {
website = 'https://github.com/groovyzk/grailszk-gradle-plugin#readme'
vcsUrl = 'https://github.com/groovyzk/grailszk-gradle-plugin.git'
tags = ['grailszk', 'zk', 'grails']
}
gradlePlugin {
plugins {
grailszkPlugin {
id = 'io.github.zkgroovy.grailszk-gradle-plugin'
displayName = 'Grailszk Gradle Plugin'
description = 'Gradle plugin for configuring Grailszk asset and compilation structure.'
implementationClass = 'io.github.zkgroovy.GrailszkGradlePlugin'
}
}
}
// Add a source set for the functional test suite
sourceSets {
functionalTest {
}
}
gradlePlugin.testSourceSets(sourceSets.functionalTest)
configurations.functionalTestImplementation.extendsFrom(configurations.testImplementation)
// Add a task to run the functional tests
tasks.register('functionalTest', Test) {
testClassesDirs = sourceSets.functionalTest.output.classesDirs
classpath = sourceSets.functionalTest.runtimeClasspath
useJUnitPlatform()
}
tasks.named('check') {
// Run the functional tests as part of `check`
dependsOn(tasks.functionalTest)
}
tasks.named('test') {
// Use JUnit Platform for unit tests.
useJUnitPlatform()
}
java {
withJavadocJar()
withSourcesJar()
}
publishing {
publications {
pluginMaven(MavenPublication) {
pom {
name = project.name.replace('-', ' ').capitalize()
description = 'Gradle plugin for configuring Grailszk asset and compilation structure.'
url = 'https://github.com/groovyzk/grailszk-gradle-plugin#readme'
licenses {
license {
name = 'LGPL 3.0'
url = 'https://github.com/groovyzk/grailszk-gradle-plugin/blob/main/LICENSE'
}
}
developers {
developer {
id = 'maiconandsilva'
name = 'Maicon Mauricio'
email = 'maicon.dev@pm.me'
}
}
scm {
url = 'https://github.com/groovyzk/grailszk-gradle-plugin/tree/main'
connection = 'scm:git:git://github.com/groovyzk/grailszk-gradle-plugin.git'
developerConnection = 'scm:git:ssh://github.com:groovyzk/grailszk-gradle-plugin.git'
}
}
}
}
}
afterEvaluate {
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("publish") }
sign publishing.publications.pluginMaven
}
}
tasks.withType(Sign) {
onlyIf { isReleaseVersion }
}
nexusPublishing {
repositories {
sonatype {
def ossUser = System.getenv("SONATYPE_USERNAME") ?: project.hasProperty("sonatypeOssUsername") ? project.sonatypeOssUsername : ''
def ossPass = System.getenv("SONATYPE_PASSWORD") ?: project.hasProperty("sonatypeOssPassword") ? project.sonatypeOssPassword : ''
def ossStagingProfileId = System.getenv("SONATYPE_STAGING_PROFILE_ID") ?: project.hasProperty("sonatypeOssStagingProfileId") ? project.sonatypeOssStagingProfileId : ''
nexusUrl = uri("https://s01.oss.sonatype.org/service/local/")
snapshotRepositoryUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
username = ossUser
password = ossPass
stagingProfileId = ossStagingProfileId
}
}
}