Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
suntrix committed Feb 2, 2019
1 parent f7e842e commit dd72b68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ buildscript {
bintrayUser = System.getenv('BINTRAY_USER')
bintrayAPIKey = System.getenv('BINTRAY_API_KEY')
bintrayGPGPassword = System.getenv('BINTRAY_GPG_PASSWORD')

groupId = 'org.mobiletoolkit.android.databinding'
vcsUrl = 'https://github.com/MobileToolkit/databinding-android.git'
}
repositories {
google()
Expand Down
6 changes: 3 additions & 3 deletions databinding-dagger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ dependencies {
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${rootProject.ext.kotlinVersion}"
}

archivesBaseName = 'org.mobiletoolkit.android.databinding.databindingdagger'
archivesBaseName = "${rootProject.ext.groupId}.databindingdagger"

publishing {
publications {
dagger(MavenPublication) {
groupId = 'org.mobiletoolkit.android.databinding'
groupId = rootProject.ext.groupId
artifactId = 'databinding-dagger'
version = android.defaultConfig.versionName

Expand All @@ -83,7 +83,7 @@ bintray {
name = project.name
userOrg = 'mobiletoolkit'
licenses = ['MIT']
vcsUrl = 'https://github.com/MobileToolkit/databinding-android.git'
vcsUrl = rootProject.ext.vcsUrl

version {
name = android.defaultConfig.versionName
Expand Down
6 changes: 3 additions & 3 deletions databinding/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ dependencies {
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${rootProject.ext.kotlinVersion}"
}

archivesBaseName = 'org.mobiletoolkit.android.databinding.databinding'
archivesBaseName = "${rootProject.ext.groupId}.databinding"

publishing {
publications {
databinding(MavenPublication) {
groupId = 'org.mobiletoolkit.android.databinding'
groupId = rootProject.ext.groupId
artifactId = 'databinding'
version = android.defaultConfig.versionName

Expand All @@ -76,7 +76,7 @@ bintray {
name = project.name
userOrg = 'mobiletoolkit'
licenses = ['MIT']
vcsUrl = 'https://github.com/MobileToolkit/databinding-android.git'
vcsUrl = rootProject.ext.vcsUrl

version {
name = android.defaultConfig.versionName
Expand Down

0 comments on commit dd72b68

Please sign in to comment.