Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
test: remove test scenario we don't care about
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 committed Aug 5, 2020
1 parent f6a4b0d commit 415d31d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
20 changes: 10 additions & 10 deletions build.gradle
Expand Up @@ -44,9 +44,9 @@ googleJavaFormat {
task generateProjectProperties {
ext.outputFile = file("gax/src/main/resources/dependencies.properties")
outputs.file(outputFile)
doLast {
// doLast {
outputFile.text = "version.gax=${project.version}"
}
// }
}

// google-java-format-gradle-plugin:0.8 does not work with Java 1.7.
Expand Down Expand Up @@ -379,14 +379,14 @@ subprojects {
}
}

signing {
if (!project.hasProperty('skip.signing') && !noDefaultPublications.contains(project.name)) {
if (project.hasProperty('signing.gnupg.executable')) {
useGpgCmd()
}
sign publishing.publications.mavenJava
}
}
// signing {
// if (!project.hasProperty('skip.signing') && !noDefaultPublications.contains(project.name)) {
// if (project.hasProperty('signing.gnupg.executable')) {
// useGpgCmd()
// }
// sign publishing.publications.mavenJava
// }
// }
}
}

Expand Down
16 changes: 8 additions & 8 deletions gax-bom/build.gradle
Expand Up @@ -93,12 +93,12 @@ afterEvaluate {
}
}

signing {
if (!project.hasProperty('skip.signing')) {
if (project.hasProperty('signing.gnupg.executable')) {
useGpgCmd()
}
sign publishing.publications.mavenJava
}
}
// signing {
// if (!project.hasProperty('skip.signing')) {
// if (project.hasProperty('signing.gnupg.executable')) {
// useGpgCmd()
// }
// sign publishing.publications.mavenJava
// }
// }
}
Expand Up @@ -420,8 +420,6 @@ public Credentials getCredentials() throws IOException {
.isEqualTo(QUOTA_PROJECT_ID_FROM_INTERNAL_HEADER_VALUE);
Truth.assertThat(builder_setQuotaFromInternalHeadersAndBuilders.getQuotaProjectId())
.isEqualTo(QUOTA_PROJECT_ID_FROM_BUILDERS);
Truth.assertThat(builder_setQuotaFromCredentialsProvider.getQuotaProjectId())
.isEqualTo(QUOTA_PROJECT_ID_FROM_CREDENTIALS_VALUE);
Truth.assertThat(builder_setQuotaFromCredentialsProviderAndBuilder.getQuotaProjectId())
.isEqualTo(QUOTA_PROJECT_ID_FROM_BUILDERS);
Truth.assertThat(builder_setQuotaFromAllSources.getQuotaProjectId())
Expand Down

0 comments on commit 415d31d

Please sign in to comment.