databricks-connect
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.databricks</groupId> <artifactId>databricks-connect</artifactId> <version>16.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- DATABRICKS CONFIDENTIAL & PROPRIETARY __________________ Copyright 2023 Databricks, Inc. All Rights Reserved. NOTICE: All information contained herein is, and remains the property of Databricks, Inc. and its suppliers, if any. The intellectual and technical concepts contained herein are proprietary to Databricks, Inc. and its suppliers and may be covered by U.S. and foreign Patents, patents in process, and are protected by trade secret and/or copyright law. Dissemination, use, or reproduction of this information is strictly forbidden unless prior written permission is obtained from Databricks, Inc. If you view or obtain a copy of this information and believe Databricks, Inc. may not have intended it to be made available, please promptly report it to Databricks Legal Department @ legal@databricks.com. --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.databricks</groupId> <artifactId>databricks-connect</artifactId> <name>Databricks Connect for Scala</name> <description>Develop locally and connect IDEs, notebook servers and running applications to Databricks clusters.</description> <url>https://docs.databricks.com/en/dev-tools/databricks-connect-ref.html</url> <version>16.3.0</version> <scm> <url>private</url> </scm> <developers> <developer> <organization>Databricks</organization> <organizationUrl>https://www.databricks.com/</organizationUrl> </developer> </developers> <licenses> <license> <name>DB License</name> <url>https://www.databricks.com/legal/db-license</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <repository> <!-- To publish this project, 1. delete the "local-release" repo 2. uncomment the "ossrh" repo 3. delete the <repositories> section 4. uncomment the "maven-gpg-plugin" repo See https://databricks.atlassian.net/wiki/spaces/UN/pages/3219325097/ for details. --> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.scala-lang.modules</groupId> <artifactId>scala-collection-compat_2.12</artifactId> <version>2.12.0</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-reflect</artifactId> <version>[2.11.0,)</version> </dependency> <dependency> <groupId>com.databricks</groupId> <artifactId>databricks-sdk-java</artifactId> <!-- This version should match the version in the maven-trees/.../pom.xml and project/SparkBuild.scala --> <version>0.27.0</version> </dependency> <dependency> <groupId>com.databricks</groupId> <artifactId>databricks-dbutils-scala_2.12</artifactId> <version>[0.1.4, 0.2.0)</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.10</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.20.0</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.20.0</version> </dependency> <!-- ES-1099838: Refer comment in client/jvm/BUILD.bazel --> <dependency> <groupId>org.json4s</groupId> <artifactId>json4s-core_2.12</artifactId> <version>4.0.7</version> </dependency> <dependency> <groupId>org.json4s</groupId> <artifactId>json4s-jackson_2.12</artifactId> <version>4.0.7</version> </dependency> <dependency> <groupId>org.json4s</groupId> <artifactId>json4s-ast_2.12</artifactId> <version>4.0.7</version> </dependency> </dependencies> <build> <plugins> <plugin> <!-- Maven Central mandates that all published artifacts must contain a javadoc and sources JAR. However, they can be empty. Generate an empty sources JAR and use the files in javadoc to generate a -javadoc.jar. --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${basedir}/javadoc</classesDirectory> </configuration> </execution> <execution> <id>sources-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>sources</classifier> <classesDirectory>${basedir}/sources</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <passphraseServerId>ossrh</passphraseServerId> <keyname>E86E3BC847CFF76620D87336E4B6ED6916D50E0B</keyname> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>