Skip to content

Commit

Permalink
deps: grandfathering the dependencies for java-pubsublite and java-bi…
Browse files Browse the repository at this point in the history
…gquery (#2504)

Apache Arrow dependencies for java-bigquery

Flogger dependencies for java-pubsublite
  • Loading branch information
suztomo committed Feb 26, 2024
1 parent 7902a41 commit 9ceab23
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions java-shared-dependencies/third-party-dependencies/pom.xml
Expand Up @@ -24,6 +24,7 @@
<site.installationModule>${project.artifactId}</site.installationModule>

<threeten.version>1.6.8</threeten.version>
<threeten-extra.version>1.7.2</threeten-extra.version>
<javax.annotations.version>1.3.2</javax.annotations.version>
<animal-sniffer.version>1.23</animal-sniffer.version>
<opencensus.version>0.31.1</opencensus.version>
Expand All @@ -38,10 +39,27 @@
<perfmark-api.version>0.27.0</perfmark-api.version>
<j2objc-annotations.version>2.8</j2objc-annotations.version>
<opentelemetry.version>1.34.1</opentelemetry.version>
<flogger.version>0.8</flogger.version>
<arrow.version>15.0.0</arrow.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-core</artifactId>
<version>${arrow.version}</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<version>${arrow.version}</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>${arrow.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
Expand All @@ -57,6 +75,11 @@
<artifactId>threetenbp</artifactId>
<version>${threeten.version}</version>
</dependency>
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threeten-extra</artifactId>
<version>${threeten-extra.version}</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
Expand All @@ -78,6 +101,18 @@
<artifactId>error_prone_annotations</artifactId>
<version>${errorprone.version}</version>
</dependency>
<!-- Legacy exemption of java-pubsublite's flogger dependencies.
In general, let's avoid declaring logging backend dependencies -->
<dependency>
<groupId>com.google.flogger</groupId>
<artifactId>google-extensions</artifactId>
<version>${flogger.version}</version>
</dependency>
<dependency>
<groupId>com.google.flogger</groupId>
<artifactId>flogger-system-backend</artifactId>
<version>${flogger.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
Expand Down

0 comments on commit 9ceab23

Please sign in to comment.