test-aws-redshift-driver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.vmware.saas.functional.test</groupId> <artifactId>test-aws-redshift-driver</artifactId> <version>1.0.8</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/xsd/maven-4.0.0.xsd"> <parent> <artifactId>test-functional-base</artifactId> <groupId>com.vmware.saas.functional.test</groupId> <version>1.0.8</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>test-aws-redshift-driver</artifactId> <dependencies> <!-- ============================ --> <!-- Provided scope dependencies --> <!-- ============================ --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>s3</artifactId> <scope>provided</scope> </dependency> <!-- Parquet --> <dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-avro</artifactId> <scope>provided</scope> </dependency> <!-- ============================ --> <!-- Test scope dependencies --> <!-- ============================ --> <dependency> <groupId>com.vmware.saas.functional.test</groupId> <artifactId>test-local-autoconfig</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.vmware.saas.functional.test</groupId> <artifactId>test-testng</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.vmware.saas.functional.test</groupId> <artifactId>test-functional-sdk</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-core</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-jackson</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase.thirdparty</groupId> <artifactId>hbase-noop-htrace</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <suiteXmlFiles> <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> </plugins> </build> </project>