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

chore(deps): update dependency gradle to v5 #425

Merged
merged 2 commits into from
Apr 15, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Empty file.
4 changes: 2 additions & 2 deletions features/support/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# Install latest versions of bugsnag-android(-ndk)
run_required_commands([
["./gradlew", "clean", "sdk:assembleRelease", "ndk:assembleRelease"],
["cp", "sdk/build/outputs/aar/bugsnag-android-release.aar",
["cp", "sdk/build/outputs/aar/bugsnag-android-*.aar",
"features/fixtures/mazerunner/libs/bugsnag-android.aar"],
["cp", "ndk/build/outputs/aar/bugsnag-android-ndk-release.aar",
["cp", "ndk/build/outputs/aar/bugsnag-android-ndk-*.aar",
"features/fixtures/mazerunner/libs/bugsnag-android-ndk.aar"],
])

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.3.1-all.zip
2 changes: 1 addition & 1 deletion ndk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ publishing {
artifactId 'bugsnag-android-ndk'
version "${project.VERSION_NAME}"
artifact(sourceJar)
artifact("$buildDir/outputs/aar/bugsnag-android-ndk-release.aar")
artifact("$buildDir/outputs/aar/bugsnag-android-ndk-${project.VERSION_NAME}.aar")

pom.withXml {
Node root = asNode()
Expand Down
2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ publishing {
artifactId 'bugsnag-android'
version "${project.VERSION_NAME}"
artifact(sourceJar)
artifact("$buildDir/outputs/aar/bugsnag-android-release.aar")
artifact("$buildDir/outputs/aar/bugsnag-android-${project.VERSION_NAME}.aar")

pom.withXml {
Node root = asNode()
Expand Down