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

Fix a11y-base version to avoid dependency convergence issue #495

Merged
Merged
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
10 changes: 8 additions & 2 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
<opencensus.version>0.31.1</opencensus.version><!-- mess in google-pubsub and grpc deps; should be rather stable as OpenCensus has been sunsetted already - see https://github.com/GoogleCloudPlatform/cloud-opensource-java/issues/862 -->
<threeten.version>1.6.8</threeten.version><!-- mess in google-cloud-core transitive deps -->
<perfmark-api.version>0.26.0</perfmark-api.version><!-- mess in grpc-core and google-cloud-secretmanager-->
<conscrypt-version>2.5.2</conscrypt-version><!-- mess in google-cloud-bigquery and the other google cloud lib-->
<conscrypt.version>2.5.2</conscrypt.version><!-- mess in google-cloud-bigquery and the other google cloud lib-->
<a11y-base.version>24.1.6</a11y-base.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -83,7 +84,12 @@
<dependency>
<groupId>org.conscrypt</groupId>
<artifactId>conscrypt-openjdk-uber</artifactId>
<version>${conscrypt-version}</version>
<version>${conscrypt.version}</version>
</dependency>
<dependency>
<groupId>org.mvnpm.at.vaadin</groupId>
<artifactId>a11y-base</artifactId>
<version>${a11y-base.version}</version>
</dependency>

<!-- Google Cloud Services Extensions -->
Expand Down
Loading