Skip to content

Commit

Permalink
Extract presto-benchto-queries module
Browse files Browse the repository at this point in the history
Thanks to this extraction queries could be use from other modules,
without copying query files or dragging any not needed dependencies.
  • Loading branch information
kokosing committed Oct 16, 2018
1 parent 6c0e3bd commit 9b29af8
Show file tree
Hide file tree
Showing 128 changed files with 34 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Expand Up @@ -114,6 +114,7 @@
<module>presto-resource-group-managers</module>
<module>presto-password-authenticators</module>
<module>presto-session-property-managers</module>
<module>presto-benchto-queries</module>
<module>presto-benchto-benchmarks</module>
<module>presto-thrift-connector-api</module>
<module>presto-thrift-testing-server</module>
Expand Down Expand Up @@ -366,6 +367,18 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-benchto-queries</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-benchto-benchmarks</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-product-tests</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions presto-benchto-benchmarks/pom.xml
Expand Up @@ -18,6 +18,11 @@
</properties>

<dependencies>
<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-benchto-queries</artifactId>
</dependency>

<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-jdbc</artifactId>
Expand Down
16 changes: 16 additions & 0 deletions presto-benchto-queries/pom.xml
@@ -0,0 +1,16 @@
<?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.facebook.presto</groupId>
<artifactId>presto-root</artifactId>
<version>0.213-SNAPSHOT</version>
</parent>

<artifactId>presto-benchto-queries</artifactId>
<name>presto-benchto-queries</name>

<properties>
<air.main.basedir>${project.parent.basedir}</air.main.basedir>
</properties>
</project>

0 comments on commit 9b29af8

Please sign in to comment.