maha-bigquery-executor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.maha</groupId> <artifactId>maha-bigquery-executor</artifactId> <version>6.158</version> </dependency>
<!-- Copyright 2017, Yahoo Holdings Inc. Licensed under the terms of the Apache License 2.0. Please see LICENSE file in project root for terms. --> <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.yahoo.maha</groupId> <artifactId>maha-bigquery-executor</artifactId> <packaging>jar</packaging> <parent> <groupId>com.yahoo.maha</groupId> <artifactId>maha-parent</artifactId> <version>6.158</version> </parent> <name>maha bigquery executor</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>com.yahoo.maha</groupId> <artifactId>maha-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.yahoo.maha</groupId> <artifactId>maha-core</artifactId> <version>${project.version}</version> <exclusions> <exclusion> <groupId>org.apache.druid</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> </dependency> <dependency> <groupId>org.json4s</groupId> <artifactId>json4s-core_${scala.major.version}</artifactId> </dependency> <dependency> <groupId>org.json4s</groupId> <artifactId>json4s-jackson_${scala.major.version}</artifactId> </dependency> <dependency> <groupId>org.json4s</groupId> <artifactId>json4s-ext_${scala.major.version}</artifactId> </dependency> <dependency> <groupId>org.json4s</groupId> <artifactId>json4s-scalaz_${scala.major.version}</artifactId> </dependency> <dependency> <groupId>org.scalaz</groupId> <artifactId>scalaz-core_${scala.major.version}</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-scala_${scala.major.version}</artifactId> </dependency> <dependency> <groupId>com.github.vertical-blank</groupId> <artifactId>scala-sql-formatter_${scala.major.version}</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-to-slf4j</artifactId> </dependency> <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-bigquery</artifactId> <version>${bigquery.version}</version> </dependency> <dependency> <groupId>com.google.http-client</groupId> <artifactId>google-http-client</artifactId> <version>${google.http.client.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_${scala.major.version}</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release-profile</id> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.scoverage</groupId> <artifactId>scoverage-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.scalatest</groupId> <artifactId>scalatest-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> </configuration> </execution> </executions> <configuration> <outputDirectory>${project.build.directory}</outputDirectory> <detectLinks>true</detectLinks> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>