Skip to content

Commit 4a65361

Browse files
authored
Changed the way parameters are set (#400)
1 parent 41ed236 commit 4a65361

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/publish-module.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ afterEvaluate {
2828
publishing {
2929
publications {
3030
release(MavenPublication) {
31-
groupId project.property("libGroup")
32-
artifactId PUBLISH_ARTIFACT_ID
33-
version project.property("libVersion")
31+
groupId = project.property("libGroup")
32+
artifactId = PUBLISH_ARTIFACT_ID
33+
version = project.property("libVersion")
3434

3535
if (project.plugins.findPlugin("com.android.library")) {
3636
from components.release

0 commit comments

Comments
 (0)