Skip to content

Commit

Permalink
Merge branch 'release/1.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Vojtkovszky committed Aug 4, 2021
2 parents cd98aad + 2ade97a commit 4b43302
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions gradle-mvn-push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def getPublicationName() {
}

task javadocJar(type: Jar, dependsOn: dokkaJavadoc) {
archiveClassifier.set('sources')
archiveClassifier.set('javadoc')
from "$buildDir/dokka/javadoc"
}

Expand All @@ -28,7 +28,7 @@ publishing {
artifactId project.properties['artifactId']
version project.properties['versionName']
artifact getArtifactFilePath()
artifact tasks.javadocJar
artifact javadocJar

// include project dependencies
pom.withXml {
Expand All @@ -42,4 +42,8 @@ publishing {
}
}
}
}

artifacts {
archives javadocJar
}
2 changes: 1 addition & 1 deletion library/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ buildTypes=debug,release
groupId=com.github.mvojtkovszky
artifactId=SharedPreferencesManager
moduleId=library
versionName=1.3.2
versionName=1.3.3

0 comments on commit 4b43302

Please sign in to comment.