Fixed project gradle settings.

This commit is contained in:
2020-01-08 14:22:40 +01:00
parent 7cbd3adf92
commit 7c5156ae38
5 changed files with 18 additions and 11 deletions

View File

@ -1,5 +1,5 @@
task androidSourcesJar(type: Jar) {
classifier = 'sources'
archiveClassifier.set("sources")
from android.sourceSets.main.java.source
}
@ -36,6 +36,13 @@ if (secretPropsFile.exists()) {
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
}
nexusStaging {
packageGroup = PUBLISH_GROUP_ID
stagingProfileId = '2097bad464f778'
username = ossrhUsername
password = ossrhPassword
}
publishing {
publications {
release(MavenPublication) {