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

Upgrade jna to version 5.14.0 for Mac M1/M2 local execution support #13018

Merged
merged 5 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions LICENSE-binary
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,8 @@ jakarta.validation:jakarta.validation-api:2.0.2
javax.inject:javax.inject:1
javax.validation:validation-api:2.0.1.Final
joda-time:joda-time:2.12.5
net.java.dev.jna:jna-platform:5.6.0
net.java.dev.jna:jna:5.5.0
net.java.dev.jna:jna-platform:5.14.0
net.java.dev.jna:jna:5.14.0
net.minidev:accessors-smart:2.5.0
net.minidev:json-smart:2.5.0
net.openhft:chronicle-analytics:2.24ea0
Expand Down
4 changes: 2 additions & 2 deletions pinot-plugins/pinot-file-system/pinot-adls/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
Copy link
Contributor

Choose a reason for hiding this comment

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

Consider moving this to the root pom

<version>5.14.0</version>
<version>${jna.version}</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
Copy link
Contributor

Choose a reason for hiding this comment

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

This override shouldn't be needed

<version>5.6.0</version>
<version>${jna.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@
<nimbus-jose-jwt.version>9.37.3</nimbus-jose-jwt.version>
<bouncycastle.version>1.78</bouncycastle.version>
<aircompressor.version>0.26</aircompressor.version>
<jna.version>5.14.0</jna.version>
</properties>

<profiles>
Expand Down Expand Up @@ -1459,7 +1460,7 @@
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.5.0</version>
<version>${jna.version}</version>
</dependency>

<dependency>
Expand Down