Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ setPrLabel("PENDING");

def executorNode(run) {
hdbPodTemplate {
timeout(time: 24, unit: 'HOURS') {
timeout(time: 4, unit: 'HOURS') {
node(POD_LABEL) {
container('hdb') {
run()
Expand Down
36 changes: 35 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<maven.build-helper.plugin.version>1.8</maven.build-helper.plugin.version>

<!-- Library Dependency Versions -->
<accumulo.version>1.6.0</accumulo.version>
<accumulo.version>1.7.3</accumulo.version>
<activemq.version>5.5.0</activemq.version>
<ant.version>1.9.1</ant.version>
<antlr.version>3.5.2</antlr.version>
Expand Down Expand Up @@ -135,6 +135,7 @@
<dropwizard.version>3.1.0</dropwizard.version>
<dropwizard-metrics-hadoop-metrics2-reporter.version>0.1.2</dropwizard-metrics-hadoop-metrics2-reporter.version>
<druid.version>0.9.2</druid.version>
<eigenbase-properties.version>1.1.5</eigenbase-properties.version>
<guava.version>14.0.1</guava.version>
<groovy.version>2.4.4</groovy.version>
<h2database.version>1.3.166</h2database.version>
Expand All @@ -155,6 +156,7 @@
<jasper.version>5.5.23</jasper.version>
<jamon.plugin.version>2.3.4</jamon.plugin.version>
<jamon-runtime.version>2.3.1</jamon-runtime.version>
<janino.version>2.7.6</janino.version>
<javaewah.version>0.3.2</javaewah.version>
<javax-servlet.version>3.0.0.v201112011016</javax-servlet.version>
<javolution.version>5.5.1</javolution.version>
Expand All @@ -180,6 +182,7 @@
<mina.version>2.0.0-M5</mina.version>
<netty.version>4.0.52.Final</netty.version>
<parquet.version>1.8.1</parquet.version>
<pentaho-aggdesigner.version>5.1.5-jhyde</pentaho-aggdesigner.version>
<pig.version>0.16.0</pig.version>
<protobuf.version>2.5.0</protobuf.version>
<stax.version>1.0.1</stax.version>
Expand Down Expand Up @@ -217,6 +220,17 @@
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
<repository>
<id>conjars</id>
<name>Conjars</name>
<url>http://conjars.org/repo</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
</repositories>

<dependencyManagement>
Expand Down Expand Up @@ -359,6 +373,11 @@
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>net.hydromatic</groupId>
<artifactId>eigenbase-properties</artifactId>
<version>${eigenbase-properties.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
Expand Down Expand Up @@ -573,6 +592,16 @@
<artifactId>jackson-xc</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>commons-compiler</artifactId>
<version>${janino.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
<version>${janino.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
Expand Down Expand Up @@ -728,6 +757,11 @@
<artifactId>hadoop-minicluster</artifactId>
<version>${hadoop.version}</version>
</dependency>
<dependency>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-aggdesigner-algorithm</artifactId>
<version>${pentaho-aggdesigner.version}</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
Expand Down
16 changes: 16 additions & 0 deletions ql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -711,6 +711,22 @@
<version>${glassfish.jersey.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.hydromatic</groupId>
<artifactId>eigenbase-properties</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>commons-compiler</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
</dependency>
<dependency>
<groupId>org.pentaho</groupId>
<artifactId>pentaho-aggdesigner-algorithm</artifactId>
</dependency>
</dependencies>

<profiles>
Expand Down