Skip to content

Commit

Permalink
ExpediaGroup#197 - In Progress: compiled with hive 3 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rtotaro committed Apr 22, 2021
1 parent 5e64ae1 commit bf3ffb0
Show file tree
Hide file tree
Showing 6 changed files with 676 additions and 110 deletions.
55 changes: 44 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
<spring-boot.version>2.0.4.RELEASE</spring-boot.version>
<hadoop.version>3.1.0</hadoop.version>
<hamcrest.version>2.2</hamcrest.version>
<hive.version>3.1.2</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>
<aspectj-maven-plugin.version>1.9</aspectj-maven-plugin.version>
<aspectj.version>1.8.9</aspectj.version>
<beeju.version>4.0.0</beeju.version>
<beeju.version>5.0.0</beeju.version>
<guava.version>23.0</guava.version>
<guice.version>4.0</guice.version>
<hcommon-hive-metastore.version>1.2.3</hcommon-hive-metastore.version>
Expand Down Expand Up @@ -81,6 +81,38 @@
<artifactId>javax.el</artifactId>
<version>2.2.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<!-- spring uses a newer version of byte-buddy but Mockito requires
an older version -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.10.15</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.10.15</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down Expand Up @@ -118,6 +150,12 @@
<version>${hive.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
Expand All @@ -126,7 +164,8 @@
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<!-- we should use whatever hive-metastore is using. Cannot rely on the transitive dep because we want it test scoped. -->
<!-- we should use whatever hive-metastore is using. Cannot rely
on the transitive dep because we want it test scoped. -->
<version>10.10.2.0</version>
<scope>test</scope>
</dependency>
Expand All @@ -153,6 +192,8 @@
<version>${maven.release.plugin.version}</version>
</plugin>
<plugin>
<!-- NOTE: we are blocked on building waggle dance using Java 11
on the below, need to wait for https://github.com/mojohaus/aspectj-maven-plugin/pull/45 -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>${aspectj-maven-plugin.version}</version>
Expand Down Expand Up @@ -224,15 +265,7 @@
<configuration>
<!-- excluding files that don't need a header update -->
<excludes>
<exclude>src/main/java/com/hotels/bdp/waggledance/api/validation/constraint/TunnelRoute.java</exclude>
<exclude>src/main/java/com/hotels/bdp/waggledance/api/validation/validator/TunnelRouteValidator.java
</exclude>
<exclude>src/main/java/com/hotels/bdp/waggledance/client/ThriftMetastoreClient.java</exclude>
<exclude>src/main/java/com/hotels/bdp/waggledance/server/MetaStoreProxyServer.java</exclude>
<exclude>src/main/java/com/hotels/bdp/waggledance/validation/Preconditions.java</exclude>
<exclude>src/main/java/com/hotels/bdp/waggledance/parse/ASTConverter.java</exclude>
<exclude>src/main/java/com/hotels/bdp/waggledance/parse/ASTNodeUtils.java</exclude>
<exclude>src/main/java/com/hotels/bdp/waggledance/parse/Rule.java</exclude>
</excludes>
</configuration>
</plugin>
Expand Down
Loading

0 comments on commit bf3ffb0

Please sign in to comment.