Skip to content

Commit

Permalink
Factor out common variables for publishing
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=135215320
  • Loading branch information
ojw28 committed Oct 5, 2016
1 parent 7c3fe15 commit 1b90b7c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,10 @@ allprojects {
compileSdkVersion=24
targetSdkVersion=24
buildToolsVersion='23.0.3'
releaseRepoName = 'exoplayer'
releaseUserOrg = 'google'
releaseGroupId = 'com.google.android.exoplayer'
releaseVersion = 'r2.0.1'
releaseWebsite = 'https://github.com/google/ExoPlayer'
}
}
10 changes: 5 additions & 5 deletions extensions/okhttp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ dependencies {
}

publish {
repoName = 'exoplayer'
userOrg = 'google'
groupId = 'com.google.android.exoplayer'
artifactId = 'extension-okhttp'
version = 'r2.0.1'
description = 'An OkHttp extension for ExoPlayer.'
website = 'https://github.com/google/ExoPlayer'
repoName = releaseRepoName
userOrg = releaseUserOrg
groupId = releaseGroupId
version = releaseVersion
website = releaseWebsite
}
10 changes: 5 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ android.libraryVariants.all { variant ->
}

publish {
repoName = 'exoplayer'
userOrg = 'google'
groupId = 'com.google.android.exoplayer'
artifactId = 'exoplayer'
version = 'r2.0.1'
description = 'The ExoPlayer library.'
website = 'https://github.com/google/ExoPlayer'
repoName = releaseRepoName
userOrg = releaseUserOrg
groupId = releaseGroupId
version = releaseVersion
website = releaseWebsite
}

0 comments on commit 1b90b7c

Please sign in to comment.