Skip to content

Commit

Permalink
uu
Browse files Browse the repository at this point in the history
  • Loading branch information
kgyrtkirk committed May 28, 2024
1 parent 88da8d9 commit d1b4587
Show file tree
Hide file tree
Showing 10 changed files with 1,188 additions and 2 deletions.
17 changes: 16 additions & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,22 @@
</execution>
</executions>
</plugin>
</plugins>


<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath/>
<argument>org.apache.druid.quidem.Launcher</argument>
</arguments>
</configuration>
</plugin>

</plugins>
</build>

<profiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

package org.apache.druid.quidem;

import org.apache.druid.sql.calcite.run.DruidHook;

import java.io.PrintStream;

public class QuidemRecorder implements AutoCloseable, DruidHook
Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<java.version>8</java.version>
<!-- UNDO THIS :D -->
<java.version>11</java.version>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
<aether.version>0.9.0.M2</aether.version>
<apache.curator.version>5.3.0</apache.curator.version>
Expand Down Expand Up @@ -243,6 +244,7 @@
<module>integration-tests-ex/tools</module>
<module>integration-tests-ex/image</module>
<module>integration-tests-ex/cases</module>
<module>quidem-it</module>
</modules>

<repositories>
Expand Down
Loading

0 comments on commit d1b4587

Please sign in to comment.