You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Keep it as lazy as possible while ensuring values show up correctly in 'gradlew properties',
144
175
// since these Gradle properties and the maven-publish plugin don't support Providers.
145
176
146
-
description ="${-> ext.lazyDescription.get()}"
147
-
version ="${-> ext.lazyVersion.get()}"
148
-
group ="${-> ext.lazyGroup.get()}"
177
+
description ="${-> lazyDescription.get()}"
178
+
version ="${-> ext.lazyVersion.get()}"
179
+
group ="${-> lazyGroup.get()}"
149
180
150
181
publishing {
151
182
publications {
152
183
maven(MavenPublication) {
153
-
groupId ='com.github.micro5k'
154
-
artifactId ="${-> getProjectId().get()}"
155
-
version ="${-> getMavenVersion().get()}"
184
+
groupId ="com.github.${-> lazyOrg.get() }"
185
+
artifactId ="${-> getProjectId().get()}"
186
+
version ="${-> getMavenVersion().get()}"
156
187
pom {
157
-
name ="${-> project.name}"
188
+
name ="${-> project.name}"
158
189
packaging ='zip'
159
190
160
191
licenses {
161
192
license {
162
-
name ='GPL-3.0-or-later WITH LicenseRef-Archive-packaging-exception'
193
+
name ="${-> lazyLicense.get() }"
163
194
url ='https://www.gnu.org/licenses/gpl-3.0.txt'
164
195
distribution ='repo'
165
-
comments ='Licensed under GNU General Public License v3.0 or later with Archive Packaging Exception. Full license texts are available in LICENSES within the ZIP.'
196
+
comments ='The full text of the licenses can be found in the LICENSES directory contained in the ZIP archive.'
0 commit comments