Skip to content
Open
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
4 changes: 2 additions & 2 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<project.youtube.analytics.version>v1-rev63-1.22.0</project.youtube.analytics.version>
<project.youtube.reporting.version>v1-rev10-1.22.0</project.youtube.reporting.version>
<project.http.version>1.20.0</project.http.version>
Copy link

Copilot AI Jan 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The google-http-client dependency (version 1.20.0) may be incompatible with the upgraded google-oauth-client-jetty (version 1.39.0). According to the Google OAuth Client library compatibility guidelines, version 1.39.0 typically requires google-http-client version 1.39.0 or compatible versions. Consider upgrading project.http.version to 1.39.0 or a compatible version to ensure proper interoperability between these dependencies.

Suggested change
<project.http.version>1.20.0</project.http.version>
<project.http.version>1.39.0</project.http.version>

Copilot uses AI. Check for mistakes.
<project.oauth.version>1.20.0</project.oauth.version>
<project.oauth.version>1.39.0</project.oauth.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -85,7 +85,7 @@
<configuration>
<source>1.6</source>
<target>1.6</target>
Comment on lines 86 to 87
Copy link

Copilot AI Jan 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The project is configured to compile with Java 1.6 source and target versions, but google-oauth-client-jetty version 1.39.0 requires Java 7 or higher. This will likely cause compilation failures. You need to update the source and target versions to at least 1.7 to be compatible with the upgraded dependency.

Copilot uses AI. Check for mistakes.
<compilerArgument></compilerArgument>
<compilerArgument/>
</configuration>
</plugin>
</plugins>
Expand Down