Skip to content

Commit

Permalink
ExpediaGroup#197 - In Progress: glue support
Browse files Browse the repository at this point in the history
  • Loading branch information
rtotaro committed Apr 22, 2021
1 parent 340b0a6 commit f25105b
Show file tree
Hide file tree
Showing 52 changed files with 10,433 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,16 @@
<module>waggle-dance-boot</module>
<module>waggle-dance-integration-tests</module>
<module>waggle-dance</module>
<module>waggle-dance-rpm</module>
<module>waggle-dance-glue</module>
<!-- <module>waggle-dance-rpm</module>-->
</modules>

<properties>
<maven.release.plugin.version>2.5.3</maven.release.plugin.version>
<spring-boot.version>2.0.4.RELEASE</spring-boot.version>
<hadoop.version>2.7.2</hadoop.version>
<hadoop.version>3.1.0</hadoop.version>
<hamcrest.version>2.2</hamcrest.version>
<hive.version>2.3.7</hive.version>
<hive.version>3.0.0</hive.version>
<junit.version>4.13.1</junit.version>
<mockito.version>3.5.15</mockito.version>
<dropwizard.metrics.version>3.1.5</dropwizard.metrics.version>
Expand All @@ -47,7 +48,8 @@
<guava.version>23.0</guava.version>
<guice.version>4.0</guice.version>
<hcommon-hive-metastore.version>1.2.3</hcommon-hive-metastore.version>
</properties>
<aws.sdk.version>1.11.267</aws.sdk.version>
</properties>s

<dependencyManagement>
<dependencies>
Expand Down
101 changes: 101 additions & 0 deletions waggle-dance-glue/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<?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>
<parent>
<groupId>com.hotels</groupId>
<artifactId>waggle-dance-parent</artifactId>
<version>3.9.4</version>
</parent>

<artifactId>waggle-dance-glue</artifactId>

<dependencies>
<dependency>
<groupId>com.hotels</groupId>
<artifactId>waggle-dance-core</artifactId>
<version>3.9.4</version>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-metastore</artifactId>
<version>${hive.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId>
<version>${hive.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-glue</artifactId>
<version>${aws.sdk.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>${aws.sdk.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit f25105b

Please sign in to comment.