-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes to Gradle config to ensure we can publish 0.1.1 (#237)
* Gradle config to ensure we can publish * Fix pom packageing type. should be AAR thanks Niall
- Loading branch information
Showing
5 changed files
with
38 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,11 +23,12 @@ kotlin.code.style=official | |
# resources declared in the library itself and none from the library's dependencies, | ||
# thereby reducing the size of the R class for that library | ||
android.nonTransitiveRClass=true | ||
# Maven details | ||
# Maven details, note NEXUS_USERNAME and NEXUS_PASSWORD are not defined here in git, they are | ||
# private to the author. | ||
VERSION_NAME=0.1.1 | ||
VERSION_CODE=11 | ||
GROUP=com.scottyab | ||
POM_DESCRIPTION=A tasty root checker library and sample app. We've scoured the internets for different methods of answering that age old question... Has this device got root? | ||
POM_DESCRIPTION=A tasty root checker library. We've scoured the internets for different methods of answering that age old question... Has this device got root? | ||
POM_URL=https://github.com/scottyab/rootbeer.git | ||
POM_SCM_URL=https://github.com/scottyab/rootbeer.git | ||
POM_SCM_CONNECTION=scm:[email protected]:scottyab/rootbeer.git | ||
|
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,4 +1,4 @@ | ||
# Module Gradle settings. | ||
POM_NAME=rootbeer | ||
POM_ARTIFACT_ID=rootbeer-lib | ||
POM_PACKAGING=jar | ||
POM_PACKAGING=aar |
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