Skip to content
Draft
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,19 @@
<flogger.version>0.8</flogger.version>
<arrow.version>17.0.0</arrow.version>
<dev.cel.version>0.6.0</dev.cel.version>
<bouncycastle.version>1.80</bouncycastle.version>
<com.google.crypto.tink.version>1.16.0</com.google.crypto.tink.version>
<io.opentelemetry.contrib.opentelemetry-gcp-resources.version>1.45.0-alpha</io.opentelemetry.contrib.opentelemetry-gcp-resources.version>
<json.version>20250517</json.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
Comment on lines +53 to +57

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The dependencies in <dependencyManagement> should be sorted alphabetically by groupId and artifactId to maintain consistency and avoid merge conflicts. Please move the org.bouncycastle dependency block to its correct alphabetical position (e.g., after org.apache.arrow).

<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,5 +247,9 @@
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</dependency>
Comment on lines +250 to +253

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The dependencies in this POM should be sorted alphabetically by groupId and artifactId. Please move the org.bouncycastle dependency block before org.jspecify.

</dependencies>
</project>
Loading