databend-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.databend</groupId> <artifactId>databend-client</artifactId> <version>0.4.0</version> </dependency>
<?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/maven-v4_0_0.xsd"> <parent> <artifactId>databend-base</artifactId> <groupId>com.databend</groupId> <version>0.4.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.databend</groupId> <artifactId>databend-client</artifactId> <name>databend-client</name> <version>0.4.0</version> <dependencies> <dependency> <groupId>io.airlift</groupId> <artifactId>json</artifactId> <version>219</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>guice</artifactId> <groupId>com.google.inject</groupId> </exclusion> <exclusion> <artifactId>jackson-datatype-jsr310</artifactId> <groupId>com.fasterxml.jackson.datatype</groupId> </exclusion> <exclusion> <artifactId>jackson-datatype-guava</artifactId> <groupId>com.fasterxml.jackson.datatype</groupId> </exclusion> <exclusion> <artifactId>jackson-datatype-joda</artifactId> <groupId>com.fasterxml.jackson.datatype</groupId> </exclusion> <exclusion> <artifactId>jackson-module-parameter-names</artifactId> <groupId>com.fasterxml.jackson.module</groupId> </exclusion> <exclusion> <artifactId>javax.inject</artifactId> <groupId>javax.inject</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.10</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>guice</artifactId> <groupId>com.google.inject</groupId> </exclusion> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <project.build.targetJdk>8</project.build.targetJdk> <jackson.version>2.15.2</jackson.version> <air.main.basedir>${project.parent.basedir}</air.main.basedir> </properties> </project>