-
Notifications
You must be signed in to change notification settings - Fork 40
[PECOBLR-747] Thin jar #987
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
63a3aea
add thin pom
shivam2680 d8645ea
fix script for thin-pom
shivam2680 42985fe
correct approach
shivam2680 c31ddd8
Merge branch 'main' into thin-jar
shivam2680 96e6807
update release process
shivam2680 cb01d78
add version to thin pom
shivam2680 5172cb8
add next_changelog
shivam2680 f69e903
don't deploy thin jar artifacts in databricks-jdbc
shivam2680 6cb8960
delete wrong sed command
shivam2680 b482e87
Merge branch 'main' into thin-jar
shivam2680 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,209 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <groupId>com.databricks</groupId> | ||
| <artifactId>databricks-jdbc-thin</artifactId> | ||
| <version>1.0.9-oss</version> | ||
| <packaging>jar</packaging> | ||
| <name>Databricks JDBC Driver Thin</name> | ||
| <description>Databricks JDBC Driver Thin JAR - requires external dependencies.</description> | ||
| <url>https://github.com/databricks/databricks-jdbc</url> | ||
|
|
||
| <licenses> | ||
| <license> | ||
| <name>Apache License, Version 2.0</name> | ||
| <url>https://github.com/databricks/databricks-jdbc/blob/main/LICENSE</url> | ||
| </license> | ||
| </licenses> | ||
|
|
||
| <developers> | ||
| <developer> | ||
| <name>Databricks JDBC Team</name> | ||
| <email>eng-oss-sql-driver@databricks.com</email> | ||
| <organization>Databricks</organization> | ||
| <organizationUrl>https://www.databricks.com</organizationUrl> | ||
| </developer> | ||
| </developers> | ||
|
|
||
| <scm> | ||
| <connection>scm:git:https://github.com/databricks/databricks-jdbc.git</connection> | ||
| <developerConnection>scm:git:https://github.com/databricks/databricks-jdbc.git</developerConnection> | ||
| <url>https://github.com/databricks/databricks-jdbc</url> | ||
| </scm> | ||
|
|
||
| <issueManagement> | ||
| <system>GitHub Issues</system> | ||
| <url>https://github.com/databricks/databricks-jdbc/issues</url> | ||
| </issueManagement> | ||
|
|
||
| <dependencies> | ||
| <!-- Databricks SDK --> | ||
| <dependency> | ||
| <groupId>com.databricks</groupId> | ||
| <artifactId>databricks-sdk-java</artifactId> | ||
| <version>0.60.0</version> | ||
| </dependency> | ||
|
|
||
| <!-- Apache Commons --> | ||
| <dependency> | ||
| <groupId>org.apache.commons</groupId> | ||
| <artifactId>commons-lang3</artifactId> | ||
| <version>3.18.0</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.commons</groupId> | ||
| <artifactId>commons-configuration2</artifactId> | ||
| <version>2.10.1</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>commons-io</groupId> | ||
| <artifactId>commons-io</artifactId> | ||
| <version>2.14.0</version> | ||
| </dependency> | ||
|
|
||
| <!-- Apache Arrow for columnar data --> | ||
| <dependency> | ||
| <groupId>org.apache.arrow</groupId> | ||
| <artifactId>arrow-memory-core</artifactId> | ||
| <version>17.0.0</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.arrow</groupId> | ||
| <artifactId>arrow-memory-unsafe</artifactId> | ||
| <version>17.0.0</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.arrow</groupId> | ||
| <artifactId>arrow-vector</artifactId> | ||
| <version>17.0.0</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.arrow</groupId> | ||
| <artifactId>arrow-memory-netty</artifactId> | ||
| <version>17.0.0</version> | ||
| </dependency> | ||
|
|
||
| <!-- HTTP Client --> | ||
| <dependency> | ||
| <groupId>org.apache.httpcomponents</groupId> | ||
| <artifactId>httpclient</artifactId> | ||
| <version>4.5.14</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.httpcomponents.client5</groupId> | ||
| <artifactId>httpclient5</artifactId> | ||
| <version>5.3.1</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.httpcomponents.core5</groupId> | ||
| <artifactId>httpcore5</artifactId> | ||
| <version>5.3.1</version> | ||
| </dependency> | ||
|
|
||
| <!-- Thrift --> | ||
| <dependency> | ||
| <groupId>org.apache.thrift</groupId> | ||
| <artifactId>libthrift</artifactId> | ||
| <version>0.19.0</version> | ||
| </dependency> | ||
|
|
||
| <!-- Logging --> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-api</artifactId> | ||
| <version>2.0.13</version> | ||
| </dependency> | ||
|
|
||
| <!-- Google libraries --> | ||
| <dependency> | ||
| <groupId>com.google.code.findbugs</groupId> | ||
| <artifactId>annotations</artifactId> | ||
| <version>3.0.1</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.guava</groupId> | ||
| <artifactId>guava</artifactId> | ||
| <version>33.0.0-jre</version> | ||
| </dependency> | ||
|
|
||
| <!-- Security libraries --> | ||
| <dependency> | ||
| <groupId>com.nimbusds</groupId> | ||
| <artifactId>nimbus-jose-jwt</artifactId> | ||
| <version>10.0.2</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.bouncycastle</groupId> | ||
| <artifactId>bcprov-jdk18on</artifactId> | ||
| <version>1.78.1</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.bouncycastle</groupId> | ||
| <artifactId>bcpkix-jdk18on</artifactId> | ||
| <version>1.78.1</version> | ||
| </dependency> | ||
|
|
||
| <!-- Jackson JSON processing --> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-databind</artifactId> | ||
| <version>2.18.3</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-annotations</artifactId> | ||
| <version>2.18.3</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-core</artifactId> | ||
| <version>2.18.3</version> | ||
| </dependency> | ||
|
|
||
| <!-- Compression --> | ||
| <dependency> | ||
| <groupId>org.lz4</groupId> | ||
| <artifactId>lz4-java</artifactId> | ||
| <version>1.8.0</version> | ||
| </dependency> | ||
|
|
||
| <!-- gRPC Context --> | ||
| <dependency> | ||
| <groupId>io.grpc</groupId> | ||
| <artifactId>grpc-context</artifactId> | ||
| <version>1.71.0</version> | ||
| </dependency> | ||
|
|
||
| <!-- Netty --> | ||
| <dependency> | ||
| <groupId>io.netty</groupId> | ||
| <artifactId>netty-common</artifactId> | ||
| <version>4.2.0.Final</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.netty</groupId> | ||
| <artifactId>netty-buffer</artifactId> | ||
| <version>4.2.0.Final</version> | ||
| </dependency> | ||
|
|
||
| <!-- Jakarta Annotations --> | ||
| <dependency> | ||
| <groupId>jakarta.annotation</groupId> | ||
| <artifactId>jakarta.annotation-api</artifactId> | ||
| <version>1.3.5</version> | ||
| </dependency> | ||
|
|
||
| <!-- Resilience4j circuit breaker --> | ||
| <dependency> | ||
| <groupId>io.github.resilience4j</groupId> | ||
| <artifactId>resilience4j-circuitbreaker</artifactId> | ||
| <version>1.7.0</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.github.resilience4j</groupId> | ||
| <artifactId>resilience4j-core</artifactId> | ||
| <version>1.7.0</version> | ||
| </dependency> | ||
| </dependencies> | ||
| </project> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not required, this is already taken care in the below patch where we say :
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is for github release artifacts and not maven release artifacts