This repository has been archived by the owner on Feb 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #381 from rey5137/dev
Release 1.2.4
- Loading branch information
Showing
5 changed files
with
90 additions
and
87 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,33 @@ | ||
ext { | ||
bintrayUser = project.hasProperty('BINTRAY_USERNAME') ? BINTRAY_USERNAME : "" | ||
bintrayApiKey = project.hasProperty('BINTRAY_APIKEY') ? BINTRAY_APIKEY : "" | ||
bintrayGpgPassword = project.hasProperty('GPG_PASSWORD') ? GPG_PASSWORD : "" | ||
|
||
mavenUser = project.hasProperty('NEXUS_USERNAME') ? NEXUS_USERNAME : "" | ||
mavenPassword = project.hasProperty('NEXUS_PASSWORD') ? NEXUS_PASSWORD : "" | ||
mavenReleaseRepo = project.hasProperty('RELEASE_REPOSITORY_URL') ? RELEASE_REPOSITORY_URL : "https://oss.sonatype.org/service/local/staging/deploy/maven2/" | ||
mavenSnapshotRepo = project.hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL : "https://oss.sonatype.org/content/repositories/snapshots/" | ||
|
||
bintrayRepo = 'maven' | ||
bintrayName = 'material' | ||
|
||
publishedGroupId = 'com.github.rey5137' | ||
libraryName = 'Material Library' | ||
artifact = 'material' | ||
libraryPackaging = 'aar' | ||
|
||
libraryDescription = 'An Android library to bring Material Design UI to pre-Lolipop Android.' | ||
|
||
siteUrl = 'https://github.com/rey5137/material' | ||
gitUrl = 'https://github.com/rey5137/material.git' | ||
|
||
libraryVersion = '1.2.3' | ||
|
||
developerId = 'rey5137' | ||
developerName = 'Rey Pham' | ||
developerEmail = 'pea5137@gmail.com' | ||
|
||
licenseName = 'The Apache Software License, Version 2.0' | ||
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
licenseDist = 'repo' | ||
allLicenses = ["Apache-2.0"] | ||
} | ||
ext.distInfo = [ | ||
bintrayUser : project.hasProperty('BINTRAY_USERNAME') ? BINTRAY_USERNAME : "", | ||
bintrayApiKey : project.hasProperty('BINTRAY_APIKEY') ? BINTRAY_APIKEY : "", | ||
bintrayGpgPassword : project.hasProperty('GPG_PASSWORD') ? GPG_PASSWORD : "", | ||
|
||
mavenUser : project.hasProperty('NEXUS_USERNAME') ? NEXUS_USERNAME : "", | ||
mavenPassword : project.hasProperty('NEXUS_PASSWORD') ? NEXUS_PASSWORD : "", | ||
mavenReleaseRepo : project.hasProperty('RELEASE_REPOSITORY_URL') ? RELEASE_REPOSITORY_URL : "https://oss.sonatype.org/service/local/staging/deploy/maven2/", | ||
mavenSnapshotRepo : project.hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL : "https://oss.sonatype.org/content/repositories/snapshots/", | ||
|
||
bintrayRepo : "maven", | ||
bintrayName : "material", | ||
|
||
publishedGroupId : "com.github.rey5137", | ||
libraryName : "Material Library", | ||
libraryVersion : "1.2.4", | ||
libraryDescription : "An Android library to bring Material Design UI to pre-Lolipop Android.", | ||
artifact : "material", | ||
libraryPackaging : "aar", | ||
|
||
siteUrl : "https://github.com/rey5137/material", | ||
gitUrl : "https://github.com/rey5137/material.git", | ||
|
||
|
||
developerId : "rey5137", | ||
developerName : "Rey Pham", | ||
developerEmail : "pea5137@gmail.com", | ||
|
||
licenseName : "The Apache Software License, Version 2.0", | ||
licenseUrl : "http://www.apache.org/licenses/LICENSE-2.0.txt", | ||
licenseDist : "repo", | ||
allLicenses : ["Apache-2.0"] | ||
] |
This file contains 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
This file contains 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