Last active
July 4, 2020 11:02
-
-
Save ktvipin27/07efad216f72fda59e11a6d10c07a4ef to your computer and use it in GitHub Desktop.
library level build.gradle file for Bintray publishing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ext { | |
| bintrayRepo = 'RoomInspector' | |
| bintrayName = 'com.ktvipin.roominspector' | |
| publishedGroupId = 'com.ktvipin' | |
| libraryName = 'library' | |
| artifact = 'roominspector' | |
| libraryDescription = 'An in-app database inspector for Room databases.' | |
| libraryVersion = '1.0.2' | |
| siteUrl = 'https://github.com/ktvipin27/RoomInspector' | |
| gitUrl = 'https://github.com/ktvipin27/RoomInspector.git' | |
| githubRepository= 'ktvipin27/RoomInspector' | |
| developerId = 'ktvipin27' | |
| developerName = 'Vipin KT' | |
| developerEmail = 'ktvipin27@gmail.com' | |
| licenseName = 'The Apache Software License, Version 2.0' | |
| licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt' | |
| allLicenses = ["Apache-2.0"] | |
| } | |
| apply from: 'https://raw.githubusercontent.com/ktvipin27/RoomInspector/master/library/publish.gradle' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment