Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating publish plugin to 0.27.0 #98

Merged
merged 2 commits into from
Jan 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Releasing
2. Update the `CHANGELOG.md` for the impending release.
3. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
4. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
5. `./gradlew clean publish -Dorg.gradle.parallel=false`
5. `./gradlew clean publish --no-configuration-cache --no-daemon --no-parallel`
6. Update the `gradle.properties` to the next SNAPSHOT version.
7. `git commit -am "Prepare next development version."`
8. `git push && git push --tags`
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ GITHUB_OWNER=uber
GITHUB_REPO=simple-store
GITHUB_DOWNLOAD_PREFIX=https\://github.com/uber/simple-store/releases/download/
GITHUB_BRANCH=master

SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true
4 changes: 2 additions & 2 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ def build = [
errorProneTestHelpers: "com.google.errorprone:error_prone_test_helpers:${versions.errorProne}",
nullAway : 'com.uber.nullaway:nullaway:0.8.0',
gradlePlugins : [
android : '7.2.2',
android : '7.4.0',
kotlin : "${versions.kotlin}",
errorProne: '2.0.1',
nullAway : '1.3.0',
protobuf : '0.8.12',
spotless : '4.3.0',
mavenPublish : '0.22.0',
mavenPublish : '0.27.0',
dokka : '1.6.10',
]
]
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Dec 01 12:24:16 PST 2020
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Loading